summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lisp/macros.el2
1 files changed, 2 insertions, 0 deletions
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)