Mercurial > emacs
changeset 66322:e921fbeaaddb
2005-10-23 MIYOSHI Masanori <miyoshi@meadowy.org> (tiny change)
* mouse.el (mouse-drag-region): If the *Messages* buffer doesn't
exist, create it.
author | Romain Francoise <romain@orebokech.com> |
---|---|
date | Sun, 23 Oct 2005 09:19:37 +0000 |
parents | f3a8428be12d |
children | 7f93058a1608 |
files | lisp/ChangeLog lisp/mouse.el |
diffstat | 2 files changed, 8 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Sun Oct 23 08:28:41 2005 +0000 +++ b/lisp/ChangeLog Sun Oct 23 09:19:37 2005 +0000 @@ -1,10 +1,15 @@ +2005-10-23 MIYOSHI Masanori <miyoshi@meadowy.org> (tiny change) + + * mouse.el (mouse-drag-region): If the *Messages* buffer doesn't + exist, create it. + 2005-10-23 Ken Manheimer <ken.manheimer@gmail.com> * 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.
--- a/lisp/mouse.el Sun Oct 23 08:28:41 2005 +0000 +++ b/lisp/mouse.el Sun Oct 23 09:19:37 2005 +0000 @@ -768,7 +768,7 @@ (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.