diff options
| author | Ken Raeburn | 2010-07-11 02:59:55 -0400 |
|---|---|---|
| committer | Ken Raeburn | 2010-07-11 02:59:55 -0400 |
| commit | 6a8033e1c6814ab9b0b0265039f91c701f53048d (patch) | |
| tree | e6f26804c0fcf2f009e7b3a30c9c6370cae8e436 /src/ChangeLog | |
| parent | 994a7c3beb2fb2fe9f98426529fd45f3d47391d6 (diff) | |
| download | emacs-6a8033e1c6814ab9b0b0265039f91c701f53048d.tar.gz emacs-6a8033e1c6814ab9b0b0265039f91c701f53048d.zip | |
Make doprnt and related functions ANSI C compliant, with prototypes.
* doprnt.c (doprnt): Take a va_list argument instead of count and
pointer.
* eval.c (error): Change to a standard-C variadic function.
* xdisp.c (vmessage): Renamed from message, made static, and
changed to take a va_list argument.
(message): New variadic wrapper.
(message_nolog): Now a variadic function, calling vmessage.
* lisp.h: Include stdarg.h for va_list.
(doprnt, error, message, message_nolog): Decls updated.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index a7c8a9844f1..c5c4b04e88a 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,15 @@ | |||
| 1 | 2010-07-11 Ken Raeburn <raeburn@raeburn.org> | ||
| 2 | |||
| 3 | * doprnt.c (doprnt): Take a va_list argument instead of count and | ||
| 4 | pointer. | ||
| 5 | * eval.c (error): Change to a standard-C variadic function. | ||
| 6 | * xdisp.c (vmessage): Renamed from message, made static, and | ||
| 7 | changed to take a va_list argument. | ||
| 8 | (message): New variadic wrapper. | ||
| 9 | (message_nolog): Now a variadic function, calling vmessage. | ||
| 10 | * lisp.h: Include stdarg.h for va_list. | ||
| 11 | (doprnt, error, message, message_nolog): Decls updated. | ||
| 12 | |||
| 1 | 2010-07-11 Eli Zaretskii <eliz@gnu.org> | 13 | 2010-07-11 Eli Zaretskii <eliz@gnu.org> |
| 2 | 14 | ||
| 3 | * process.c (syms_of_process) <delete-exited-processes>: Define | 15 | * process.c (syms_of_process) <delete-exited-processes>: Define |