Changeset 4046
- Timestamp:
- 2006年02月27日 23時01分07秒 (2 years ago)
- Files:
-
- trunk/lisp/ChangeLog.Meadow (modified) (1 diff)
- trunk/lisp/help.el (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lisp/ChangeLog.Meadow
r4045 r4046 1 2006-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 1 6 2006-02-26 MIYOSHI Masanori <miyoshi@meadowy.org> 2 7 trunk/lisp/help.el
r4037 r4046 580 580 (list 581 581 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)) 588 584 ;; Put yank-menu back as it was, if we changed it. 589 585 (when saved-yank-menu
