# HG changeset patch # User Juri Linkov # Date 1121771953 0 # Node ID 3fee42bf372b9132ef7d462cfb837772ba581cfd # Parent 8764731ab2141bcb4171f9185a82fa20cdd14e29 (compare-ignore-whitespace, compare-windows-sync) (compare-windows-sync-string-size, compare-windows-recenter) (compare-windows-highlight, compare-windows): Add version 22.1. (compare-windows) : Inherit from lazy-highlight instead of duplicating its default value. diff -r 8764731ab214 -r 3fee42bf372b lisp/compare-w.el --- a/lisp/compare-w.el Tue Jul 19 09:54:05 2005 +0000 +++ b/lisp/compare-w.el Tue Jul 19 11:19:13 2005 +0000 @@ -56,7 +56,8 @@ (defcustom compare-ignore-whitespace nil "*Non-nil means `compare-windows' ignores whitespace." :type 'boolean - :group 'compare-w) + :group 'compare-w + :version "22.1") (defcustom compare-ignore-case nil "*Non-nil means `compare-windows' ignores case differences." @@ -88,7 +89,8 @@ 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) + :group 'compare-w + :version "22.1") (defcustom compare-windows-sync-string-size 32 "*Size of string from one window that is searched in second window. @@ -99,7 +101,8 @@ The default value 32 is good for the most cases." :type 'integer - :group 'compare-w) + :group 'compare-w + :version "22.1") (defcustom compare-windows-recenter nil "*List of two values, each of which is used as argument of @@ -109,23 +112,20 @@ 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-w + :version "22.1") (defcustom compare-windows-highlight t "*Non-nil means compare-windows highlights the differences." :type 'boolean - :group 'compare-w) + :group 'compare-w + :version "22.1") (defface compare-windows - '((((class color) (min-colors 88) (background light)) - (:background "paleturquoise")) - (((class color) (min-colors 88) (background dark)) - (:background "paleturquoise4")) - (((class color)) - (:background "turquoise3")) - (t (:underline t))) + '((t :inherit lazy-highlight)) "Face for highlighting of compare-windows difference regions." - :group 'compare-w) + :group 'compare-w + :version "22.1") ;; backward-compatibility alias (put 'compare-windows-face 'face-alias 'compare-windows)