aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJim Blandy1993-05-25 04:53:07 +0000
committerJim Blandy1993-05-25 04:53:07 +0000
commit3fa657a268e7934194f5960f248a5108074fd1e2 (patch)
treebdc5c44c0daa97db8e76a0b30117c736cc23b65e /src
parentdf4da582bac98c64cf9b66ebb6b8d177e0ca027e (diff)
downloademacs-3fa657a268e7934194f5960f248a5108074fd1e2.tar.gz
emacs-3fa657a268e7934194f5960f248a5108074fd1e2.zip
* keyboard.c (Fcurrent_input_mode): Use XFASTINT to build the last
element of the return value, not XSETINT.
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 6b267bd8e08..e9a9cd30d6b 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -4578,7 +4578,7 @@ The elements of this list correspond to the arguments of\n\
4578 val[0] = interrupt_input ? Qt : Qnil; 4578 val[0] = interrupt_input ? Qt : Qnil;
4579 val[1] = flow_control ? Qt : Qnil; 4579 val[1] = flow_control ? Qt : Qnil;
4580 val[2] = meta_key == 2 ? make_number (0) : meta_key == 1 ? Qt : Qnil; 4580 val[2] = meta_key == 2 ? make_number (0) : meta_key == 1 ? Qt : Qnil;
4581 XSETINT (val[3], quit_char); 4581 XFASTINT (val[3], quit_char);
4582 4582
4583 return Flist (val, sizeof (val) / sizeof (val[0])); 4583 return Flist (val, sizeof (val) / sizeof (val[0]));
4584} 4584}