aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiles Bader2001-06-14 02:53:38 +0000
committerMiles Bader2001-06-14 02:53:38 +0000
commit21ae6d3bc40af8a7f5ed94406fc64f286323ea34 (patch)
tree303e61fc1923feb32802716e8ddb99e7195ffb6f
parenta62d56ab3b4701d890237ff0bfb031e7769526a6 (diff)
downloademacs-21ae6d3bc40af8a7f5ed94406fc64f286323ea34.tar.gz
emacs-21ae6d3bc40af8a7f5ed94406fc64f286323ea34.zip
(texinfo-mode-syntax-table): Change syntax of " and \ to "." (punctuation).
-rw-r--r--lisp/textmodes/texinfo.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/textmodes/texinfo.el b/lisp/textmodes/texinfo.el
index fdd6faea848..3d470ffb78b 100644
--- a/lisp/textmodes/texinfo.el
+++ b/lisp/textmodes/texinfo.el
@@ -1,6 +1,6 @@
1;;; texinfo.el --- major mode for editing Texinfo files 1;;; texinfo.el --- major mode for editing Texinfo files
2 2
3;; Copyright (C) 1985, '88, '89, '90, '91, 3;; Copyright (C) 1985, '88, '89, '90, '91, '01,
4;; '92, '93, '96, '97, 2000 Free Software Foundation, Inc. 4;; '92, '93, '96, '97, 2000 Free Software Foundation, Inc.
5 5
6;; Author: Robert J. Chassell 6;; Author: Robert J. Chassell
@@ -285,8 +285,8 @@ chapter."
285(if texinfo-mode-syntax-table 285(if texinfo-mode-syntax-table
286 nil 286 nil
287 (setq texinfo-mode-syntax-table (make-syntax-table)) 287 (setq texinfo-mode-syntax-table (make-syntax-table))
288 (modify-syntax-entry ?\" " " texinfo-mode-syntax-table) 288 (modify-syntax-entry ?\" "." texinfo-mode-syntax-table)
289 (modify-syntax-entry ?\\ " " texinfo-mode-syntax-table) 289 (modify-syntax-entry ?\\ "." texinfo-mode-syntax-table)
290 (modify-syntax-entry ?@ "\\" texinfo-mode-syntax-table) 290 (modify-syntax-entry ?@ "\\" texinfo-mode-syntax-table)
291 (modify-syntax-entry ?\^q "\\" texinfo-mode-syntax-table) 291 (modify-syntax-entry ?\^q "\\" texinfo-mode-syntax-table)
292 (modify-syntax-entry ?\[ "(]" texinfo-mode-syntax-table) 292 (modify-syntax-entry ?\[ "(]" texinfo-mode-syntax-table)