diff options
author | Lute Kamstra <lute@gnu.org> | 2008-12-03 05:48:14 +0000 |
---|---|---|
committer | Lute Kamstra <lute@gnu.org> | 2008-12-03 05:48:14 +0000 |
commit | 9201cc281b10650e96296eda8519403e2b508fbd (patch) | |
tree | e86a6ba2b3d0044d996036ccf8430908dca34b26 /lisp/compare-w.el | |
parent | 1b17adfd3b07d24b4665ff66fd1b1dcc05f6c823 (diff) | |
download | emacs-9201cc281b10650e96296eda8519403e2b508fbd.tar.gz |
* 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.
Diffstat (limited to 'lisp/compare-w.el')
-rw-r--r-- | lisp/compare-w.el | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lisp/compare-w.el b/lisp/compare-w.el index d45a9acf41e..7d709c736ae 100644 --- a/lisp/compare-w.el +++ b/lisp/compare-w.el @@ -36,7 +36,7 @@ :group 'tools) (defcustom compare-windows-whitespace "\\(\\s-\\|\n\\)+" - "*Regexp or function that defines whitespace sequences for `compare-windows'. + "Regexp or function that defines whitespace sequences for `compare-windows'. That command optionally ignores changes in whitespace. The value of `compare-windows-whitespace' is normally a regexp, but it @@ -53,18 +53,18 @@ whitespace is considered to match, and is skipped." :group 'compare-windows) (defcustom compare-ignore-whitespace nil - "*Non-nil means `compare-windows' ignores whitespace." + "Non-nil means `compare-windows' ignores whitespace." :type 'boolean :group 'compare-windows :version "22.1") (defcustom compare-ignore-case nil - "*Non-nil means `compare-windows' ignores case differences." + "Non-nil means `compare-windows' ignores case differences." :type 'boolean :group 'compare-windows) (defcustom compare-windows-sync 'compare-windows-sync-default-function - "*Function or regexp that is used to synchronize points in two + "Function or regexp that is used to synchronize points in two windows if before calling `compare-windows' points are located on mismatched positions. @@ -93,7 +93,7 @@ to beep or flash the screen when points are mismatched." :version "22.1") (defcustom compare-windows-sync-string-size 32 - "*Size of string from one window that is searched in second window. + "Size of string from one window that is searched in second window. Small number makes difference regions more fine-grained, but it may fail by finding the wrong match. The bigger number makes @@ -105,7 +105,7 @@ The default value 32 is good for the most cases." :version "22.1") (defcustom compare-windows-recenter nil - "*List of two values, each of which is used as argument of + "List of two values, each of which is used as argument of function `recenter' called in each of two windows to place matching points side-by-side. @@ -116,7 +116,7 @@ and the value `((4) (4))' for horizontally split windows." :version "22.1") (defcustom compare-windows-highlight t - "*Non-nil means compare-windows highlights the differences. + "Non-nil means compare-windows highlights the differences. The value t removes highlighting immediately after invoking a command other than `compare-windows'. The value `persistent' leaves all highlighted differences. You can clear |