comparison lisp/ediff-merg.el @ 74585:402a04b0362f

(ediff-combination-pattern): Fix typo in docstring. (ediff-show-clashes-only): Doc fix.
author Juanma Barranquero <lekktu@gmail.com>
date Mon, 11 Dec 2006 01:28:02 +0000
parents 6169b51037af
children e3694f1cb928 6588c6259dfb
comparison
equal deleted inserted replaced
74584:3043e9ec901c 74585:402a04b0362f
60 60
61 (defcustom ediff-combination-pattern 61 (defcustom ediff-combination-pattern
62 '("<<<<<<< variant A" A ">>>>>>> variant B" B "####### Ancestor" Ancestor "======= end") 62 '("<<<<<<< variant A" A ">>>>>>> variant B" B "####### Ancestor" Ancestor "======= end")
63 "*Pattern to be used for combining difference regions in buffers A and B. 63 "*Pattern to be used for combining difference regions in buffers A and B.
64 The value must be a list of the form 64 The value must be a list of the form
65 (STRING1 bufspec1 STRING2 bufspec2 STRING3 bufspec3 STRING4) 65 \(STRING1 bufspec1 STRING2 bufspec2 STRING3 bufspec3 STRING4)
66 where bufspec is the symbol A, B, or Ancestor. For instance, if the value is 66 where bufspec is the symbol A, B, or Ancestor. For instance, if the value is
67 '(STRING1 A STRING2 Ancestor STRING3 B STRING4) then the 67 '(STRING1 A STRING2 Ancestor STRING3 B STRING4) then the
68 combined text will look like this: 68 combined text will look like this:
69 69
70 STRING1 70 STRING1
80 :group 'ediff-merge) 80 :group 'ediff-merge)
81 81
82 (defcustom ediff-show-clashes-only nil 82 (defcustom ediff-show-clashes-only nil
83 "*If t, show only those diff regions where both buffers disagree with the ancestor. 83 "*If t, show only those diff regions where both buffers disagree with the ancestor.
84 This means that regions that have status prefer-A or prefer-B will be 84 This means that regions that have status prefer-A or prefer-B will be
85 skipped over. nil means show all regions." 85 skipped over. A value of nil means show all regions."
86 :type 'boolean 86 :type 'boolean
87 :group 'ediff-merge 87 :group 'ediff-merge
88 ) 88 )
89 (make-variable-buffer-local 'ediff-show-clashes-only) 89 (make-variable-buffer-local 'ediff-show-clashes-only)
90 90