aboutsummaryrefslogtreecommitdiffstats
path: root/src/term.c
diff options
context:
space:
mode:
authorDan Nicolaescu <[email protected]>2007-11-22 01:01:26 +0000
committerDan Nicolaescu <[email protected]>2007-11-22 01:01:26 +0000
commit7c401d155d16ad076dd9c681566d535c0d3cce17 (patch)
treeae02a3ce4f7f4894ad5551229eeba6a0529f7d0d /src/term.c
parentc2ca78bc31645e04406a57fd5ee52b8e9486b9fd (diff)
* term.c: Include stdarg.h.
(fatal): Implement using varargs. * lisp.h (fatal): Add argument types. (Restore 2005-09-30 change).
Diffstat (limited to 'src/term.c')
-rw-r--r--src/term.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/term.c b/src/term.c
index cdf84eef09..20c7be33e3 100644
--- a/src/term.c
+++ b/src/term.c
@@ -37,6 +37,7 @@ Boston, MA 02110-1301, USA. */
#endif
#include <signal.h>
+#include <stdarg.h>
#include "lisp.h"
#include "termchar.h"
@@ -3754,14 +3755,14 @@ maybe_fatal (must_succeed, buffer, terminal, str1, str2, arg1, arg2)
abort ();
}
-/* VARARGS 1 */
void
-fatal (str, arg1, arg2)
- char *str, *arg1, *arg2;
+fatal (const char *str, ...)
{
+ va_list ap;
+ va_start (ap, str);
fprintf (stderr, "emacs: ");
- fprintf (stderr, str, arg1, arg2);
- fprintf (stderr, "\n");
+ vfprintf (stderr, str, ap);
+ va_end (ap);
fflush (stderr);
exit (1);
}