diff options
author | Jim Blandy <jimb@redhat.com> | 1993-03-30 21:12:44 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1993-03-30 21:12:44 +0000 |
commit | 555b2421bb1cc67980a63ca581001657b788a4b4 (patch) | |
tree | b073f124b2544431d6e3b6819da58c992b55753e /lisp | |
parent | 13244a040eaceb2c5342a54da419f7e469a66fb7 (diff) | |
download | emacs-555b2421bb1cc67980a63ca581001657b788a4b4.tar.gz emacs-555b2421bb1cc67980a63ca581001657b788a4b4.tar.bz2 emacs-555b2421bb1cc67980a63ca581001657b788a4b4.zip |
* subr.el (int-to-string): Make this an alias for the subr
number-to-string.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/subr.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/subr.el b/lisp/subr.el index e6ec3b3b613..88fbb517fae 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -353,6 +353,7 @@ Accept any number of arguments, but ignore them." (fset 'backward-delete-char 'delete-backward-char) (fset 'search-forward-regexp (symbol-function 're-search-forward)) (fset 'search-backward-regexp (symbol-function 're-search-backward)) +(fset 'int-to-string 'number-to-string) ;;; Should this be an obsolete name? If you decide it should, you get ;;; to go through all the sources and change them. |