# HG changeset patch # User Glenn Morris # Date 1058983225 0 # Node ID f08b7083739857121a64bee31dc963ce4dc0b2dc # Parent 81ee369ca4f94413d18632f1f6d3a60b28887624 (insert-kbd-macro): Escape double quote character. From Thomas W Murphy . diff -r 81ee369ca4f9 -r f08b70837398 lisp/macros.el --- 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)