Changeset 4046

Show
Ignore:
Timestamp:
2006年02月27日 23時01分07秒 (2 years ago)
Author:
gotoh
Message:

(describe-key-briefly): Compute interactive args
in same was as before previous change.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lisp/ChangeLog.Meadow

    r4045 r4046  
     12006-02-27  Shun-ichi GOTO  <gotoh@taiyo.co.jp> 
     2 
     3        * help.el (describe-key-briefly): Fix incorrect behavour by 
     4        applying fix on emacs-cvs rev 1.300. 
     5 
    162006-02-26  MIYOSHI Masanori  <miyoshi@meadowy.org> 
    27 
  • trunk/lisp/help.el

    r4037 r4046  
    580580           (list 
    581581            key 
    582             (prefix-numeric-value current-prefix-arg) 
    583             ;; If KEY is a down-event, read the corresponding up-event 
    584             ;; and use it as the third argument. 
    585             (if (and (consp key) (symbolp (car key)) 
    586                      (memq 'down (cdr (get (car key) 'event-symbol-elements)))) 
    587                 (read-event)))) 
     582            (if current-prefix-arg (prefix-numeric-value current-prefix-arg)) 
     583            1)) 
    588584       ;; Put yank-menu back as it was, if we changed it. 
    589585       (when saved-yank-menu