]> git.eshelyaron.com Git - emacs.git/commitdiff
(highlight-changes-initial-state, highlight-changes-global-initial-state):
authorJuanma Barranquero <lekktu@gmail.com>
Wed, 1 Feb 2006 11:25:52 +0000 (11:25 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Wed, 1 Feb 2006 11:25:52 +0000 (11:25 +0000)
Doc fixes.
(highlight-changes-global-modes, global-highlight-changes):
Fix typos in docstrings.

lisp/ChangeLog
lisp/hilit-chg.el

index 69b312e21ba7235d4f752b64a0dc20c739790385..0d51f0f1d67e92f91fd70a17d5c1c6bfb98213e0 100644 (file)
@@ -1,3 +1,10 @@
+2006-02-01  Juanma Barranquero  <lekktu@gmail.com>
+
+       * hilit-chg.el (highlight-changes-initial-state)
+       (highlight-changes-global-initial-state): Doc fixes.
+       (highlight-changes-global-modes, global-highlight-changes):
+       Fix typos in docstrings.
+
 2006-02-01  Kim F. Storm  <storm@cua.dk>
 
        * emulation/cua-base.el (cua-mode): Mention that CUA enables
index 7011ff37dd30be8fe58095a944aba3c4503b3d42..55eafb5c617a57a74b3504f33c4999270a3a8e99 100644 (file)
@@ -261,15 +261,15 @@ colors then use this, if you want fancier faces then set
 ;; active or passive mode?
 ;;
 (defcustom highlight-changes-initial-state 'active
-  "*What state (active or passive) `highlight-changes' should start in.
-This is used when `highlight-changes' is called with no argument.
+  "*What state (active or passive) Highlight Changes mode should start in.
+This is used when `highlight-changes-mode' is called with no argument.
 This variable must be set to one of the symbols `active' or `passive'."
   :type '(choice (const :tag "Active" active)
                 (const :tag "Passive" passive))
   :group 'highlight-changes)
 
 (defcustom highlight-changes-global-initial-state 'passive
-  "*What state `global-highlight-changes' should start in.
+  "*What state global Highlight Changes mode should start in.
 This is used if `global-highlight-changes' is called with no argument.
 This variable must be set to either `active' or `passive'."
   :type '(choice (const :tag "Active" active)
@@ -309,7 +309,7 @@ its name does not begin with ` ' or `*'.
 A value of nil means no buffers are suitable for `global-highlight-changes'
 \(effectively disabling the mode).
 
-Examples:
+Example:
         (c-mode c++-mode)
 means that Highlight Changes mode is turned on for buffers in C and C++
 modes only."
@@ -366,7 +366,7 @@ remove it from existing buffers."
                  (copy-face 'highlight-changes new-name)
                (copy-face old-name new-name)
                ))
-           (setq new-list (append  (list new-name) new-list))
+           (setq new-list (append (list new-name) new-list))
            (setq n (1- n))
            (setq p (cdr p)))
          (if (equal new-list (widget-value w))
@@ -419,7 +419,7 @@ Otherwise, this list will be constructed when needed from
 
 ;;; Functions...
 
-(defun hilit-chg-map-changes  (func &optional start-position end-position)
+(defun hilit-chg-map-changes (func &optional start-position end-position)
   "Call function FUNC for each region used by Highlight Changes mode."
   ;; if start-position is nil, (point-min) is used
   ;; if end-position is nil, (point-max) is used
@@ -1048,7 +1048,7 @@ changes are made, so \\[highlight-changes-next-change] and
 When called interactively:
 - if no prefix, toggle global Highlight Changes mode on or off
 - if called with a positive prefix (or just C-u) turn it on in active mode
-- if called with a zero prefix  turn it on in passive mode
+- if called with a zero prefix turn it on in passive mode
 - if called with a negative prefix turn it off
 
 When called from a program: