Mercurial > emacs
diff 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 |
line wrap: on
line diff
--- a/src/keyboard.c Mon Jul 05 07:18:24 1993 +0000 +++ b/src/keyboard.c Mon Jul 05 07:45:43 1993 +0000 @@ -5092,7 +5092,7 @@ 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.");
