emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs/lisp ChangeLog mail/rmailedit.el


From: Glenn Morris
Subject: [Emacs-diffs] emacs/lisp ChangeLog mail/rmailedit.el
Date: Wed, 04 Mar 2009 04:20:25 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Glenn Morris <gm>       09/03/04 04:20:25

Modified files:
        lisp           : ChangeLog 
        lisp/mail      : rmailedit.el 

Log message:
        (rmail-edit-mode): Doc fix.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/ChangeLog?cvsroot=emacs&r1=1.15428&r2=1.15429
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/mail/rmailedit.el?cvsroot=emacs&r1=1.53&r2=1.54

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/emacs/emacs/lisp/ChangeLog,v
retrieving revision 1.15428
retrieving revision 1.15429
diff -u -b -r1.15428 -r1.15429
--- ChangeLog   3 Mar 2009 22:26:24 -0000       1.15428
+++ ChangeLog   4 Mar 2009 04:20:13 -0000       1.15429
@@ -1,3 +1,27 @@
+2009-03-04  Glenn Morris  <address@hidden>
+
+       * mail/rmailedit.el (rmail-edit-mode): Doc fix.
+
+       * mail/rmailsort.el: Replace `(function (lambda' by `(lambda'.
+       (rmail-sort-by-date, rmail-sort-by-subject)
+       (rmail-sort-by-author, rmail-sort-by-recipient)
+       (rmail-sort-by-correspondent, rmail-select-correspondent)
+       (rmail-sort-by-lines, rmail-sort-by-labels, rmail-sort-messages)
+       (rmail-make-date-sortable): Doc fixes.
+       (rmail-sort-by-correspondent): Downcase correspondents.
+       (rmail-sort-by-labels): Make it work.
+       (rmail-sort-messages): Restore undo if it was initially enabled.
+       Fix bobp/bolp typo that was adding a line on every sort.
+
+       * mail/rmailsum.el (rmail-get-create-summary-buffer): Doc fix.
+       Disable undo in the summary buffer.
+       (rmail-summary-sort-by-date, rmail-summary-sort-by-subject)
+       (rmail-summary-sort-by-author, rmail-summary-sort-by-recipient)
+       (rmail-summary-sort-by-correspondent, rmail-summary-sort-by-lines)
+       (rmail-summary-sort-by-labels, rmail-sort-from-summary): Doc fixes.
+       (rmail-summary-sort-by-labels): Replace `(function (lambda'
+       by `(lambda'.
+
 2009-03-03  Sam Steingold  <address@hidden>
 
        * progmodes/compile.el (compilation-move-to-column):

Index: mail/rmailedit.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/mail/rmailedit.el,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -b -r1.53 -r1.54
--- mail/rmailedit.el   21 Feb 2009 15:05:01 -0000      1.53
+++ mail/rmailedit.el   4 Mar 2009 04:20:24 -0000       1.54
@@ -45,19 +45,18 @@
 (declare-function rmail-summary-disable "rmailsum" ())
 
 (defun rmail-edit-mode ()
-  "Major mode for editing the contents of an RMAIL message.
-The editing commands are the same as in Text mode, together with two commands
-to return to regular RMAIL:
-  *  \\[rmail-abort-edit] cancels the changes
-     you have made and returns to RMAIL
+  "Major mode for editing the contents of an Rmail message.
+The editing commands are the same as in Text mode, together with
+two commands to return to regular Rmail:
+  *  \\[rmail-abort-edit] cancels any changes and returns to Rmail
   *  \\[rmail-cease-edit] makes them permanent.
-This functions runs the normal hook `rmail-edit-mode-hook'.
+This function runs the hooks `text-mode-hook' and `rmail-edit-mode-hook'.
 \\{rmail-edit-map}"
   (if (rmail-summary-exists)
       (with-current-buffer rmail-summary-buffer
        (rmail-summary-disable)))
-  (let ((rmail-buffer-swapped nil)) ; Prevent change-major-mode-hook
-                                    ; from unswapping the buffers.
+  ;; Prevent change-major-mode-hook from unswapping the buffers.
+  (let ((rmail-buffer-swapped nil))
     (delay-mode-hooks (text-mode))
     (use-local-map rmail-edit-map)
     (setq major-mode 'rmail-edit-mode)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]