aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2009-01-27 03:45:06 +0000
committerGlenn Morris2009-01-27 03:45:06 +0000
commit3176a6a031594a4b705ecf8aa1aa3feeef15f92c (patch)
treedab5a4516f234bd009cad204216c7eb46a30580e
parent415046c8829d02dba6d408641c0471ce5c50f3c6 (diff)
downloademacs-3176a6a031594a4b705ecf8aa1aa3feeef15f92c.tar.gz
emacs-3176a6a031594a4b705ecf8aa1aa3feeef15f92c.zip
(dired-bind-vm): Doc fix.
-rw-r--r--lisp/ChangeLog33
-rw-r--r--lisp/dired-x.el7
2 files changed, 37 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index b71cc38ed4f..1ca5846c1cb 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,4 +1,35 @@
12009-01-26 Glenn Morris <rgm@gnu.org> 12009-01-27 Glenn Morris <rgm@gnu.org>
2
3 * dired-x.el (dired-bind-vm): Doc fix.
4
5 * mail/rmail-spam-filter.el: Remove leading `*' from defcustom docs.
6 Replace `first' and `rest' with `car' and `cdr' throughout.
7 (rsf-auto-delete-spam-bbdb-entries): Remove unused variable.
8 (rsf-scanning-messages-now): Doc fix.
9 (rsf-check-field): Rename from `check-field' and update callers.
10 (rmail-spam-filter): Fix bbdb/mail_auto_create_p oddness.
11 Use rmail-output rather than deleted rmail-output-to-rmail-file.
12
13 * mail/rmail.el: Remove leading `*' from defcustom docs.
14 Remove needless autoloads of many defcustoms and hooks.
15 (rmail-enable-mime, rmail-insert-mime-resent-message-function)
16 (rmail-search-mime-message-function, rmail-search-mime-header-function)
17 (rmail-decode-mime-charset): Doc fix.
18 (rmail-search-message, rmail-resend): Check functions set before use.
19
20 * mail/rmailout.el: Remove leading `*' from defcustom docs.
21 Remove needless autoloads of many defcustoms.
22 (rmail-output-to-babyl-buffer): Rename from
23 rmail-output-to-r-mail-buffer and update caller.
24 (rmail-output): Doc fix.
25
26 * mail/rmailsum.el: Remove leading `*' from defcustom docs.
27 Remove needless autoloads of many defcustoms.
28 (rmail-message-regexp-p-1): Check rmail-search-mime-header-function
29 is set.
30
31 * mail/unrmail.el (command-line-args-left): Remove unneeded declaration.
32 (batch-unrmail, unrmail): Doc fix.
2 33
3 * mail/rmailsum.el (rmail-message-recipients-p-1) 34 * mail/rmailsum.el (rmail-message-recipients-p-1)
4 (rmail-message-regexp-p-1): Avoid clobbering the mark. 35 (rmail-message-regexp-p-1): Avoid clobbering the mark.
diff --git a/lisp/dired-x.el b/lisp/dired-x.el
index 98d643c6e29..0dd36800916 100644
--- a/lisp/dired-x.el
+++ b/lisp/dired-x.el
@@ -123,8 +123,11 @@
123 123
124(defcustom dired-bind-vm nil 124(defcustom dired-bind-vm nil
125 "Non-nil means \"V\" runs `dired-vm', otherwise \"V\" runs `dired-rmail'. 125 "Non-nil means \"V\" runs `dired-vm', otherwise \"V\" runs `dired-rmail'.
126Also, RMAIL files contain -*- rmail -*- at the top so \"f\", 126
127`dired-advertised-find-file', will run rmail." 127RMAIL files in the old Babyl format (used before before Emacs 23.1)
128contain \"-*- rmail -*-\" at the top, so `dired-find-file'
129will run `rmail' on these files. New RMAIL files use the standard
130mbox format, and so cannot be distinguished in this way."
128 :type 'boolean 131 :type 'boolean
129 :group 'dired-keys) 132 :group 'dired-keys)
130 133