aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman1995-01-12 06:59:56 +0000
committerRichard M. Stallman1995-01-12 06:59:56 +0000
commitdc3247b34dc6ef9142fb01ef9a62fee02714068d (patch)
treeac58c4e198f6d9a7714809fcf122867badd21400 /lisp
parent08b894ab8b9eeea4cd707560ecd84debab174ff3 (diff)
downloademacs-dc3247b34dc6ef9142fb01ef9a62fee02714068d.tar.gz
emacs-dc3247b34dc6ef9142fb01ef9a62fee02714068d.zip
(mouse-select-buffer) Handle an aborted selection.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/msb.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/msb.el b/lisp/msb.el
index b02ac807788..6463db5fbdb 100644
--- a/lisp/msb.el
+++ b/lisp/msb.el
@@ -3,7 +3,7 @@
3;; 3;;
4;; Author: Lars Lindberg <Lars.Lindberg@sypro.cap.se> 4;; Author: Lars Lindberg <Lars.Lindberg@sypro.cap.se>
5;; Created: 8 Oct 1993 5;; Created: 8 Oct 1993
6;; Lindberg's last update version: 3.27 6;; Lindberg's last update version: 3.28
7;; Keywords: mouse buffer menu 7;; Keywords: mouse buffer menu
8;; 8;;
9;; This program is free software; you can redistribute it and/or modify 9;; This program is free software; you can redistribute it and/or modify
@@ -851,6 +851,8 @@ variable `msb-menu-cond'."
851 ((and (stringp (car choice)) 851 ((and (stringp (car choice))
852 (null (cdr choice))) 852 (null (cdr choice)))
853 (car choice)) 853 (car choice))
854 ((null choice)
855 choice)
854 (t 856 (t
855 (error "Unknown form for buffer: %s" choice))))) 857 (error "Unknown form for buffer: %s" choice)))))
856 858