aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2001-12-16 03:53:05 +0000
committerRichard M. Stallman2001-12-16 03:53:05 +0000
commit1ca6a9c4cc8bd8ea27d6cd4e43f3de611ac213c8 (patch)
treec366a17fad5e6c30b59e491dc895eb55a86dd628
parent25c58854c78d2c5e3e0b1a2dc7cb53cc177c3b9d (diff)
downloademacs-1ca6a9c4cc8bd8ea27d6cd4e43f3de611ac213c8.tar.gz
emacs-1ca6a9c4cc8bd8ea27d6cd4e43f3de611ac213c8.zip
(syms_of_keyboard) <double-click-fuzz>: Doc fix.
-rw-r--r--lisp/ChangeLog24
-rw-r--r--src/keyboard.c5
2 files changed, 28 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 73846ce126d..a612513c768 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,27 @@
12001-12-15 Richard M. Stallman <rms@gnu.org>
2
3 * isearch.el (isearch-edit-string):
4 Treat isearch-yank-word-or-char specially, like isearch-yank-word.
5
6 * emacs-lisp/debug.el (debugger-previous-backtrace): New variable.
7 (debugger-make-xrefs): Optimize by (1) using skip-syntax-forward
8 rather than regexp search and (2) copying text properties
9 already set up on text unchanged from the previous backtrace.
10
11 * case-table.el (set-case-syntax-pair):
12 Detect invalid calls and signal an error.
13
142001-12-15 Richard M. Stallman <rms@gnu.org>
15
16 * language/ind-util.el (range): Function deleted.
17 (indian-regexp-of-hashtbl-keys): Renamed from `regexp-of-hashtbl-keys'.
18 All calls changed.
19
20 * language/devan-util.el (devanagari-range): Renamed from `range'.
21 All calls changed.
22 (devanagari-regexp-of-hashtbl-keys):
23 Renamed from `regexp-of-hashtbl-keys'. All calls changed.
24
12001-12-15 Dave Love <fx@gnu.org> 252001-12-15 Dave Love <fx@gnu.org>
2 26
3 * language/ind-util.el: Don't require cl. 27 * language/ind-util.el: Don't require cl.
diff --git a/src/keyboard.c b/src/keyboard.c
index b80acb13902..55ce28c9c8d 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -10614,7 +10614,10 @@ by position only. */);
10614On window-system frames, value is the number of pixels the mouse may have 10614On window-system frames, value is the number of pixels the mouse may have
10615moved horizontally or vertically between two clicks to make a double-click. 10615moved horizontally or vertically between two clicks to make a double-click.
10616On non window-system frames, value is interpreted in units of 1/8 characters 10616On non window-system frames, value is interpreted in units of 1/8 characters
10617instead of pixels. */); 10617instead of pixels.
10618
10619This variable is also the threshold for motion of the mouse
10620to count as a drag. */);
10618 double_click_fuzz = 3; 10621 double_click_fuzz = 3;
10619 10622
10620 DEFVAR_BOOL ("inhibit-local-menu-bar-menus", &inhibit_local_menu_bar_menus, 10623 DEFVAR_BOOL ("inhibit-local-menu-bar-menus", &inhibit_local_menu_bar_menus,