From 75d9dfd060785c9d81b0bd4f9e926cf199514aa5 Mon Sep 17 00:00:00 2001 From: Michael Olson Date: Fri, 25 Aug 2006 02:11:53 +0000 Subject: [PATCH] muse-blosxom: Fix XEmacs format-time-string bug. 2006-08-24 Michael Olson * lisp/muse-blosxom.el (muse-blosxom-new-entry): Remove the numbers from the argument to format-time-string. This fixes an XEmacs bug. Thanks to Michael Welle for the report and analysis. git-archimport-id: mwolson@gnu.org--2006/muse--main--1.0--patch-195 --- ChangeLog | 6 ++++++ lisp/muse-blosxom.el | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index be887d3..ec97b9f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2006-08-24 Michael Olson + + * lisp/muse-blosxom.el (muse-blosxom-new-entry): Remove the + numbers from the argument to format-time-string. This fixes an + XEmacs bug. Thanks to Michael Welle for the report and analysis. + 2006-08-18 Michael Olson * lisp/muse-project.el (muse-project-file-entries): Since we are diff --git a/lisp/muse-blosxom.el b/lisp/muse-blosxom.el index 4ff5c23..a440a67 100644 --- a/lisp/muse-blosxom.el +++ b/lisp/muse-blosxom.el @@ -232,7 +232,7 @@ The page will be initialized with the current date and TITLE." (concat (directory-file-name muse-blosxom-base-directory) "/" category)))) (goto-char (point-min)) - (insert "#date " (format-time-string "%4Y-%2m-%2d-%2H-%2M") + (insert "#date " (format-time-string "%Y-%m-%d-%H-%M") "\n#title " title) (unless (string= category "") (insert -- 2.11.4.GIT