From: Jim Blandy Date: Mon, 5 Jul 1993 07:45:43 +0000 (+0000) Subject: Fix initialization of Vdouble_click_time in syms_of_keyboard. X-Git-Tag: emacs-19.34~11857 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=aab06933fa5982424b8831c6e1e6bf7f2cc9611c;p=emacs.git Fix initialization of Vdouble_click_time in syms_of_keyboard. --- 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.");