summaryrefslogtreecommitdiff
path: root/lisp/help-macro.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/help-macro.el')
-rw-r--r--lisp/help-macro.el4
1 files changed, 1 insertions, 3 deletions
diff --git a/lisp/help-macro.el b/lisp/help-macro.el
index 2e1f88f0a40..1001986c168 100644
--- a/lisp/help-macro.el
+++ b/lisp/help-macro.el
@@ -114,7 +114,6 @@ and then returns."
(goto-char (point-min))
(while (or (memq char (cons help-char '(?? ?\C-v ?\ ?\177 delete ?\M-v)))
(equal key "\M-v"))
- (setq list (cons key list))
(condition-case nil
(progn
(if (memq char '(?\C-v ?\ ))
@@ -129,8 +128,7 @@ and then returns."
(if (pos-visible-in-window-p
(point-max))
"" " or Space to scroll")))
- char (aref key 0))))
- (setq list (cons key list))))
+ char (aref key 0))))))
;; Mouse clicks are not part of the help feature,
;; so reexecute them in the standard environment.
(if (listp char)