diff options
| author | Paul Eggert | 2016-04-11 15:15:23 -0700 |
|---|---|---|
| committer | Paul Eggert | 2016-04-11 15:15:59 -0700 |
| commit | c41ce1cf3db45111cf4034d4a5fe6d98ada07b97 (patch) | |
| tree | 64d4a00266c4f95e3d7fd234bd5d627f853fb81f /lisp/vc | |
| parent | 10597c977d55cbf9304b51c3b364ce58199384a0 (diff) | |
| download | emacs-c41ce1cf3db45111cf4034d4a5fe6d98ada07b97.tar.gz emacs-c41ce1cf3db45111cf4034d4a5fe6d98ada07b97.zip | |
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')
| -rw-r--r-- | lisp/vc/add-log.el | 7 |
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. |
| 579 | It takes the same format as the TZ argument of `set-time-zone-rule'. | 579 | If nil, use local time. If t, use Universal Time. |
| 580 | If nil, use local time. | 580 | If a string, interpret as the ZONE argument of `format-time-string'.") |
| 581 | If 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 | ||