diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-04-22 20:34:37 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-04-22 20:34:37 +0200 |
commit | ac6b62bdbf01dba8e7f3e075c6672625c71ac746 (patch) | |
tree | 9e2fb55023c4124b73bc80ba465936fa1c6ce6c1 /lisp/time.el | |
parent | e860430edc35642bb4aebe919a5231e4d5182d54 (diff) | |
download | emacs-ac6b62bdbf01dba8e7f3e075c6672625c71ac746.tar.gz |
* lisp/time.el (world-clock-mode): Make non-interactive.
Diffstat (limited to 'lisp/time.el')
-rw-r--r-- | lisp/time.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/time.el b/lisp/time.el index 5abc6e948b3..fd53f634c69 100644 --- a/lisp/time.el +++ b/lisp/time.el @@ -534,6 +534,7 @@ If the value is t instead of an alist, use the value of (define-derived-mode world-clock-mode special-mode "World clock" "Major mode for buffer that displays times in various time zones. See `world-clock'." + :interactive nil (setq-local revert-buffer-function #'world-clock-update) (setq show-trailing-whitespace nil)) |