1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 04:10:54 -08:00

(insert-kbd-macro): Print semi-colons as `?\;'.

This commit is contained in:
Gerd Moellmann 2000-11-07 17:32:47 +00:00
parent 7b01b08c24
commit eac6ee8fd2

View file

@ -150,6 +150,8 @@ use this command, and then save the file."
(setq mods (cdr mods)))
(cond ((= char ?\\)
(insert "\\\\"))
((= char ?\;)
(insert "\\;"))
((= char 127)
(insert "\\C-?"))
((< char 127)