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 45e863340a5..fa02a5a1f5e 100644
--- a/lisp/vc/add-log.el
+++ b/lisp/vc/add-log.el
@@ -575,10 +575,9 @@ Compatibility function for \\[next-error] invocations."
575;; called add-log-time-zone-rule since it's only used from add-log-* code. 575;; called add-log-time-zone-rule since it's only used from add-log-* code.
576(defvaralias 'change-log-time-zone-rule 'add-log-time-zone-rule) 576(defvaralias 'change-log-time-zone-rule 'add-log-time-zone-rule)
577(defvar add-log-time-zone-rule nil 577(defvar add-log-time-zone-rule nil
578 "Time zone used for calculating change log time stamps. 578 "Time zone rule used for calculating change log time stamps.
579It takes the same format as the TZ argument of `set-time-zone-rule'. 579If nil, use local time. If t, use Universal Time.
580If nil, use local time. 580If a string, interpret as the ZONE argument of `format-time-string'.")
581If t, use universal time.")
582(put 'add-log-time-zone-rule 'safe-local-variable 581(put 'add-log-time-zone-rule 'safe-local-variable
583 (lambda (x) (or (booleanp x) (stringp x)))) 582 (lambda (x) (or (booleanp x) (stringp x))))
584 583