diff lisp/textmodes/texinfmt.el @ 38032:395d845834fe

(texinfo-format-syntax-table): Change syntax of " and \ to "." (punctuation).
author Miles Bader <miles@gnu.org>
date Thu, 14 Jun 2001 02:54:06 +0000
parents 92c065fa43f6
children d2534bdf1832
line wrap: on
line diff
--- a/lisp/textmodes/texinfmt.el	Thu Jun 14 02:53:38 2001 +0000
+++ b/lisp/textmodes/texinfmt.el	Thu Jun 14 02:54:06 2001 +0000
@@ -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 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)