summaryrefslogtreecommitdiff
path: root/lisp/msb.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1995-01-12 06:59:56 +0000
committerRichard M. Stallman <rms@gnu.org>1995-01-12 06:59:56 +0000
commitada3275af1e38fafb109a4b2c2950618fd150d9c (patch)
tree84d229ea094835a2793a36777592ec38bb06a019 /lisp/msb.el
parent554573f213ddb7dccfcb2ac0cc065fa811136b6d (diff)
downloademacs-ada3275af1e38fafb109a4b2c2950618fd150d9c.tar.gz
(mouse-select-buffer) Handle an aborted selection.
Diffstat (limited to 'lisp/msb.el')
-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 @@
;;
;; Author: Lars Lindberg <Lars.Lindberg@sypro.cap.se>
;; Created: 8 Oct 1993
-;; Lindberg's last update version: 3.27
+;; Lindberg's last update version: 3.28
;; Keywords: mouse buffer menu
;;
;; This program is free software; you can redistribute it and/or modify
@@ -851,6 +851,8 @@ variable `msb-menu-cond'."
((and (stringp (car choice))
(null (cdr choice)))
(car choice))
+ ((null choice)
+ choice)
(t
(error "Unknown form for buffer: %s" choice)))))