aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-11-07 17:32:47 +0000
committerGerd Moellmann2000-11-07 17:32:47 +0000
commiteac6ee8fd204cfd96792c00e235bd724cd211cfb (patch)
treeccdfee8a26550c41c0a4db886d96c8b06f6512a2
parent7b01b08c2481fe788f874e427b4ae8a7c600c5cd (diff)
downloademacs-eac6ee8fd204cfd96792c00e235bd724cd211cfb.tar.gz
emacs-eac6ee8fd204cfd96792c00e235bd724cd211cfb.zip
(insert-kbd-macro): Print semi-colons as `?\;'.
-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."
150 (setq mods (cdr mods))) 150 (setq mods (cdr mods)))
151 (cond ((= char ?\\) 151 (cond ((= char ?\\)
152 (insert "\\\\")) 152 (insert "\\\\"))
153 ((= char ?\;)
154 (insert "\\;"))
153 ((= char 127) 155 ((= char 127)
154 (insert "\\C-?")) 156 (insert "\\C-?"))
155 ((< char 127) 157 ((< char 127)