[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: info-lookup-alist mangled, breaks C-h S
From: |
Eli Zaretskii |
Subject: |
Re: info-lookup-alist mangled, breaks C-h S |
Date: |
Tue, 04 Jan 2022 17:03:38 +0200 |
Lars, your commit f839c7f, viz.:
Author: Lars Ingebrigtsen <larsi@gnus.org>
AuthorDate: Sat Oct 9 14:44:21 2021 +0200
Commit: Lars Ingebrigtsen <larsi@gnus.org>
CommitDate: Sat Oct 9 14:44:21 2021 +0200
Make `C-h S' work on symbols from most of the manuals in Emacs
* lisp/info-look.el (lambda): Add `C-h S' lookup for all the
"misc" manuals in Emacs (bug#42753).
introduced a new form for HELP-MODE in info-look up-alist:
+(mapc
+ (lambda (elem)
+ (let* ((prefix (car elem)))
+ (info-lookup-add-help
+ :mode (cons 'emacs-lisp-mode prefix) <<<<<<<<<<<<<<<<<
Now HELP-MODE could be a cons cell, not just a symbol. But the doc
string of info-lookup-alist was not updated, and therefore the
semantics of this form is not documented. What does that cons cell
value mean?
- info-lookup-alist mangled, breaks C-h S, T.V Raman, 2022/01/02
- Re: info-lookup-alist mangled, breaks C-h S, Daniel MartÃn, 2022/01/03
- Re: info-lookup-alist mangled, breaks C-h S, T.V Raman, 2022/01/03
- Re: info-lookup-alist mangled, breaks C-h S, Tassilo Horn, 2022/01/03
- Re: info-lookup-alist mangled, breaks C-h S, Eli Zaretskii, 2022/01/04
- Re: info-lookup-alist mangled, breaks C-h S,
Eli Zaretskii <=
- Re: info-lookup-alist mangled, breaks C-h S, Lars Ingebrigtsen, 2022/01/05
- Re: info-lookup-alist mangled, breaks C-h S, Eli Zaretskii, 2022/01/05
- Re: info-lookup-alist mangled, breaks C-h S, T.V Raman, 2022/01/05
- Re: info-lookup-alist mangled, breaks C-h S, Tassilo Horn, 2022/01/04
- Re: info-lookup-alist mangled, breaks C-h S, T.V Raman, 2022/01/04
- Re: info-lookup-alist mangled, breaks C-h S, Eli Zaretskii, 2022/01/04
- Re: info-lookup-alist mangled, breaks C-h S, Eli Zaretskii, 2022/01/05
- Re: info-lookup-alist mangled, breaks C-h S, T.V Raman, 2022/01/04