Mercurial > emacs
changeset 3116:05c3ef28bb6b
(Fcurrent_input_mode): Fix the call to Flist.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 26 May 1993 17:50:23 +0000 |
parents | 86652a5c442b |
children | 1d3a6f78266f |
files | src/keyboard.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/keyboard.c Wed May 26 17:43:22 1993 +0000 +++ b/src/keyboard.c Wed May 26 17:50:23 1993 +0000 @@ -4631,7 +4631,7 @@ 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); }