# HG changeset patch # User Richard M. Stallman # Date 897851080 0 # Node ID cd99ca6a8f1f0df7466399b5dd1a2c7e8c59b8ff # Parent a28020246db147205bfc977e2237790ce43ecef0 (find-function-on-key): Don't discard up event after down event. diff -r a28020246db1 -r cd99ca6a8f1f lisp/emacs-lisp/find-func.el --- a/lisp/emacs-lisp/find-func.el Sun Jun 14 19:04:01 1998 +0000 +++ b/lisp/emacs-lisp/find-func.el Sun Jun 14 19:04:40 1998 +0000 @@ -250,14 +250,6 @@ "Find the function that KEY invokes. KEY is a string. Point is saved if FUNCTION is in the current buffer." (interactive "kFind function on key: ") - ;; If this key seq ends with a down event, discard the - ;; following click or drag event. Otherwise that would - ;; erase an eventual message. - (let ((type (aref key (1- (length key))))) - (if (listp type) (setq type (car type))) - (and (symbolp type) - (memq 'down (event-modifiers type)) - (read-event))) (save-excursion (let ((modifiers (event-modifiers (aref key 0))) window position)