diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-09-07 04:30:52 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-09-07 04:30:52 +0000 |
commit | 7967f8ab1eda00584378b22e89d822b323a2cf13 (patch) | |
tree | f540fc8c9a7c70b47b7cf6d0e187fbbb9786c857 /lisp/time-stamp.el | |
parent | 0f8b8c5063db021d99d53724d23fbe6c1c908c92 (diff) | |
download | emacs-7967f8ab1eda00584378b22e89d822b323a2cf13.tar.gz |
(time-stamp-time-zone): Allow nil as alternative.
Diffstat (limited to 'lisp/time-stamp.el')
-rw-r--r-- | lisp/time-stamp.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/time-stamp.el b/lisp/time-stamp.el index d8a279e0082..93c4f86af1d 100644 --- a/lisp/time-stamp.el +++ b/lisp/time-stamp.el @@ -113,7 +113,7 @@ If nil, no notification is given." (defcustom time-stamp-time-zone nil "If non-nil, a string naming the timezone to be used by \\[time-stamp]. Format is the same as that used by the environment variable TZ on your system." - :type 'string + :type '(choice (const nil) string) :group 'time-stamp) |