From 5367d2b303f3b47cb37a10364c80063f1b749722 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Wed, 23 Jul 2003 18:00:25 +0000 Subject: [PATCH] (insert-kbd-macro): Escape double quote character. From Thomas W Murphy . --- lisp/macros.el | 2 ++ 1 file changed, 2 insertions(+) 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) -- 2.11.4.GIT