diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2021-01-31 07:59:40 +0100 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2021-01-31 07:59:40 +0100 |
commit | 867b99d68fcd406243d5d48aef8cb072f229b5d4 (patch) | |
tree | 9b0c362536b107d3640d18d9056e18d20a661cc5 /lisp/emacs-lisp | |
parent | a0b743da19a5020436f9a46453b1817045483c98 (diff) | |
download | emacs-867b99d68fcd406243d5d48aef8cb072f229b5d4.tar.gz emacs-867b99d68fcd406243d5d48aef8cb072f229b5d4.tar.bz2 emacs-867b99d68fcd406243d5d48aef8cb072f229b5d4.zip |
Revert "Improve fontifying of #| ... |# in `lisp-mode'"
This reverts commit 1275dc4711af77c9c223063dcd149d782d497463.
Setting comment-end isn't the correct thing to do -- it makes M-; insert that string.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/lisp-mode.el | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el index 3918fa01b2a..c96d849d442 100644 --- a/lisp/emacs-lisp/lisp-mode.el +++ b/lisp/emacs-lisp/lisp-mode.el @@ -775,7 +775,6 @@ or to switch back to an existing one." (setq-local find-tag-default-function 'lisp-find-tag-default) (setq-local comment-start-skip "\\(\\(^\\|[^\\\n]\\)\\(\\\\\\\\\\)*\\)\\(;+\\|#|\\) *") - (setq-local comment-end "|#") (setq imenu-case-fold-search t)) (defun lisp-find-tag-default () |