diff src/mocklisp.c @ 2429:96b55f2f19cd

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.
author Jim Blandy <jimb@redhat.com>
date Tue, 30 Mar 1993 21:21:49 +0000
parents a7f08730f7ae
children 1fc792473491
line wrap: on
line diff
--- a/src/mocklisp.c	Tue Mar 30 21:12:44 1993 +0000
+++ b/src/mocklisp.c	Tue Mar 30 21:21:49 1993 +0000
@@ -211,7 +211,7 @@
       tem = args[argnum];
     retry:
       if (XTYPE (tem) == Lisp_Int)
-	tem = Fint_to_string (tem);
+	tem = Fnumber_to_string (tem);
       if (XTYPE (tem) == Lisp_String)
 	insert1 (tem);
       else