diff options
| author | Jim Blandy | 1993-07-05 07:45:43 +0000 |
|---|---|---|
| committer | Jim Blandy | 1993-07-05 07:45:43 +0000 |
| commit | aab06933fa5982424b8831c6e1e6bf7f2cc9611c (patch) | |
| tree | b32f1d932ba9ad347d57e866db8b8ccc9a84dda2 /src | |
| parent | 564dc952e907b60abecbfd1906156c640625b9f9 (diff) | |
| download | emacs-aab06933fa5982424b8831c6e1e6bf7f2cc9611c.tar.gz emacs-aab06933fa5982424b8831c6e1e6bf7f2cc9611c.zip | |
Fix initialization of Vdouble_click_time in syms_of_keyboard.
Diffstat (limited to 'src')
| -rw-r--r-- | src/keyboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
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."); | |||
| 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."); |