1998-10-08 Didier Verna <verna(a)inf.enst.fr>
* time-stamp.el (time-stamp-strftime): fixed usage of `concat'
(which now accepts only strings) when `field-result' is a number.
--- time-stamp.el.orig Thu Oct 8 09:56:44 1998
+++ time-stamp.el Thu Oct 8 10:06:55 1998
@@ -390,7 +390,9 @@
(time-stamp-mail-host-name))
))
(if (string-equal field-width "")
- field-result
+ (if (numberp field-result)
+ (number-to-string field-result)
+ field-result)
(let ((padded-result
(format (format "%%%s%c"
field-width
--
/ / _ _ Didier Verna
http://www.inf.enst.fr/~verna/
- / / - / / /_/ / E.N.S.T. INF C201.1 mailto:verna@inf.enst.fr
/_/ / /_/ / /__ / 46 rue Barrault Tel. (33) 01 45 81 73 46
75634 Paris cedex 13 Fax. (33) 01 45 81 31 19