comparison lisp/avoid.el @ 100171:d42aff5ca541

* 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.
author Lute Kamstra <lute@gnu.org>
date Wed, 03 Dec 2008 05:48:14 +0000
parents ee5932bf781d
children a9dc0e7c3f2b
comparison
equal deleted inserted replaced
100170:86455974b971 100171:d42aff5ca541
92 :require 'avoid 92 :require 'avoid
93 :version "20.3") 93 :version "20.3")
94 94
95 95
96 (defcustom mouse-avoidance-nudge-dist 15 96 (defcustom mouse-avoidance-nudge-dist 15
97 "*Average distance that mouse will be moved when approached by cursor. 97 "Average distance that mouse will be moved when approached by cursor.
98 Only applies in Mouse-Avoidance mode `jump' and its derivatives. 98 Only applies in Mouse-Avoidance mode `jump' and its derivatives.
99 For best results make this larger than `mouse-avoidance-threshold'." 99 For best results make this larger than `mouse-avoidance-threshold'."
100 :type 'integer 100 :type 'integer
101 :group 'avoid) 101 :group 'avoid)
102 102
103 (defcustom mouse-avoidance-nudge-var 10 103 (defcustom mouse-avoidance-nudge-var 10
104 "*Variability of `mouse-avoidance-nudge-dist' (which see)." 104 "Variability of `mouse-avoidance-nudge-dist' (which see)."
105 :type 'integer 105 :type 'integer
106 :group 'avoid) 106 :group 'avoid)
107 107
108 (defcustom mouse-avoidance-animation-delay .01 108 (defcustom mouse-avoidance-animation-delay .01
109 "Delay between animation steps, in seconds." 109 "Delay between animation steps, in seconds."
110 :type 'number 110 :type 'number
111 :group 'avoid) 111 :group 'avoid)
112 112
113 (defcustom mouse-avoidance-threshold 5 113 (defcustom mouse-avoidance-threshold 5
114 "*Mouse-pointer's flight distance. 114 "Mouse-pointer's flight distance.
115 If the cursor gets closer than this, the mouse pointer will move away. 115 If the cursor gets closer than this, the mouse pointer will move away.
116 Only applies in mouse-avoidance-modes `animate' and `jump'." 116 Only applies in mouse-avoidance-modes `animate' and `jump'."
117 :type 'integer 117 :type 'integer
118 :group 'avoid) 118 :group 'avoid)
119 119