1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-29 00:31:01 -08:00

Fix the fix.

This commit is contained in:
Jim Blandy 1993-05-25 09:26:44 +00:00
parent f126bd6787
commit 7b50ece767

View file

@ -4578,7 +4578,7 @@ The elements of this list correspond to the arguments of\n\
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;
XFASTINT (val[3], quit_char);
XFASTINT (val[3]) = quit_char;
return Flist (val, sizeof (val) / sizeof (val[0]));
}