comparison src/keyboard.c @ 3994:df443e5f391e

Fix initialization of Vdouble_click_time in syms_of_keyboard.
author Jim Blandy <jimb@redhat.com>
date Mon, 05 Jul 1993 07:45:43 +0000
parents 992a1abeb6cd
children adf973a863dd
comparison
equal deleted inserted replaced
3993:992a1abeb6cd 3994:df443e5f391e
5090 DEFVAR_LISP ("double-click-time", &Vdouble_click_time, 5090 DEFVAR_LISP ("double-click-time", &Vdouble_click_time,
5091 "*Maximum time between mouse clicks to make a double-click.\n\ 5091 "*Maximum time between mouse clicks to make a double-click.\n\
5092 Measured in milliseconds. nil means disable double-click recognition;\n\ 5092 Measured in milliseconds. nil means disable double-click recognition;\n\
5093 t means double-clicks have no time limit and are detected\n\ 5093 t means double-clicks have no time limit and are detected\n\
5094 by position only."); 5094 by position only.");
5095 double_click_time = 500; 5095 Vdouble_click_time = make_number (500);
5096 5096
5097 DEFVAR_INT ("num-input-keys", &num_input_keys, 5097 DEFVAR_INT ("num-input-keys", &num_input_keys,
5098 "*Number of complete keys read from the keyboard so far."); 5098 "*Number of complete keys read from the keyboard so far.");
5099 num_input_keys = 0; 5099 num_input_keys = 0;
5100 5100