changeset 33281:e321e58206ac

(insert-kbd-macro): Print semi-colons as `?\;'.
author Gerd Moellmann <gerd@gnu.org>
date Tue, 07 Nov 2000 17:32:47 +0000
parents 920772ef4729
children e173b6ea0fde
files lisp/macros.el
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/macros.el	Tue Nov 07 17:03:31 2000 +0000
+++ b/lisp/macros.el	Tue Nov 07 17:32:47 2000 +0000
@@ -150,6 +150,8 @@
 		       (setq mods (cdr mods)))
 		     (cond ((= char ?\\)
 			    (insert "\\\\"))
+			   ((= char ?\;)
+			    (insert "\\;"))
 			   ((= char 127)
 			    (insert "\\C-?"))
 			   ((< char 127)