diff options
author | Kai Großjohann <kgrossjo@eu.uu.net> | 2000-10-29 17:36:49 +0000 |
---|---|---|
committer | Kai Großjohann <kgrossjo@eu.uu.net> | 2000-10-29 17:36:49 +0000 |
commit | 1da437e9a86ce6a7db0f3a58f17289842ae92ff7 (patch) | |
tree | cac0ce13179a01760afc1e6637dadc15a1ed6239 /lisp/time-stamp.el | |
parent | d555ca6c2b3ccf920f998c3ae57134573afa049d (diff) | |
download | emacs-1da437e9a86ce6a7db0f3a58f17289842ae92ff7.tar.gz |
install-info syntax compat change.
Diffstat (limited to 'lisp/time-stamp.el')
-rw-r--r-- | lisp/time-stamp.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/time-stamp.el b/lisp/time-stamp.el index b34ddfe0b60..62fe6f11c24 100644 --- a/lisp/time-stamp.el +++ b/lisp/time-stamp.el @@ -544,9 +544,9 @@ Optionally use FORMAT." ((eq cur-char ?y) ;year (or alt-form (not (string-equal field-width "")) (time-stamp-conv-warn "%y" "%:y")) - (string-to-int (format-time-string "%Y" time))) + (format-time-string "%Y" time)) ((eq cur-char ?Y) ;4-digit year, new style - (string-to-int (format-time-string "%Y" time))) + (format-time-string "%Y" time)) ((eq cur-char ?z) ;time zone lower case (if change-case "" ;discourage %z variations |