aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2009-01-29 03:42:17 +0000
committerGlenn Morris2009-01-29 03:42:17 +0000
commit04c17beac362712e893b1b06ebfeb7602598e8da (patch)
tree80df05d61b98b6abd582c80bc2ddb0097608fd9a
parent0954b0aa0e1e12341e203f68d49ee9b530d81781 (diff)
downloademacs-04c17beac362712e893b1b06ebfeb7602598e8da.tar.gz
emacs-04c17beac362712e893b1b06ebfeb7602598e8da.zip
(rmail-summary-disable): Fix declaration.
-rw-r--r--lisp/ChangeLog22
-rw-r--r--lisp/mail/rmailedit.el2
2 files changed, 20 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 37fe382159d..ff6921159d6 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,19 @@
12009-01-29 Glenn Morris <rgm@gnu.org>
2
3 * mail/rmail.el (rmail-file-name): Remove duplicate definition.
4 (rmail-set-header): Ensure header changes get saved.
5
6 * mail/rmailedit.el (rmail-summary-disable): Fix declaration.
7
8 * mail/rmailkwd.el (rmail-set-label): Update the summary, if there is
9 one, after a label is added.
10
11 * mail/rmailsum.el (rmail-summary-update-line): New function.
12 (rmail-summary-goto-msg): Return a value according to whether message
13 was found.
14 (rmail-summary-update-highlight): Give the overlay an 'rmail-summary
15 property. Use line-end-position.
16
12009-01-29 Chong Yidong <cyd@stupidchicken.com> 172009-01-29 Chong Yidong <cyd@stupidchicken.com>
2 18
3 * mail/rmailedit.el (rmail-cease-edit): Add additional quotes to 19 * mail/rmailedit.el (rmail-cease-edit): Add additional quotes to
@@ -38,9 +54,9 @@
38 54
392009-01-28 Stephen Berman <stephen.berman@gmx.net> 552009-01-28 Stephen Berman <stephen.berman@gmx.net>
40 56
41 * calendar/todo-mode.el (todo-insert-item-here): Prevent insertion 57 * calendar/todo-mode.el (todo-insert-item-here):
42 of a new entry inside of an existing entry. Minor code cleanup. 58 Prevent insertion of a new entry inside of an existing entry.
43 (Bug#2084) 59 Minor code cleanup. (Bug#2084)
44 (todo-add-category): Change the interactive spec. Signal an error 60 (todo-add-category): Change the interactive spec. Signal an error
45 if the Todo file is non-empty but contains no category. Reject 61 if the Todo file is non-empty but contains no category. Reject
46 category names that could induce bugs and confusion. Call 62 category names that could induce bugs and confusion. Call
diff --git a/lisp/mail/rmailedit.el b/lisp/mail/rmailedit.el
index 1c0d63b5aef..8aeacfb8396 100644
--- a/lisp/mail/rmailedit.el
+++ b/lisp/mail/rmailedit.el
@@ -49,7 +49,7 @@
49;; Rmail Edit mode is suitable only for specially formatted data. 49;; Rmail Edit mode is suitable only for specially formatted data.
50(put 'rmail-edit-mode 'mode-class 'special) 50(put 'rmail-edit-mode 'mode-class 'special)
51 51
52(declare-function rmail-summary-disable "" ()) 52(declare-function rmail-summary-disable "rmailsum" ())
53(declare-function rmail-summary-enable "rmailsum" ()) 53(declare-function rmail-summary-enable "rmailsum" ())
54 54
55(defun rmail-edit-mode () 55(defun rmail-edit-mode ()