# HG changeset patch # User Richard M. Stallman # Date 1140551497 0 # Node ID f8759a14f4cd810a3b3b5dc1a145abce477e2426 # Parent c878e8baaab00f48e591e5205a57d9f073350fab (describe-key-briefly): Compute interactive args in same was as before previous change. diff -r c878e8baaab0 -r f8759a14f4cd lisp/help.el --- a/lisp/help.el Tue Feb 21 19:49:55 2006 +0000 +++ b/lisp/help.el Tue Feb 21 19:51:37 2006 +0000 @@ -579,12 +579,8 @@ (setq key (read-key-sequence "Describe key (or click or menu item): ")) (list key - (prefix-numeric-value current-prefix-arg) - ;; If KEY is a down-event, read the corresponding up-event - ;; and use it as the third argument. - (if (and (consp key) (symbolp (car key)) - (memq 'down (cdr (get (car key) 'event-symbol-elements)))) - (read-event)))) + (if current-prefix-arg (prefix-numeric-value current-prefix-arg)) + 1)) ;; Put yank-menu back as it was, if we changed it. (when saved-yank-menu (setq yank-menu (copy-sequence saved-yank-menu))