]> git.eshelyaron.com Git - emacs.git/commitdiff
(texinfo-format-syntax-table): Revert previous change.
authorMiles Bader <miles@gnu.org>
Fri, 15 Jun 2001 00:57:40 +0000 (00:57 +0000)
committerMiles Bader <miles@gnu.org>
Fri, 15 Jun 2001 00:57:40 +0000 (00:57 +0000)
lisp/ChangeLog
lisp/textmodes/texinfmt.el

index d8fc8c83ac1bc2031099d69186fb3316f387bab3..ad66de40d265516401e963c1525896d11c6990d0 100644 (file)
@@ -1,3 +1,8 @@
+2001-06-15  Miles Bader  <miles@gnu.org>
+
+       * textmodes/texinfmt.el (texinfo-format-syntax-table): Revert
+       previous change.
+
 2001-06-14  Richard M. Stallman  <rms@gnu.org>
 
        * replace.el (keep-lines-read-args): Return just a regexp.
index 0977ff7a146bec0a3a11ddf9b8873dc0a747b4c7..91caa8a9859759676ca6fb3b55ab027932591d6a 100644 (file)
@@ -1,6 +1,6 @@
 ;;; texinfmt.el --- format Texinfo files into Info files.
 
-;; Copyright (C) 1985, 1986, 1988, 1990, 1991, 1992, 1993, 2001, 
+;; Copyright (C) 1985, 1986, 1988, 1990, 1991, 1992, 1993, 
 ;;               1994, 1995, 1996, 1997, 1998, 2000, 2001
 ;;    Free Software Foundation, Inc.
 
@@ -89,8 +89,8 @@ If optional argument HERE is non-nil, insert info at point."
 (if texinfo-format-syntax-table
     nil
   (setq texinfo-format-syntax-table (make-syntax-table))
-  (modify-syntax-entry ?\" "." texinfo-format-syntax-table)
-  (modify-syntax-entry ?\\ "." texinfo-format-syntax-table)
+  (modify-syntax-entry ?\" " " texinfo-format-syntax-table)
+  (modify-syntax-entry ?\\ " " texinfo-format-syntax-table)
   (modify-syntax-entry ?@ "\\" texinfo-format-syntax-table)
   (modify-syntax-entry ?\^q "\\" texinfo-format-syntax-table)
   (modify-syntax-entry ?\[ "." texinfo-format-syntax-table)