From bf673a7a1392388daed1b02810c985a6db1c2eba Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Wed, 26 May 1993 17:50:23 +0000 Subject: [PATCH] (Fcurrent_input_mode): Fix the call to Flist. --- src/keyboard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/keyboard.c b/src/keyboard.c index 8b307c7fa6d..fc7d5f4d8cf 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -4631,7 +4631,7 @@ The elements of this list correspond to the arguments of\n\ val[2] = meta_key == 2 ? make_number (0) : meta_key == 1 ? Qt : Qnil; XFASTINT (val[3]) = quit_char; - return Flist (val, sizeof (val) / sizeof (val[0])); + return Flist (sizeof (val) / sizeof (val[0]), val); }