]> git.eshelyaron.com Git - emacs.git/commitdiff
(insert-kbd-macro): Print semi-colons as `?\;'.
authorGerd Moellmann <gerd@gnu.org>
Tue, 7 Nov 2000 17:32:47 +0000 (17:32 +0000)
committerGerd Moellmann <gerd@gnu.org>
Tue, 7 Nov 2000 17:32:47 +0000 (17:32 +0000)
lisp/macros.el

index e333bc106be51139ccc8bd0c953359137954b3b3..354ab82a46743b1377adddf8e062b8478de8d879 100644 (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)