comparison lisp/macros.el @ 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 e88404e8f2cf
children 695cf19ef79e
comparison
equal deleted inserted replaced
52034:81ee369ca4f9 52035:f08b70837398
148 ((eq (car mods) 'shift) 148 ((eq (car mods) 'shift)
149 (insert "\\S-"))) 149 (insert "\\S-")))
150 (setq mods (cdr mods))) 150 (setq mods (cdr mods)))
151 (cond ((= char ?\\) 151 (cond ((= char ?\\)
152 (insert "\\\\")) 152 (insert "\\\\"))
153 ((= char ?\")
154 (insert "\\\""))
153 ((= char ?\;) 155 ((= char ?\;)
154 (insert "\\;")) 156 (insert "\\;"))
155 ((= char 127) 157 ((= char 127)
156 (insert "\\C-?")) 158 (insert "\\C-?"))
157 ((< char 127) 159 ((< char 127)