From: Glenn Morris Date: Wed, 23 Jul 2003 18:00:25 +0000 (+0000) Subject: (insert-kbd-macro): Escape double quote character. From Thomas W X-Git-Tag: ttn-vms-21-2-B4~9241 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5367d2b303f3b47cb37a10364c80063f1b749722;p=emacs.git (insert-kbd-macro): Escape double quote character. From Thomas W Murphy . --- diff --git a/lisp/macros.el b/lisp/macros.el index ee3b16f7764..b708683bdfa 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 ?\;) (insert "\\;")) ((= char 127)