From 955907b985b5d695921e36febc8343d48c05358e Mon Sep 17 00:00:00 2001 From: Misaka Date: Sat, 23 Mar 2024 17:21:03 +0800 Subject: [PATCH] Fix benchmark time display on Windows --- early-init.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/early-init.el b/early-init.el index 7e4732e..03e149a 100644 --- a/early-init.el +++ b/early-init.el @@ -48,7 +48,7 @@ Used by `citar-notes-paths' and `org-roam-capture-templates'.") (defun cat-benchmark (pos &optional file) "Print the current time of load POS of FILE." (message "%s %s of %s" - (format-time-string "%r %3N") + (format-time-string "%T %3N") (upcase (symbol-name pos)) (or file load-file-name buffer-file-name)))