summaryrefslogtreecommitdiff
path: root/readme-debian.el
diff options
context:
space:
mode:
authordancer <>2006-04-09 04:16:15 +0000
committerdancer <>2006-04-09 04:16:15 +0000
commita5d744e7a4cafa13bfb458d3416b69d7553666b0 (patch)
tree1670d66aa70af946a13af3ea49b6981e7276bbf3 /readme-debian.el
parent4be63bd7ffc9c85f3efd609899878f6562a1e9f9 (diff)
set locale to C for formatting the date, to obtain decent rfc822 date.
Diffstat (limited to 'readme-debian.el')
-rw-r--r--readme-debian.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/readme-debian.el b/readme-debian.el
index 8b6bcbc..04d8dab 100644
--- a/readme-debian.el
+++ b/readme-debian.el
@@ -58,7 +58,8 @@
" -- "
debian-changelog-full-name
" <" debian-changelog-mailing-address ">, "
- (format-time-string "%a, %e %b %Y %T %z" (current-time))))
+ (let* ((system-time-locale "C"))
+ (format-time-string "%a, %e %b %Y %T %z" (current-time)))))
(if (and (= (point)(point-max)) (not (bolp)))
(insert "\n"))))