aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1993-05-26 17:50:23 +0000
committerRichard M. Stallman1993-05-26 17:50:23 +0000
commitbf673a7a1392388daed1b02810c985a6db1c2eba (patch)
tree84b3c170a4d57d7e17d53da413de39b5a5ebafa4 /src
parent7498a8713cb642ea8b366624bf6f691e37127e72 (diff)
downloademacs-bf673a7a1392388daed1b02810c985a6db1c2eba.tar.gz
emacs-bf673a7a1392388daed1b02810c985a6db1c2eba.zip
(Fcurrent_input_mode): Fix the call to Flist.
Diffstat (limited to 'src')
-rw-r--r--src/keyboard.c2
1 files changed, 1 insertions, 1 deletions
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\
4631 val[2] = meta_key == 2 ? make_number (0) : meta_key == 1 ? Qt : Qnil; 4631 val[2] = meta_key == 2 ? make_number (0) : meta_key == 1 ? Qt : Qnil;
4632 XFASTINT (val[3]) = quit_char; 4632 XFASTINT (val[3]) = quit_char;
4633 4633
4634 return Flist (val, sizeof (val) / sizeof (val[0])); 4634 return Flist (sizeof (val) / sizeof (val[0]), val);
4635} 4635}
4636 4636
4637 4637