aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJim Blandy1993-05-25 09:26:44 +0000
committerJim Blandy1993-05-25 09:26:44 +0000
commit7b50ece767b17af3cdc4dcc053328bdefd2ed5aa (patch)
tree57751a6f87188778f69f9179a7cf96ebe576f36c /src
parentf126bd6787ff4e6ce17550566f5ba3e6769df9bc (diff)
downloademacs-7b50ece767b17af3cdc4dcc053328bdefd2ed5aa.tar.gz
emacs-7b50ece767b17af3cdc4dcc053328bdefd2ed5aa.zip
Fix the fix.
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 e9a9cd30d6b..894ecbda056 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 XFASTINT (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}