summaryrefslogtreecommitdiff
path: root/lisp/macros.el
diff options
context:
space:
mode:
authorGerd Moellmann <gerd@gnu.org>2000-11-07 17:32:47 +0000
committerGerd Moellmann <gerd@gnu.org>2000-11-07 17:32:47 +0000
commiteac6ee8fd204cfd96792c00e235bd724cd211cfb (patch)
treeccdfee8a26550c41c0a4db886d96c8b06f6512a2 /lisp/macros.el
parent7b01b08c2481fe788f874e427b4ae8a7c600c5cd (diff)
downloademacs-eac6ee8fd204cfd96792c00e235bd724cd211cfb.tar.gz
(insert-kbd-macro): Print semi-colons as `?\;'.
Diffstat (limited to 'lisp/macros.el')
-rw-r--r--lisp/macros.el2
1 files changed, 2 insertions, 0 deletions
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)