aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1997-01-17 07:07:20 +0000
committerRichard M. Stallman1997-01-17 07:07:20 +0000
commitb8cab0060c556213a8bcd7e776035d7246faf9b4 (patch)
treef829b66374e4b011056e0c53c12df9a80bd1ae72 /src
parent606538987c859775a2f702efbbdf459cbad24da9 (diff)
downloademacs-b8cab0060c556213a8bcd7e776035d7246faf9b4.tar.gz
emacs-b8cab0060c556213a8bcd7e776035d7246faf9b4.zip
(push_key_description): Print C-j, not TAB.
Diffstat (limited to 'src')
-rw-r--r--src/keymap.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/keymap.c b/src/keymap.c
index 3443b71ef51..71713a1e635 100644
--- a/src/keymap.c
+++ b/src/keymap.c
@@ -1566,13 +1566,7 @@ push_key_description (c, p)
1566 *p++ = 'A'; 1566 *p++ = 'A';
1567 *p++ = 'B'; 1567 *p++ = 'B';
1568 } 1568 }
1569 else if (c == Ctl('J')) 1569 else if (c == Ctl ('M'))
1570 {
1571 *p++ = 'L';
1572 *p++ = 'F';
1573 *p++ = 'D';
1574 }
1575 else if (c == Ctl('M'))
1576 { 1570 {
1577 *p++ = 'R'; 1571 *p++ = 'R';
1578 *p++ = 'E'; 1572 *p++ = 'E';