summaryrefslogtreecommitdiff
path: root/src/fns.c
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1993-03-30 21:21:49 +0000
committerJim Blandy <jimb@redhat.com>1993-03-30 21:21:49 +0000
commitf298026408cb2c7216eeed489c01ad1f20858980 (patch)
tree29be0610b24384225591b395411e1161f6241203 /src/fns.c
parent555b2421bb1cc67980a63ca581001657b788a4b4 (diff)
downloademacs-f298026408cb2c7216eeed489c01ad1f20858980.tar.gz
Rename int-to-string to number-to-string, since it can handle
floating-point as well as integer arguments. subr.el defines the former as an alias for the latter. * data.c (Fnumber_to_string): Renamed from Fint_to_string. (wrong_type_argument): Adjust caller. (syms_of_data): Adjust defsubr. * fns.c (concat): Adjust caller. * lisp.h (Fnumber_to_string): Adjust extern declaration. * mocklisp.c (Finsert_string): Adjust caller. * process.c (status_message): Adjust caller.
Diffstat (limited to 'src/fns.c')
-rw-r--r--src/fns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fns.c b/src/fns.c
index 667612237af..14a2ce5b229 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -262,7 +262,7 @@ concat (nargs, args, target_type, last_special)
|| XTYPE (this) == Lisp_Compiled))
{
if (XTYPE (this) == Lisp_Int)
- args[argnum] = Fint_to_string (this);
+ args[argnum] = Fnumber_to_string (this);
else
args[argnum] = wrong_type_argument (Qsequencep, this);
}