]> git.eshelyaron.com Git - emacs.git/commitdiff
(completion-list-mode-map): Unbind down-mouse-2.
authorRichard M. Stallman <rms@gnu.org>
Wed, 1 Jun 1994 18:28:06 +0000 (18:28 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 1 Jun 1994 18:28:06 +0000 (18:28 +0000)
lisp/simple.el

index 4b00ad6f8fce8ebebef7b2b3f5153cece0345df4..b55487968e660bee3f5f83b9dead1117a649321f 100644 (file)
@@ -2425,6 +2425,7 @@ it were the arg to `interactive' (which see) to interactively read the value."
 (or completion-list-mode-map
     (let ((map (make-sparse-keymap)))
       (define-key map [mouse-2] 'mouse-choose-completion)
+      (define-key map [down-mouse-2] nil)
       (define-key map "\C-m" 'choose-completion)
       (define-key map [return] 'choose-completion)
       (setq completion-list-mode-map map)))