comparison 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
comparison
equal deleted inserted replaced
38031:bc8861477e78 38032:395d845834fe
1 ;;; texinfmt.el --- format Texinfo files into Info files. 1 ;;; texinfmt.el --- format Texinfo files into Info files.
2 2
3 ;; Copyright (C) 1985, 1986, 1988, 1990, 1991, 1992, 1993, 3 ;; Copyright (C) 1985, 1986, 1988, 1990, 1991, 1992, 1993, 2001,
4 ;; 1994, 1995, 1996, 1997, 1998, 2000, 2001 4 ;; 1994, 1995, 1996, 1997, 1998, 2000, 2001
5 ;; Free Software Foundation, Inc. 5 ;; Free Software Foundation, Inc.
6 6
7 ;; Maintainer: Robert J. Chassell <bug-texinfo@gnu.org> 7 ;; Maintainer: Robert J. Chassell <bug-texinfo@gnu.org>
8 ;; Keywords: maint, tex, docs 8 ;; Keywords: maint, tex, docs
87 ;;; Syntax table 87 ;;; Syntax table
88 88
89 (if texinfo-format-syntax-table 89 (if texinfo-format-syntax-table
90 nil 90 nil
91 (setq texinfo-format-syntax-table (make-syntax-table)) 91 (setq texinfo-format-syntax-table (make-syntax-table))
92 (modify-syntax-entry ?\" " " texinfo-format-syntax-table) 92 (modify-syntax-entry ?\" "." texinfo-format-syntax-table)
93 (modify-syntax-entry ?\\ " " texinfo-format-syntax-table) 93 (modify-syntax-entry ?\\ "." texinfo-format-syntax-table)
94 (modify-syntax-entry ?@ "\\" texinfo-format-syntax-table) 94 (modify-syntax-entry ?@ "\\" texinfo-format-syntax-table)
95 (modify-syntax-entry ?\^q "\\" texinfo-format-syntax-table) 95 (modify-syntax-entry ?\^q "\\" texinfo-format-syntax-table)
96 (modify-syntax-entry ?\[ "." texinfo-format-syntax-table) 96 (modify-syntax-entry ?\[ "." texinfo-format-syntax-table)
97 (modify-syntax-entry ?\] "." texinfo-format-syntax-table) 97 (modify-syntax-entry ?\] "." texinfo-format-syntax-table)
98 (modify-syntax-entry ?\( "." texinfo-format-syntax-table) 98 (modify-syntax-entry ?\( "." texinfo-format-syntax-table)