# HG changeset patch # User Juri Linkov # Date 1174814932 0 # Node ID 7d51f6ae5d8ac64eeea987c05c6bac216d3d86f7 # Parent 217f3f19f471ec5ac9d1833dce49261081561645 (compare-windows): Rename customization group `compare-w' to `compare-windows'. (compare-windows-whitespace, compare-ignore-whitespace) (compare-ignore-case, compare-windows-sync) (compare-windows-sync-string-size, compare-windows-recenter) (compare-windows-highlight, compare-windows): Change group name in the `group' tag from `compare-w' to `compare-windows'. (compare-windows-sync): Add option `nil' for no sync. Doc fix. diff -r 217f3f19f471 -r 7d51f6ae5d8a lisp/compare-w.el --- a/lisp/compare-w.el Sun Mar 25 03:03:40 2007 +0000 +++ b/lisp/compare-w.el Sun Mar 25 09:28:52 2007 +0000 @@ -32,7 +32,7 @@ ;;; Code: -(defgroup compare-w nil +(defgroup compare-windows nil "Compare text between windows." :prefix "compare-" :group 'tools) @@ -52,18 +52,18 @@ If the function returns the same value for both windows, then the whitespace is considered to match, and is skipped." :type '(choice regexp function) - :group 'compare-w) + :group 'compare-windows) (defcustom compare-ignore-whitespace nil "*Non-nil means `compare-windows' ignores whitespace." :type 'boolean - :group 'compare-w + :group 'compare-windows :version "22.1") (defcustom compare-ignore-case nil "*Non-nil means `compare-windows' ignores case differences." :type 'boolean - :group 'compare-w) + :group 'compare-windows) (defcustom compare-windows-sync 'compare-windows-sync-default-function "*Function or regexp that is used to synchronize points in two @@ -87,10 +87,11 @@ the nature of the difference units separator. The variable can be made buffer-local. -If the value of this variable is `nil', then function `ding' is -called to beep or flash the screen when points are mismatched." - :type '(choice regexp function) - :group 'compare-w +If the value of this variable is `nil' (option \"No sync\"), then +no synchronization is performed, and the function `ding' is called +to beep or flash the screen when points are mismatched." + :type '(choice function regexp (const :tag "No sync" nil)) + :group 'compare-windows :version "22.1") (defcustom compare-windows-sync-string-size 32 @@ -102,7 +103,7 @@ The default value 32 is good for the most cases." :type 'integer - :group 'compare-w + :group 'compare-windows :version "22.1") (defcustom compare-windows-recenter nil @@ -113,7 +114,7 @@ The value `(-1 0)' is useful if windows are split vertically, and the value `((4) (4))' for horizontally split windows." :type '(list sexp sexp) - :group 'compare-w + :group 'compare-windows :version "22.1") (defcustom compare-windows-highlight t @@ -125,13 +126,13 @@ :type '(choice (const :tag "No highlighting" nil) (const :tag "Persistent highlighting" persistent) (other :tag "Highlight until next command" t)) - :group 'compare-w + :group 'compare-windows :version "22.1") (defface compare-windows '((t :inherit lazy-highlight)) "Face for highlighting of compare-windows difference regions." - :group 'compare-w + :group 'compare-windows :version "22.1") (defvar compare-windows-overlay1 nil)