1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

(texinfo-format-syntax-table): Revert previous change.

This commit is contained in:
Miles Bader 2001-06-15 00:57:40 +00:00
parent 01e3636e35
commit 72190a54f6
2 changed files with 8 additions and 3 deletions

View file

@ -1,6 +1,6 @@
;;; texinfmt.el --- format Texinfo files into Info files.
;; Copyright (C) 1985, 1986, 1988, 1990, 1991, 1992, 1993, 2001,
;; Copyright (C) 1985, 1986, 1988, 1990, 1991, 1992, 1993,
;; 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)