1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-01 11:14:55 +00:00

(with_echo_area_buffer): Add more `int' parameters for

the `variable argument list' to make it work on Alpha.
This commit is contained in:
Gerd Moellmann 2000-04-19 15:37:26 +00:00
parent e1ef1fb2e2
commit 62694e5aea

View File

@ -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;