Fix typo in last help-fns--insert-menu-bindings change
* lisp/help-fns.el (help-fns--insert-menu-bindings): Fix typo in last change.
This commit is contained in:
parent
71735be475
commit
8ef8da13f6
1 changed files with 10 additions and 10 deletions
|
@ -615,16 +615,16 @@ the C sources, too."
|
|||
;; Then output them.
|
||||
(when strings
|
||||
(when heading
|
||||
(insert heading)
|
||||
(seq-do-indexed
|
||||
(lambda (string i)
|
||||
(insert
|
||||
(cond ((zerop i) "")
|
||||
((= i (1- (length menus))) " and ")
|
||||
(t ", ")))
|
||||
(insert (propertize (string-join (nreverse string))
|
||||
'face 'help-key-binding)))
|
||||
strings)))))
|
||||
(insert heading))
|
||||
(seq-do-indexed
|
||||
(lambda (string i)
|
||||
(insert
|
||||
(cond ((zerop i) "")
|
||||
((= i (1- (length menus))) " and ")
|
||||
(t ", "))
|
||||
(propertize (string-join (nreverse string))
|
||||
'face 'help-key-binding)))
|
||||
strings))))
|
||||
|
||||
(defun help-fns--compiler-macro (function)
|
||||
(pcase-dolist (`(,type . ,handler)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue