aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRomain Francoise2005-10-23 09:19:37 +0000
committerRomain Francoise2005-10-23 09:19:37 +0000
commit4bdce438637b7b9f7024f7ce34bae81b3a033e55 (patch)
tree6c22bee20e04dd07c5510d129354cbbf387e0454
parent0db1539e49d51c5d83213a4d2694bbb2db9fc94f (diff)
downloademacs-4bdce438637b7b9f7024f7ce34bae81b3a033e55.tar.gz
emacs-4bdce438637b7b9f7024f7ce34bae81b3a033e55.zip
2005-10-23 MIYOSHI Masanori <miyoshi@meadowy.org> (tiny change)
* mouse.el (mouse-drag-region): If the *Messages* buffer doesn't exist, create it.
-rw-r--r--lisp/ChangeLog9
-rw-r--r--lisp/mouse.el2
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 @@
12005-10-23 MIYOSHI Masanori <miyoshi@meadowy.org> (tiny change)
2
3 * mouse.el (mouse-drag-region): If the *Messages* buffer doesn't
4 exist, create it.
5
12005-10-23 Ken Manheimer <ken.manheimer@gmail.com> 62005-10-23 Ken Manheimer <ken.manheimer@gmail.com>
2 7
3 * allout.el: Increment version number to 2.1, and use a literal 8 * allout.el: Increment version number to 2.1, and use a literal
4 rather than RCS $Id$. Remove autoloads for mailcrypt and crypt++. 9 rather than RCS $Id $. Remove autoloads for mailcrypt and crypt++.
5 Require pgg, pgg-gpg during compilation. 10 Require pgg, pgg-gpg during compilation.
6 (allout-version): Increment version number to 2.1, and use a literal 11 (allout-version): Increment version number to 2.1, and use a literal
7 rather than RCS $Id$. 12 rather than RCS $Id $.
8 (allout-default-encryption-scheme): Removed. 13 (allout-default-encryption-scheme): Removed.
9 (allout-passphrase-verifier-handling): Renamed from 14 (allout-passphrase-verifier-handling): Renamed from
10 allout-key-verifier-handling. 15 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."
768 (save-excursion 768 (save-excursion
769 ;; Swallow the up-event. 769 ;; Swallow the up-event.
770 (read-event) 770 (read-event)
771 (set-buffer "*Messages*") 771 (set-buffer (get-buffer-create "*Messages*"))
772 (goto-char (point-max)) 772 (goto-char (point-max))
773 (display-buffer (current-buffer))) 773 (display-buffer (current-buffer)))
774 ;; Give temporary modes such as isearch a chance to turn off. 774 ;; Give temporary modes such as isearch a chance to turn off.