diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-07-02 20:01:13 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-07-02 20:01:13 +0000 |
commit | bed4823c0ad27601aa754d98148261165af43441 (patch) | |
tree | c631a66099d1c88314f3b6595f7485640f3c9623 | |
parent | 84e2bae6c2aee608d74971c39c5a20ac79e0d145 (diff) | |
download | emacs-bed4823c0ad27601aa754d98148261165af43441.tar.gz |
(display-time-string-forms): Use %M, not %m.
-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 f66160b4718..6708ef88243 100644 --- a/lisp/time.el +++ b/lisp/time.el @@ -131,7 +131,7 @@ depend on `display-time-day-and-date' and `display-time-24hr-format'." (format-time-string "%a %b %e " now) "") (format-time-string (or display-time-format - (if display-time-24hr-format "%H:%m" "%-I:%M%p")) + (if display-time-24hr-format "%H:%M" "%-I:%M%p")) now) load (if mail " Mail" "")) |