From 51603539e658892d93fc7691e0ce2772df6ed3c0 Mon Sep 17 00:00:00 2001 Message-Id: <51603539e658892d93fc7691e0ce2772df6ed3c0.1717792340.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sun, 20 Mar 2016 17:45:30 +0000 Subject: [PATCH] dot/emacs: Display times in 24-hour clock, please. Organization: Straylight/Edgeware From: Mark Wooding --- dot/emacs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dot/emacs b/dot/emacs index 37e742d..d4a313e 100644 --- a/dot/emacs +++ b/dot/emacs @@ -380,7 +380,10 @@ ;; Date format fiddling. (setq european-calendar-style t - calendar-date-style 'european) + calendar-date-style 'european + calendar-time-display-form + '(24-hours ":" minutes + (if time-zone " (") time-zone (if time-zone ")"))) (setq diary-date-forms '((day "[-/]" month "[^-/0-9]") (day " *" monthname "[ \t]*\\(\^M\\|\n\\)") -- [mdw]