From: Gerd Moellmann Date: Tue, 7 Nov 2000 17:32:47 +0000 (+0000) Subject: (insert-kbd-macro): Print semi-colons as `?\;'. X-Git-Tag: emacs-pretest-21.0.90~244 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=eac6ee8fd204cfd96792c00e235bd724cd211cfb;p=emacs.git (insert-kbd-macro): Print semi-colons as `?\;'. --- diff --git a/lisp/macros.el b/lisp/macros.el index e333bc106be..354ab82a467 100644 --- a/lisp/macros.el +++ b/lisp/macros.el @@ -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)