diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2022-05-06 13:28:20 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-05-06 13:28:20 +0200 |
commit | 16dc1d597b70524782da58677a88135d20c1a617 (patch) | |
tree | e1aece04654b7747514678a9efd7e8719dbdcf84 /lisp/info.el | |
parent | 3b088bbed217f4387dfd75df32ec8e92adc9da1d (diff) | |
download | emacs-16dc1d597b70524782da58677a88135d20c1a617.tar.gz emacs-16dc1d597b70524782da58677a88135d20c1a617.tar.bz2 emacs-16dc1d597b70524782da58677a88135d20c1a617.zip |
Char-fold quotation characters in *info* and *Help*
* lisp/info.el (Info-mode):
* lisp/help-mode.el (help-mode): Use it.
* lisp/isearch.el (isearch-fold-quotes-mode): New minor mode
(bug#24510).
Diffstat (limited to 'lisp/info.el')
-rw-r--r-- | lisp/info.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/info.el b/lisp/info.el index abfb77b0552..0bdb2f2e7a3 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -4490,7 +4490,8 @@ Advanced commands: (setq-local revert-buffer-function #'Info-revert-buffer-function) (setq-local font-lock-defaults '(Info-mode-font-lock-keywords t t)) (Info-set-mode-line) - (setq-local bookmark-make-record-function #'Info-bookmark-make-record)) + (setq-local bookmark-make-record-function #'Info-bookmark-make-record) + (isearch-fold-quotes-mode)) ;; When an Info buffer is killed, make sure the associated tags buffer ;; is killed too. |