2005-10-23 MIYOSHI Masanori <miyoshi@meadowy.org> (tiny change)

* mouse.el (mouse-drag-region): If the *Messages* buffer doesn't
	exist, create it.
This commit is contained in:
Romain Francoise 2005-10-23 09:19:37 +00:00
parent 0db1539e49
commit 4bdce43863
2 changed files with 8 additions and 3 deletions

View file

@ -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.

View file

@ -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.