Mercurial > emacs
comparison src/process.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 | 9faa3a02ea97 |
| children | 17a84e60603b |
comparison
equal
deleted
inserted
replaced
| 2428:83319ce2d2f3 | 2429:96b55f2f19cd |
|---|---|
| 357 } | 357 } |
| 358 else if (EQ (symbol, Qexit)) | 358 else if (EQ (symbol, Qexit)) |
| 359 { | 359 { |
| 360 if (code == 0) | 360 if (code == 0) |
| 361 return build_string ("finished\n"); | 361 return build_string ("finished\n"); |
| 362 string = Fint_to_string (make_number (code)); | 362 string = Fnumber_to_string (make_number (code)); |
| 363 string2 = build_string (coredump ? " (core dumped)\n" : "\n"); | 363 string2 = build_string (coredump ? " (core dumped)\n" : "\n"); |
| 364 return concat2 (build_string ("exited abnormally with code "), | 364 return concat2 (build_string ("exited abnormally with code "), |
| 365 concat2 (string, string2)); | 365 concat2 (string, string2)); |
| 366 } | 366 } |
| 367 else | 367 else |
