aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/help.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/help.el')
-rw-r--r--lisp/help.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/help.el b/lisp/help.el
index e8dfbdef74a..6ae2664cf41 100644
--- a/lisp/help.el
+++ b/lisp/help.el
@@ -1274,10 +1274,13 @@ TRANSL, PARTIAL, SHADOW, NOMENU, MENTION-SHADOW are as in
1274 (map (keymap-canonicalize map)) 1274 (map (keymap-canonicalize map))
1275 (tail map) 1275 (tail map)
1276 (first t) 1276 (first t)
1277 (describer (if transl
1278 #'help--describe-translation
1279 #'help--describe-command))
1277 done vect) 1280 done vect)
1278 (while (and (consp tail) (not done)) 1281 (while (and (consp tail) (not done))
1279 (cond ((or (vectorp (car tail)) (char-table-p (car tail))) 1282 (cond ((or (vectorp (car tail)) (char-table-p (car tail)))
1280 (help--describe-vector (car tail) prefix transl partial 1283 (help--describe-vector (car tail) prefix describer partial
1281 shadow map mention-shadow)) 1284 shadow map mention-shadow))
1282 ((consp (car tail)) 1285 ((consp (car tail))
1283 (let ((event (caar tail)) 1286 (let ((event (caar tail))