changeset 52035:f08b70837398

(insert-kbd-macro): Escape double quote character. From Thomas W Murphy <twm@andrew.cmu.edu>.
author Glenn Morris <rgm@gnu.org>
date Wed, 23 Jul 2003 18:00:25 +0000
parents 81ee369ca4f9
children b5ca57030ca2
files lisp/macros.el
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/macros.el	Wed Jul 23 17:59:12 2003 +0000
+++ b/lisp/macros.el	Wed Jul 23 18:00:25 2003 +0000
@@ -150,6 +150,8 @@
 		       (setq mods (cdr mods)))
 		     (cond ((= char ?\\)
 			    (insert "\\\\"))
+                           ((= char ?\")
+                            (insert "\\\""))   
 			   ((= char ?\;)
 			    (insert "\\;"))
 			   ((= char 127)