From: Richard M. Stallman Date: Thu, 12 Jan 1995 06:59:56 +0000 (+0000) Subject: (mouse-select-buffer) Handle an aborted selection. X-Git-Tag: emacs-19.34~5455 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=dc3247b34dc6ef9142fb01ef9a62fee02714068d;p=emacs.git (mouse-select-buffer) Handle an aborted selection. --- 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 ;; 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)))))