# HG changeset patch # User Miles Bader # Date 992487246 0 # Node ID 395d845834fe0a3c45d0f2bcadc683a7baafd567 # Parent bc8861477e787ef81eb95eec18b328571d0fe49a (texinfo-format-syntax-table): Change syntax of " and \ to "." (punctuation). diff -r bc8861477e78 -r 395d845834fe lisp/textmodes/texinfmt.el --- 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)