summaryrefslogtreecommitdiff
path: root/lisp/vc/add-log.el
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2016-04-11 15:15:23 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2016-04-11 15:15:59 -0700
commitc41ce1cf3db45111cf4034d4a5fe6d98ada07b97 (patch)
tree64d4a00266c4f95e3d7fd234bd5d627f853fb81f /lisp/vc/add-log.el
parent10597c977d55cbf9304b51c3b364ce58199384a0 (diff)
Capitalize “Universal Time” in documentation
It’s a proper noun. * lisp/vc/add-log.el (add-log-time-zone-rule): Also, fix typo by mentioning ‘format-time-string’ instead of ‘set-time-zone-rule’.
Diffstat (limited to 'lisp/vc/add-log.el')
-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."
;; called add-log-time-zone-rule since it's only used from add-log-* code.
(defvaralias 'change-log-time-zone-rule 'add-log-time-zone-rule)
(defvar add-log-time-zone-rule nil
- "Time zone used for calculating change log time stamps.
-It takes the same format as the TZ argument of `set-time-zone-rule'.
-If nil, use local time.
-If t, use universal time.")
+ "Time zone rule used for calculating change log time stamps.
+If nil, use local time. If t, use Universal Time.
+If a string, interpret as the ZONE argument of `format-time-string'.")
(put 'add-log-time-zone-rule 'safe-local-variable
(lambda (x) (or (booleanp x) (stringp x))))