mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-20 20:07:36 +00:00
(syms_of_keyboard) <double-click-fuzz>: Doc fix.
This commit is contained in:
parent
25c58854c7
commit
1ca6a9c4cc
2 changed files with 28 additions and 1 deletions
|
|
@ -1,3 +1,27 @@
|
|||
2001-12-15 Richard M. Stallman <rms@gnu.org>
|
||||
|
||||
* isearch.el (isearch-edit-string):
|
||||
Treat isearch-yank-word-or-char specially, like isearch-yank-word.
|
||||
|
||||
* emacs-lisp/debug.el (debugger-previous-backtrace): New variable.
|
||||
(debugger-make-xrefs): Optimize by (1) using skip-syntax-forward
|
||||
rather than regexp search and (2) copying text properties
|
||||
already set up on text unchanged from the previous backtrace.
|
||||
|
||||
* case-table.el (set-case-syntax-pair):
|
||||
Detect invalid calls and signal an error.
|
||||
|
||||
2001-12-15 Richard M. Stallman <rms@gnu.org>
|
||||
|
||||
* language/ind-util.el (range): Function deleted.
|
||||
(indian-regexp-of-hashtbl-keys): Renamed from `regexp-of-hashtbl-keys'.
|
||||
All calls changed.
|
||||
|
||||
* language/devan-util.el (devanagari-range): Renamed from `range'.
|
||||
All calls changed.
|
||||
(devanagari-regexp-of-hashtbl-keys):
|
||||
Renamed from `regexp-of-hashtbl-keys'. All calls changed.
|
||||
|
||||
2001-12-15 Dave Love <fx@gnu.org>
|
||||
|
||||
* language/ind-util.el: Don't require cl.
|
||||
|
|
|
|||
|
|
@ -10614,7 +10614,10 @@ by position only. */);
|
|||
On window-system frames, value is the number of pixels the mouse may have
|
||||
moved horizontally or vertically between two clicks to make a double-click.
|
||||
On non window-system frames, value is interpreted in units of 1/8 characters
|
||||
instead of pixels. */);
|
||||
instead of pixels.
|
||||
|
||||
This variable is also the threshold for motion of the mouse
|
||||
to count as a drag. */);
|
||||
double_click_fuzz = 3;
|
||||
|
||||
DEFVAR_BOOL ("inhibit-local-menu-bar-menus", &inhibit_local_menu_bar_menus,
|
||||
|
|
|
|||
Loading…
Reference in a new issue