From aab06933fa5982424b8831c6e1e6bf7f2cc9611c Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Mon, 5 Jul 1993 07:45:43 +0000 Subject: [PATCH] Fix initialization of Vdouble_click_time in syms_of_keyboard. --- src/keyboard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/keyboard.c b/src/keyboard.c index 27d95dc2f31..316811d49ba 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -5092,7 +5092,7 @@ Polling is automatically disabled in all other cases."); Measured in milliseconds. nil means disable double-click recognition;\n\ t means double-clicks have no time limit and are detected\n\ by position only."); - double_click_time = 500; + Vdouble_click_time = make_number (500); DEFVAR_INT ("num-input-keys", &num_input_keys, "*Number of complete keys read from the keyboard so far."); -- 2.39.5