+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.
;;; 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.
(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)