aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/vc
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/vc')
-rw-r--r--lisp/vc/add-log.el7
1 files changed, 3 insertions, 4 deletions
diff --git a/lisp/vc/add-log.el b/lisp/vc/add-log.el
index d6c1fc203db..58a4e77a602 100644
--- a/lisp/vc/add-log.el
+++ b/lisp/vc/add-log.el
@@ -583,10 +583,9 @@ Compatibility function for \\[next-error] invocations."
583;; called add-log-time-zone-rule since it's only used from add-log-* code. 583;; called add-log-time-zone-rule since it's only used from add-log-* code.
584(defvaralias 'change-log-time-zone-rule 'add-log-time-zone-rule) 584(defvaralias 'change-log-time-zone-rule 'add-log-time-zone-rule)
585(defvar add-log-time-zone-rule nil 585(defvar add-log-time-zone-rule nil
586 "Time zone used for calculating change log time stamps. 586 "Time zone rule used for calculating change log time stamps.
587It takes the same format as the TZ argument of `set-time-zone-rule'. 587If nil, use local time. If t, use Universal Time.
588If nil, use local time. 588If a string, interpret as the ZONE argument of `format-time-string'.")
589If t, use universal time.")
590(put 'add-log-time-zone-rule 'safe-local-variable 589(put 'add-log-time-zone-rule 'safe-local-variable
591 (lambda (x) (or (booleanp x) (stringp x)))) 590 (lambda (x) (or (booleanp x) (stringp x))))
592 591