aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorDave Love <[email protected]>2000-03-01 21:02:37 +0000
committerDave Love <[email protected]>2000-03-01 21:02:37 +0000
commite5f597f0bfd8218482b8c6fba3621d96d5ad3155 (patch)
tree228033eade33c888c051ebebdd8c50b9e83d37ea /lisp
parente15b6288db4a9f9f3144224bb4d1ef2f341ae0cd (diff)
(lisp-mode-syntax-table): Fix syntax of |.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/emacs-lisp/lisp-mode.el3
2 files changed, 3 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index b562b09184..14d5c6a61b 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
2000-03-01 Dave Love <[email protected]>
+ * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Fix syntax of |.
+
* help.el (help-xref-button): Add help-echo arg.
(describe-function-1, describe-variable, help-make-xrefs): Use it.
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el
index d82c71c263..6905fcb39d 100644
--- a/lisp/emacs-lisp/lisp-mode.el
+++ b/lisp/emacs-lisp/lisp-mode.el
@@ -72,11 +72,10 @@
(defvar lisp-mode-syntax-table
(let ((table (copy-syntax-table emacs-lisp-mode-syntax-table)))
- (modify-syntax-entry ?\| "\" " table)
(modify-syntax-entry ?\[ "_ " table)
(modify-syntax-entry ?\] "_ " table)
(modify-syntax-entry ?# "' 14bn" table)
- (modify-syntax-entry ?| "' 23b" table)
+ (modify-syntax-entry ?| "\" 23b" table)
table))
(define-abbrev-table 'lisp-mode-abbrev-table ())