diff options
author | Miles Bader <miles@gnu.org> | 2001-06-14 02:54:34 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 2001-06-14 02:54:34 +0000 |
commit | 2205884371a83a7fc6d192285cb5f1e5c97cbd2b (patch) | |
tree | d7f88f4cfbc4275a655034ae0b0667dbead5ee83 /lisp/textmodes | |
parent | 21ae6d3bc40af8a7f5ed94406fc64f286323ea34 (diff) | |
download | emacs-2205884371a83a7fc6d192285cb5f1e5c97cbd2b.tar.gz |
(texinfo-format-syntax-table): Change syntax of " and \ to "." (punctuation).
Diffstat (limited to 'lisp/textmodes')
-rw-r--r-- | lisp/textmodes/texinfmt.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/textmodes/texinfmt.el b/lisp/textmodes/texinfmt.el index 91caa8a9859..0977ff7a146 100644 --- a/lisp/textmodes/texinfmt.el +++ b/lisp/textmodes/texinfmt.el @@ -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) |