about summary refs log tree commit diff stats
path: root/075scenario_console.cc
diff options
context:
space:
mode:
Diffstat (limited to '075scenario_console.cc')
-rw-r--r--075scenario_console.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/075scenario_console.cc b/075scenario_console.cc
index a96a5cd6..7e144962 100644
--- a/075scenario_console.cc
+++ b/075scenario_console.cc
@@ -150,7 +150,7 @@ void initialize_key_names() {
   Key["tab"] = TB_KEY_TAB;
   Key["ctrl-i"] = TB_KEY_CTRL_I;
   Key["ctrl-j"] = TB_KEY_CTRL_J;
-  Key["newline"] = TB_KEY_NEWLINE;
+  Key["enter"] = TB_KEY_NEWLINE;  // ignore CR/LF distinction; there is only 'enter'
   Key["ctrl-k"] = TB_KEY_CTRL_K;
   Key["ctrl-l"] = TB_KEY_CTRL_L;
   Key["ctrl-m"] = TB_KEY_CTRL_M;
5c6c1949e41b3a69'>810542f1 ^
b1bbe92d ^



















1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62