]> git.eshelyaron.com Git - emacs.git/commitdiff
(find-function-on-key): Don't discard up event after down event.
authorRichard M. Stallman <rms@gnu.org>
Sun, 14 Jun 1998 19:04:40 +0000 (19:04 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 14 Jun 1998 19:04:40 +0000 (19:04 +0000)
lisp/emacs-lisp/find-func.el

index 22b96ac6c516d19c41804b179b248d001e398e35..9c9830b4f5a72514d181881b45bffe89f08a1dac 100644 (file)
@@ -250,14 +250,6 @@ defined is searched in PATH instead of `load-path'"
   "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)