From: Romain Francoise Date: Sun, 23 Oct 2005 09:19:37 +0000 (+0000) Subject: 2005-10-23 MIYOSHI Masanori (tiny change) X-Git-Tag: emacs-pretest-22.0.90~6395 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4bdce438637b7b9f7024f7ce34bae81b3a033e55;p=emacs.git 2005-10-23 MIYOSHI Masanori (tiny change) * mouse.el (mouse-drag-region): If the *Messages* buffer doesn't exist, create it. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0054789f55c..bf0a708d2f1 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,10 +1,15 @@ +2005-10-23 MIYOSHI Masanori (tiny change) + + * mouse.el (mouse-drag-region): If the *Messages* buffer doesn't + exist, create it. + 2005-10-23 Ken Manheimer * allout.el: Increment version number to 2.1, and use a literal - rather than RCS $Id$. Remove autoloads for mailcrypt and crypt++. + rather than RCS $Id $. Remove autoloads for mailcrypt and crypt++. Require pgg, pgg-gpg during compilation. (allout-version): Increment version number to 2.1, and use a literal - rather than RCS $Id$. + rather than RCS $Id $. (allout-default-encryption-scheme): Removed. (allout-passphrase-verifier-handling): Renamed from allout-key-verifier-handling. diff --git a/lisp/mouse.el b/lisp/mouse.el index d71d80bd41f..743aba94d5e 100644 --- a/lisp/mouse.el +++ b/lisp/mouse.el @@ -768,7 +768,7 @@ If the click is in the echo area, display the `*Messages*' buffer." (save-excursion ;; Swallow the up-event. (read-event) - (set-buffer "*Messages*") + (set-buffer (get-buffer-create "*Messages*")) (goto-char (point-max)) (display-buffer (current-buffer))) ;; Give temporary modes such as isearch a chance to turn off.