Replace string-to-int' by string-to-number'.

This commit is contained in:
Juanma Barranquero 2005-05-16 11:34:49 +00:00
parent 216d380630
commit 027a4b6b3f
58 changed files with 570 additions and 491 deletions

View file

@ -418,7 +418,7 @@ ISO-DATE non-nil means return the date in ISO 8601 format."
(format "%s-%s-%s" yyyy mm dd)
(format "%s %s %s"
dd
(nth (string-to-int mm)
(nth (string-to-number mm)
'("" "Jan" "Feb" "Mar" "Apr" "May" "Jun"
"Jul" "Aug" "Sep" "Oct" "Nov" "Dec"))
yyyy))))))