aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Wohler2006-11-13 04:40:11 +0000
committerBill Wohler2006-11-13 04:40:11 +0000
commit1a9aa7dfa07fd3737a391af994010989b876568b (patch)
treeaeb3faebefc36fcb0bd795e1cfa03a8f538d4b11
parent33b3ab5a51f13e483dd8a37f84c392bc40117a38 (diff)
downloademacs-1a9aa7dfa07fd3737a391af994010989b876568b.tar.gz
emacs-1a9aa7dfa07fd3737a391af994010989b876568b.zip
(mh-alias-local-users): Boolean docstrings should start with "Non-nil
means". Perhaps this option should have a -flag appended. (mh-junk-background): Sync docstring with manual.
-rw-r--r--lisp/mh-e/mh-e.el12
1 files changed, 8 insertions, 4 deletions
diff --git a/lisp/mh-e/mh-e.el b/lisp/mh-e/mh-e.el
index e8078e2154f..e1e9648e31d 100644
--- a/lisp/mh-e/mh-e.el
+++ b/lisp/mh-e/mh-e.el
@@ -1218,7 +1218,7 @@ or \"Bottom\" of your alias file might be more appropriate."
1218 :package-version '(MH-E . "7.1")) 1218 :package-version '(MH-E . "7.1"))
1219 1219
1220(defcustom-mh mh-alias-local-users t 1220(defcustom-mh mh-alias-local-users t
1221 "*If on, local users are added to alias completion. 1221 "*Non-nil means local users are added to alias completion.
1222 1222
1223Aliases are created from \"/etc/passwd\" entries with a user ID 1223Aliases are created from \"/etc/passwd\" entries with a user ID
1224larger than a magical number, typically 200. This can be a handy 1224larger than a magical number, typically 200. This can be a handy
@@ -1690,9 +1690,13 @@ The function is always called with SYMBOL bound to
1690By default, the programs are run in the foreground, but this can 1690By default, the programs are run in the foreground, but this can
1691be slow when junking large numbers of messages. If you have 1691be slow when junking large numbers of messages. If you have
1692enough memory or don't junk that many messages at the same time, 1692enough memory or don't junk that many messages at the same time,
1693you might try turning on this option (that is, setting its value to 0). 1693you might try turning on this option.
1694If the value is t, the programs' output is saved in the MH-E log buffer; 1694
1695this may be useful for debugging." 1695Note that this option is used as the \"display\" argument in the
1696call to `call-process'. Therefore, turning on this option means
1697setting its value to \"0\". You can also set its value to t to
1698direct the programs' output to the \"*MH-E Log*\" buffer; this
1699may be useful for debugging."
1696 :type '(choice (const :tag "Off" nil) 1700 :type '(choice (const :tag "Off" nil)
1697 (const :tag "On" 0)) 1701 (const :tag "On" 0))
1698 :group 'mh-junk 1702 :group 'mh-junk