summaryrefslogtreecommitdiff
path: root/lisp/time.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2002-04-30 17:56:19 +0000
committerRichard M. Stallman <rms@gnu.org>2002-04-30 17:56:19 +0000
commitad68bb68bce7929509afa61ecb4f7d647f85f415 (patch)
tree92f79f09b083226eaa06574ad665f65dd97eba77 /lisp/time.el
parent85378c3fcab7d998f65b331b9637a9108f5bd411 (diff)
downloademacs-ad68bb68bce7929509afa61ecb4f7d647f85f415.tar.gz
(display-time-mail-directory, display-time-mail-function): Doc fixes.
Diffstat (limited to 'lisp/time.el')
-rw-r--r--lisp/time.el9
1 files changed, 5 insertions, 4 deletions
diff --git a/lisp/time.el b/lisp/time.el
index 92494e5419f..08e13353ca3 100644
--- a/lisp/time.el
+++ b/lisp/time.el
@@ -46,16 +46,17 @@ default, which is system-dependent, and is the same as used by Rmail."
(defcustom display-time-mail-directory nil
"*Name of mail inbox directory, for indicating existence of new mail.
-Non-nil and not a string means don't check for mail.
-When nil, no checking for mail in directory is done."
+Any nonempty regular file in the directory is regarded as newly arrived mail.
+If nil, do not check a directory for arriving mail."
:type '(choice (const :tag "None" nil)
(directory :format "%v"))
:group 'display-time)
(defcustom display-time-mail-function nil
"*Function to call, for indicating existence of new mail.
-nil means use the default method of checking `display-time-mail-file'
-or files in `display-time-mail-directory'."
+If nil, that means use the default method: check that the file
+specified by `display-time-mail-file' is nonempty or that the
+directory `display-time-mail-directory' contains nonempty files."
:type '(choice (const :tag "Default" nil)
(function))
:group 'display-time)