emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/emacs-23 r100525: lisp/avoid.el: Fix typos


From: Juanma Barranquero
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-23 r100525: lisp/avoid.el: Fix typos in docstrings.
Date: Sat, 12 Mar 2011 20:44:42 +0100
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 100525
committer: Juanma Barranquero <address@hidden>
branch nick: emacs-23
timestamp: Sat 2011-03-12 20:44:42 +0100
message:
  lisp/avoid.el: Fix typos in docstrings.
modified:
  lisp/ChangeLog
  lisp/avoid.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2011-03-12 13:26:19 +0000
+++ b/lisp/ChangeLog    2011-03-12 19:44:42 +0000
@@ -1,3 +1,9 @@
+2011-03-12  Juanma Barranquero  <address@hidden>
+
+       * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
+       (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
+       (mouse-avoidance-mode): Fix typos in docstrings.
+
 2011-03-12  Michael Albinus  <address@hidden>
 
        * net/tramp.el (tramp-progress-reporter-update): Use

=== modified file 'lisp/avoid.el'
--- a/lisp/avoid.el     2011-01-02 23:50:46 +0000
+++ b/lisp/avoid.el     2011-03-12 19:44:42 +0000
@@ -77,7 +77,7 @@
 
 ;;;###autoload
 (defcustom mouse-avoidance-mode nil
-  "Activate mouse avoidance mode.
+  "Activate Mouse Avoidance mode.
 See function `mouse-avoidance-mode' for possible values.
 Setting this variable directly does not take effect;
 use either \\[customize] or the function `mouse-avoidance-mode'."
@@ -86,8 +86,7 @@
         (mouse-avoidance-mode (or value 'none)))
   :initialize 'custom-initialize-default
   :type '(choice (const :tag "none" nil) (const banish) (const jump)
-                (const animate) (const exile) (const proteus)
-                )
+                (const animate) (const exile) (const proteus))
   :group 'avoid
   :require 'avoid
   :version "20.3")
@@ -95,7 +94,7 @@
 
 (defcustom mouse-avoidance-nudge-dist 15
   "Average distance that mouse will be moved when approached by cursor.
-Only applies in Mouse-Avoidance mode `jump' and its derivatives.
+Only applies in Mouse Avoidance mode `jump' and its derivatives.
 For best results make this larger than `mouse-avoidance-threshold'."
   :type 'integer
   :group 'avoid)
@@ -113,7 +112,7 @@
 (defcustom mouse-avoidance-threshold 5
   "Mouse-pointer's flight distance.
 If the cursor gets closer than this, the mouse pointer will move away.
-Only applies in mouse-avoidance-modes `animate' and `jump'."
+Only applies in Mouse Avoidance modes `animate' and `jump'."
   :type 'integer
   :group 'avoid)
 
@@ -184,7 +183,7 @@
                mouse-avoidance-threshold))))))
 
 (defun mouse-avoidance-banish-destination ()
-  "The position to which Mouse-Avoidance mode `banish' moves the mouse.
+  "The position to which Mouse Avoidance mode `banish' moves the mouse.
 You can redefine this if you want the mouse banished to a different corner."
   (let* ((pos (window-edges)))
     (cons (- (nth 2 pos) 2)
@@ -332,7 +331,7 @@
 
 ;;;###autoload
 (defun mouse-avoidance-mode (&optional mode)
-  "Set cursor avoidance mode to MODE.
+  "Set Mouse Avoidance mode to MODE.
 MODE should be one of the symbols `banish', `exile', `jump', `animate',
 `cat-and-mouse', `proteus', or `none'.
 
@@ -352,7 +351,7 @@
 
 Whenever the mouse is moved, the frame is also raised.
 
-\(see `mouse-avoidance-threshold' for definition of \"too close\",
+\(See `mouse-avoidance-threshold' for definition of \"too close\",
 and `mouse-avoidance-nudge-dist' and `mouse-avoidance-nudge-var' for
 definition of \"random distance\".)"
   (interactive


reply via email to

[Prev in Thread] Current Thread [Next in Thread]