diff options
author | Gerd Moellmann <gerd@gnu.org> | 2000-11-07 17:32:47 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2000-11-07 17:32:47 +0000 |
commit | eac6ee8fd204cfd96792c00e235bd724cd211cfb (patch) | |
tree | ccdfee8a26550c41c0a4db886d96c8b06f6512a2 /lisp/macros.el | |
parent | 7b01b08c2481fe788f874e427b4ae8a7c600c5cd (diff) | |
download | emacs-eac6ee8fd204cfd96792c00e235bd724cd211cfb.tar.gz |
(insert-kbd-macro): Print semi-colons as `?\;'.
Diffstat (limited to 'lisp/macros.el')
-rw-r--r-- | lisp/macros.el | 2 |
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) |