]> code.delx.au - gnu-emacs/commitdiff
(texinfo-format-syntax-table): Change syntax of " and \ to "." (punctuation).
authorMiles Bader <miles@gnu.org>
Thu, 14 Jun 2001 02:54:34 +0000 (02:54 +0000)
committerMiles Bader <miles@gnu.org>
Thu, 14 Jun 2001 02:54:34 +0000 (02:54 +0000)
lisp/ChangeLog
lisp/textmodes/texinfmt.el

index 9d3313b1f5901c711f8965023d37705f21fcd503..46b476f7698e586cbeec220e4cc1c5a07ebe7251 100644 (file)
@@ -1,3 +1,9 @@
+2001-06-14  Miles Bader  <miles@gnu.org>
+
+       * textmodes/texinfo.el (texinfo-mode-syntax-table): Change syntax
+       of " and \ to "." (punctuation).
+       * textmodes/texinfmt.el (texinfo-format-syntax-table): Likewise.
+
 2001-06-13  Stefan Monnier  <monnier@cs.yale.edu>
 
        * diff-mode.el (diff-font-lock-keywords): Fix unanchored regexp.
index 91caa8a9859759676ca6fb3b55ab027932591d6a..0977ff7a146bec0a3a11ddf9b8873dc0a747b4c7 100644 (file)
@@ -1,6 +1,6 @@
 ;;; texinfmt.el --- format Texinfo files into Info files.
 
-;; Copyright (C) 1985, 1986, 1988, 1990, 1991, 1992, 1993, 
+;; Copyright (C) 1985, 1986, 1988, 1990, 1991, 1992, 1993, 2001, 
 ;;               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)