New directory
[bpt/emacs.git] / lisp / macros.el
index 11fa222..b708683 100644 (file)
@@ -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)
@@ -258,7 +260,7 @@ and mark at opposite ends of the quoted section, and use
 Suppose you wanted to build a keyword table in C where each entry
 looked like this:
 
-    { \"foo\", foo_data, foo_function }, 
+    { \"foo\", foo_data, foo_function },
     { \"bar\", bar_data, bar_function },
     { \"baz\", baz_data, baz_function },