Mercurial > emacs
changeset 10403:c0e27466fb3f
(mouse-select-buffer) Handle an aborted selection.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 12 Jan 1995 06:59:56 +0000 |
parents | 4f4177cd49b1 |
children | 631f1dac6f7a |
files | lisp/msb.el |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/msb.el Thu Jan 12 05:50:13 1995 +0000 +++ b/lisp/msb.el Thu Jan 12 06:59:56 1995 +0000 @@ -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 @@ ((and (stringp (car choice)) (null (cdr choice))) (car choice)) + ((null choice) + choice) (t (error "Unknown form for buffer: %s" choice)))))