diff options
author | Gerd Moellmann <gerd@gnu.org> | 2000-04-19 15:37:26 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2000-04-19 15:37:26 +0000 |
commit | c22a231ba2d8bfcea4799be991d25f3454020eb2 (patch) | |
tree | c8a38f9cc6a1e22c776330cba0b29762b533e7d2 | |
parent | d94af330080a233c95a13d7acae35e1ad00017ca (diff) | |
download | emacs-c22a231ba2d8bfcea4799be991d25f3454020eb2.tar.gz |
(with_echo_area_buffer): Add more `int' parameters for
the `variable argument list' to make it work on Alpha.
-rw-r--r-- | src/xdisp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index bb79c954686..061a0c8cab8 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -5284,11 +5284,11 @@ ensure_echo_area_buffers () Value is what FN returns. */ static int -with_echo_area_buffer (w, which, fn, a1, a2, a3, a4, a5) +with_echo_area_buffer (w, which, fn, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10) struct window *w; int which; int (*fn) (); - int a1, a2, a3, a4, a5; + int a1, a2, a3, a4, a5, a6, a7, a8, a9, a10; { Lisp_Object buffer; int this_one, the_other, clear_buffer_p, rc; |