diff options
author | Lute Kamstra <lute@gnu.org> | 2008-12-03 05:48:14 +0000 |
---|---|---|
committer | Lute Kamstra <lute@gnu.org> | 2008-12-03 05:48:14 +0000 |
commit | 9201cc281b10650e96296eda8519403e2b508fbd (patch) | |
tree | e86a6ba2b3d0044d996036ccf8430908dca34b26 /lisp/mouse.el | |
parent | 1b17adfd3b07d24b4665ff66fd1b1dcc05f6c823 (diff) | |
download | emacs-9201cc281b10650e96296eda8519403e2b508fbd.tar.gz |
* align.el:
* allout.el:
* apropos.el:
* arc-mode.el:
* autoinsert.el:
* avoid.el:
* battery.el:
* bookmark.el:
* buff-menu.el:
* calculator.el:
* chistory.el:
* cmuscheme.el:
* comint.el:
* compare-w.el:
* dabbrev.el:
* delim-col.el:
* desktop.el:
* diff-mode.el:
* diff.el:
* dired-aux.el:
* dired-x.el:
* dired.el:
* dos-vars.el:
* ediff-diff.el:
* ediff-help.el:
* ediff-init.el:
* ediff-merg.el:
* ediff-mult.el:
* ediff-ptch.el:
* ediff-vers.el:
* ediff-wind.el:
* ediff.el:
* emerge.el:
* facemenu.el:
* faces.el:
* ffap.el:
* filecache.el:
* find-dired.el:
* font-core.el:
* font-lock.el:
* forms.el:
* fringe.el:
* help-at-pt.el:
* hippie-exp.el:
* ido.el:
* image-file.el:
* imenu.el:
* indent.el:
* info.el:
* isearchb.el:
* iswitchb.el:
* jit-lock.el:
* jka-compr.el:
* log-edit.el:
* lpr.el:
* ls-lisp.el:
* man.el:
* menu-bar.el:
* midnight.el:
* mouse-sel.el:
* mouse.el:
* msb.el:
* outline.el:
* paren.el:
* pcmpl-cvs.el:
* pcmpl-gnu.el:
* pcomplete.el:
* pcvs-info.el:
* pcvs-parse.el:
* printing.el:
* ps-mule.el:
* ps-print.el:
* replace.el:
* ruler-mode.el:
* saveplace.el:
* sb-image.el:
* scroll-bar.el:
* sha1.el:
* shadowfile.el:
* shell.el:
* sort.el:
* speedbar.el:
* strokes.el:
* tempo.el:
* term.el:
* terminal.el:
* time-stamp.el:
* time.el:
* tree-widget.el:
* type-break.el:
* vc-cvs.el:
* vc-hg.el:
* vc-mcvs.el:
* vc-rcs.el:
* vc-sccs.el:
* vc.el:
* view.el:
* w32-vars.el:
* whitespace.el:
* wid-edit.el: Remove leading * from docstrings of defcustoms,
deffaces, defconsts and defuns.
Diffstat (limited to 'lisp/mouse.el')
-rw-r--r-- | lisp/mouse.el | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lisp/mouse.el b/lisp/mouse.el index 37879bc1e1f..28fde430b15 100644 --- a/lisp/mouse.el +++ b/lisp/mouse.el @@ -37,12 +37,12 @@ (put 'track-mouse 'lisp-indent-function 0) (defcustom mouse-yank-at-point nil - "*If non-nil, mouse yank commands yank at point instead of at click." + "If non-nil, mouse yank commands yank at point instead of at click." :type 'boolean :group 'mouse) (defcustom mouse-drag-copy-region t - "*If non-nil, mouse drag copies region to kill-ring." + "If non-nil, mouse drag copies region to kill-ring." :type 'boolean :version "22.1" :group 'mouse) @@ -81,7 +81,7 @@ packages. See `mouse-on-link-p' for details." :group 'mouse) (defcustom mouse-1-click-in-non-selected-windows t - "*If non-nil, a Mouse-1 click also follows links in non-selected windows. + "If non-nil, a Mouse-1 click also follows links in non-selected windows. If nil, a Mouse-1 click on a link in a non-selected window performs the normal mouse-1 binding, typically selects the window and sets @@ -699,7 +699,7 @@ This should be bound to a mouse drag event." (setq mouse-last-region-tick (buffer-modified-tick))) (defcustom mouse-scroll-delay 0.25 - "*The pause between scroll steps caused by mouse drags, in seconds. + "The pause between scroll steps caused by mouse drags, in seconds. If you drag the mouse beyond the edge of a window, Emacs scrolls the window to bring the text beyond that edge into view, with a delay of this many seconds between scroll steps. Scrolling stops when you move @@ -710,7 +710,7 @@ Setting this to zero causes Emacs to scroll as fast as it can." :group 'mouse) (defcustom mouse-scroll-min-lines 1 - "*The minimum number of lines scrolled by dragging mouse out of window. + "The minimum number of lines scrolled by dragging mouse out of window. Moving the mouse out the top or bottom edge of the window begins scrolling repeatedly. The number of lines scrolled per repetition is normally equal to the number of lines beyond the window edge that @@ -1799,14 +1799,14 @@ again. If you do this twice in the same position, it kills the selection." (overlay-end mouse-secondary-overlay))))))) (defcustom mouse-buffer-menu-maxlen 20 - "*Number of buffers in one pane (submenu) of the buffer menu. + "Number of buffers in one pane (submenu) of the buffer menu. If we have lots of buffers, divide them into groups of `mouse-buffer-menu-maxlen' and make a pane (or submenu) for each one." :type 'integer :group 'mouse) (defcustom mouse-buffer-menu-mode-mult 4 - "*Group the buffers by the major mode groups on \\[mouse-buffer-menu]? + "Group the buffers by the major mode groups on \\[mouse-buffer-menu]? This number which determines (in a hairy way) whether \\[mouse-buffer-menu] will split the buffer menu by the major modes (see `mouse-buffer-menu-mode-groups') or just by menu length. |