* gettextize.in: Tell the user about glibc21.m4.
+2001-05-09 Bruno Haible <haible@clisp.cons.org>
+
+ * po-mode.el (po-replace-revision-date): For the timezone, use RFC 822
+ format [+/-]HHMM, not [+/-]HH:MM. Reported by Jan D.
+
2001-04-19 Bruno Haible <haible@clisp.cons.org>
* gettext-0.10.37 released.
(time (current-time))
(seconds (or (car (current-time-zone time)) 0))
(minutes (/ (abs seconds) 60))
- (zone (format "%c%02d:%02d"
+ (zone (format "%c%02d%02d"
(if (< seconds 0) ?- ?+)
(/ minutes 60)
(% minutes 60))))