diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-01-17 07:07:20 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-01-17 07:07:20 +0000 |
commit | bb5fa15c52f392ca91ca03d8ca1a9ffab26a2e2d (patch) | |
tree | 0d9bb31e650980e368df596f8f8158eae57feebc /src/keymap.c | |
parent | bebe1fbd016a87a0960f88d3447c1b16f5930674 (diff) | |
download | emacs-bb5fa15c52f392ca91ca03d8ca1a9ffab26a2e2d.tar.gz |
(push_key_description): Print C-j, not TAB.
Diffstat (limited to 'src/keymap.c')
-rw-r--r-- | src/keymap.c | 8 |
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) *p++ = 'A'; *p++ = 'B'; } - else if (c == Ctl('J')) - { - *p++ = 'L'; - *p++ = 'F'; - *p++ = 'D'; - } - else if (c == Ctl('M')) + else if (c == Ctl ('M')) { *p++ = 'R'; *p++ = 'E'; |