From eac6ee8fd204cfd96792c00e235bd724cd211cfb Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Tue, 7 Nov 2000 17:32:47 +0000 Subject: [PATCH] (insert-kbd-macro): Print semi-colons as `?\;'. --- lisp/macros.el | 2 ++ 1 file changed, 2 insertions(+) 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) -- 2.39.5