]> git.eshelyaron.com Git - emacs.git/commitdiff
(insert-kbd-macro): Escape double quote character. From Thomas W
authorGlenn Morris <rgm@gnu.org>
Wed, 23 Jul 2003 18:00:25 +0000 (18:00 +0000)
committerGlenn Morris <rgm@gnu.org>
Wed, 23 Jul 2003 18:00:25 +0000 (18:00 +0000)
Murphy <twm@andrew.cmu.edu>.

lisp/macros.el

index ee3b16f77645563aa2d27c5ac2ce1c6501e0ccf2..b708683bdfa4ad57488ae624b43201d55bb00b4b 100644 (file)
@@ -150,6 +150,8 @@ use this command, and then save the file."
                       (setq mods (cdr mods)))
                     (cond ((= char ?\\)
                            (insert "\\\\"))
+                           ((= char ?\")
+                            (insert "\\\""))   
                           ((= char ?\;)
                            (insert "\\;"))
                           ((= char 127)