mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-10 00:00:39 -08:00
Replace string-to-int' by string-to-number'.
This commit is contained in:
parent
216d380630
commit
027a4b6b3f
58 changed files with 570 additions and 491 deletions
|
|
@ -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))))))
|
||||
|
|
|
|||
|
|
@ -557,7 +557,7 @@ optional fourth argument FORCE is non-nil."
|
|||
(interactive)
|
||||
|
||||
(setq reb-subexp-displayed
|
||||
(or subexp (string-to-int (format "%c" last-command-char))))
|
||||
(or subexp (string-to-number (format "%c" last-command-char))))
|
||||
(reb-update-modestring)
|
||||
(reb-do-update reb-subexp-displayed))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue