diff options
author | Mark Oteiza <mvoteiza@udel.edu> | 2016-10-13 14:41:46 -0400 |
---|---|---|
committer | Mark Oteiza <mvoteiza@udel.edu> | 2016-10-13 14:41:46 -0400 |
commit | 4c620c20d4cfd15e6c54fc10c1000dabc01064f7 (patch) | |
tree | a128173a0f41bd09871759dbb0f38e060ec5d293 | |
parent | 506a97a58d0cff595f13e6238b59c9e8c70440d5 (diff) | |
download | emacs-4c620c20d4cfd15e6c54fc10c1000dabc01064f7.tar.gz emacs-4c620c20d4cfd15e6c54fc10c1000dabc01064f7.tar.bz2 emacs-4c620c20d4cfd15e6c54fc10c1000dabc01064f7.zip |
* lisp/time.el (display-time-string-forms): Fix custom type.
-rw-r--r-- | lisp/time.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/time.el b/lisp/time.el index 651dd56779b..a0419c91b43 100644 --- a/lisp/time.el +++ b/lisp/time.el @@ -314,7 +314,7 @@ For example, the form (if mail \" Mail\" \"\")) would give mode line times like `94/12/30 21:07:48 (UTC)'." - :type 'sexp + :type '(repeat sexp) :group 'display-time) (defun display-time-event-handler () |