Mercurial > emacs
changeset 3058:c2dd834bf827
* keyboard.c (Fcurrent_input_mode): Use XFASTINT to build the last
element of the return value, not XSETINT.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Tue, 25 May 1993 04:53:07 +0000 |
parents | b155c80dc2c2 |
children | 2d8952db38ee |
files | src/keyboard.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/keyboard.c Tue May 25 04:39:28 1993 +0000 +++ b/src/keyboard.c Tue May 25 04:53:07 1993 +0000 @@ -4578,7 +4578,7 @@ val[0] = interrupt_input ? Qt : Qnil; val[1] = flow_control ? Qt : Qnil; val[2] = meta_key == 2 ? make_number (0) : meta_key == 1 ? Qt : Qnil; - XSETINT (val[3], quit_char); + XFASTINT (val[3], quit_char); return Flist (val, sizeof (val) / sizeof (val[0])); }