diff options
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 9 | ||||
-rw-r--r-- | lisp/mouse.el | 2 |
2 files changed, 8 insertions, 3 deletions
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 <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. 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. |