comparison lisp/mh-e/mh-e.el @ 73958:7df5ae069c1c

(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.
author Bill Wohler <wohler@newt.com>
date Mon, 13 Nov 2006 04:40:11 +0000
parents 63fc0820b362
children 3419ae78a2e2
comparison
equal deleted inserted replaced
73957:11b214d38a57 73958:7df5ae069c1c
1216 (const :tag "Bottom" bottom)) 1216 (const :tag "Bottom" bottom))
1217 :group 'mh-alias 1217 :group 'mh-alias
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
1223 Aliases are created from \"/etc/passwd\" entries with a user ID 1223 Aliases are created from \"/etc/passwd\" entries with a user ID
1224 larger than a magical number, typically 200. This can be a handy 1224 larger than a magical number, typically 200. This can be a handy
1225 tool on a machine where you and co-workers exchange messages. 1225 tool on a machine where you and co-workers exchange messages.
1226 These aliases have the form \"local.first.last\" if a real name is 1226 These aliases have the form \"local.first.last\" if a real name is
1688 "If on, spam programs are run in background. 1688 "If on, spam programs are run in background.
1689 1689
1690 By default, the programs are run in the foreground, but this can 1690 By default, the programs are run in the foreground, but this can
1691 be slow when junking large numbers of messages. If you have 1691 be slow when junking large numbers of messages. If you have
1692 enough memory or don't junk that many messages at the same time, 1692 enough memory or don't junk that many messages at the same time,
1693 you might try turning on this option (that is, setting its value to 0). 1693 you might try turning on this option.
1694 If the value is t, the programs' output is saved in the MH-E log buffer; 1694
1695 this may be useful for debugging." 1695 Note that this option is used as the \"display\" argument in the
1696 call to `call-process'. Therefore, turning on this option means
1697 setting its value to \"0\". You can also set its value to t to
1698 direct the programs' output to the \"*MH-E Log*\" buffer; this
1699 may 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
1699 :package-version '(MH-E . "8.0")) 1703 :package-version '(MH-E . "8.0"))
1700 1704