diff options
| author | Miles Bader | 2001-06-14 02:54:34 +0000 |
|---|---|---|
| committer | Miles Bader | 2001-06-14 02:54:34 +0000 |
| commit | 2205884371a83a7fc6d192285cb5f1e5c97cbd2b (patch) | |
| tree | d7f88f4cfbc4275a655034ae0b0667dbead5ee83 | |
| parent | 21ae6d3bc40af8a7f5ed94406fc64f286323ea34 (diff) | |
| download | emacs-2205884371a83a7fc6d192285cb5f1e5c97cbd2b.tar.gz emacs-2205884371a83a7fc6d192285cb5f1e5c97cbd2b.zip | |
(texinfo-format-syntax-table): Change syntax of " and \ to "." (punctuation).
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/textmodes/texinfmt.el | 6 |
2 files changed, 9 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 9d3313b1f59..46b476f7698 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2001-06-14 Miles Bader <miles@gnu.org> | ||
| 2 | |||
| 3 | * textmodes/texinfo.el (texinfo-mode-syntax-table): Change syntax | ||
| 4 | of " and \ to "." (punctuation). | ||
| 5 | * textmodes/texinfmt.el (texinfo-format-syntax-table): Likewise. | ||
| 6 | |||
| 1 | 2001-06-13 Stefan Monnier <monnier@cs.yale.edu> | 7 | 2001-06-13 Stefan Monnier <monnier@cs.yale.edu> |
| 2 | 8 | ||
| 3 | * diff-mode.el (diff-font-lock-keywords): Fix unanchored regexp. | 9 | * diff-mode.el (diff-font-lock-keywords): Fix unanchored regexp. |
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 @@ | |||
| 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 | ||
| @@ -89,8 +89,8 @@ If optional argument HERE is non-nil, insert info at point." | |||
| 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) |