# HG changeset patch # User Richard M. Stallman # Date 873606652 0 # Node ID 1366d82c1d3f3afe9976519e14c88e16107b660e # Parent 5f1711b00ca05b7531dde10f9eeb6a6e7faa28d0 (time-stamp-time-zone): Allow nil as alternative. diff -r 5f1711b00ca0 -r 1366d82c1d3f lisp/time-stamp.el --- a/lisp/time-stamp.el Sun Sep 07 04:25:59 1997 +0000 +++ b/lisp/time-stamp.el Sun Sep 07 04:30:52 1997 +0000 @@ -113,7 +113,7 @@ (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)