diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2005-05-16 10:07:59 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2005-05-16 10:07:59 +0000 |
commit | 216d380630ec8be9569a56687f0e08b89ee97c47 (patch) | |
tree | 3e4277a92220cf7828d5a9b8a7ea158a6bea0396 /lisp/url/url-util.el | |
parent | cc211a0ff8145e0814413e237bb5674d615968b7 (diff) | |
download | emacs-216d380630ec8be9569a56687f0e08b89ee97c47.tar.gz |
Replace `string-to-int' by `string-to-number'.
Diffstat (limited to 'lisp/url/url-util.el')
-rw-r--r-- | lisp/url/url-util.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/url/url-util.el b/lisp/url/url-util.el index 1d0bfcf0c48..b796d695461 100644 --- a/lisp/url/url-util.el +++ b/lisp/url/url-util.el @@ -196,7 +196,7 @@ Will not do anything if `url-show-status' is nil." (year nil) (month (car (rassoc - (string-to-int (aref parsed 1)) url-monthabbrev-alist))) + (string-to-number (aref parsed 1)) url-monthabbrev-alist))) ) (setq day (or (car-safe (rassoc day url-weekday-alist)) (substring raw 0 3)) |