aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJuanma Barranquero2006-12-19 16:09:02 +0000
committerJuanma Barranquero2006-12-19 16:09:02 +0000
commit05e0ac998a2bcf17be74e6966e3e9d3822ba2a3a (patch)
treee1a9ec8da607adc404507d611c7daf1adb7843f5 /src
parent36ff6d6ffba8b1d290046912f17a068d92803acd (diff)
downloademacs-05e0ac998a2bcf17be74e6966e3e9d3822ba2a3a.tar.gz
emacs-05e0ac998a2bcf17be74e6966e3e9d3822ba2a3a.zip
(syms_of_keyboard) <double-click-time>: Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/keyboard.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index 6e99af67cd9..a440271a2d3 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -11462,8 +11462,8 @@ Polling is automatically disabled in all other cases. */);
11462 11462
11463 DEFVAR_LISP ("double-click-time", &Vdouble_click_time, 11463 DEFVAR_LISP ("double-click-time", &Vdouble_click_time,
11464 doc: /* *Maximum time between mouse clicks to make a double-click. 11464 doc: /* *Maximum time between mouse clicks to make a double-click.
11465Measured in milliseconds. nil means disable double-click recognition; 11465Measured in milliseconds. The value nil means disable double-click
11466t means double-clicks have no time limit and are detected 11466recognition; t means double-clicks have no time limit and are detected
11467by position only. */); 11467by position only. */);
11468 Vdouble_click_time = make_number (500); 11468 Vdouble_click_time = make_number (500);
11469 11469