diff options
| -rw-r--r-- | lisp/time.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/time.el b/lisp/time.el index 901f00d9d3f..e9a57bf2400 100644 --- a/lisp/time.el +++ b/lisp/time.el | |||
| @@ -138,7 +138,7 @@ would give mode line times like `94/12/30 21:07:48 (UTC)'.") | |||
| 138 | (if (= hour 0) | 138 | (if (= hour 0) |
| 139 | 12 | 139 | 12 |
| 140 | hour)))) | 140 | hour)))) |
| 141 | (am-pm (if (> hour 12) "pm" "am")) | 141 | (am-pm (if (>= hour 12) "pm" "am")) |
| 142 | (minutes (substring time 14 16)) | 142 | (minutes (substring time 14 16)) |
| 143 | (seconds (substring time 17 19)) | 143 | (seconds (substring time 17 19)) |
| 144 | (time-zone (car (cdr (current-time-zone)))) | 144 | (time-zone (car (cdr (current-time-zone)))) |