Update copyright notices for 2013.
[bpt/emacs.git] / doc / misc / ediff.texi
1 \input texinfo @c -*-texinfo-*-
2 @c documentation for Ediff
3 @c Written by Michael Kifer
4
5 @comment %**start of header (This is for running Texinfo on a region.)
6
7 @comment Using ediff.info instead of ediff in setfilename breaks DOS.
8 @comment @setfilename ediff
9 @comment @setfilename ediff.info
10 @setfilename ../../info/ediff
11
12 @settitle Ediff User's Manual
13 @synindex vr cp
14 @synindex fn cp
15 @synindex pg cp
16 @synindex ky cp
17
18 @iftex
19 @finalout
20 @end iftex
21 @c @smallbook
22 @comment %**end of header (This is for running Texinfo on a region.)
23
24 @copying
25 This file documents Ediff, a comprehensive visual interface to Unix diff
26 and patch utilities.
27
28 Copyright @copyright{} 1995--2013 Free Software Foundation, Inc.
29
30 @quotation
31 Permission is granted to copy, distribute and/or modify this document
32 under the terms of the GNU Free Documentation License, Version 1.3 or
33 any later version published by the Free Software Foundation; with no
34 Invariant Sections, with the Front-Cover texts being ``A GNU Manual'',
35 and with the Back-Cover Texts as in (a) below. A copy of the license
36 is included in the section entitled ``GNU Free Documentation License''.
37
38 (a) The FSF's Back-Cover Text is: ``You have the freedom to copy and
39 modify this GNU manual.''
40 @end quotation
41 @end copying
42
43 @dircategory Emacs misc features
44 @direntry
45 * Ediff: (ediff). A visual interface for comparing and merging programs.
46 @end direntry
47
48 @titlepage
49 @title Ediff User's Manual
50 @sp 4
51 @subtitle Ediff version 2.81.2
52 @sp 1
53 @subtitle November 2008
54 @sp 5
55 @author Michael Kifer
56 @page
57
58 @vskip 0pt plus 1filll
59 @insertcopying
60 @end titlepage
61
62 @contents
63
64 @node Top, Introduction, (dir), (dir)
65 @top Ediff
66
67 @insertcopying
68
69 @menu
70 * Introduction:: About Ediff.
71 * Major Entry Points:: How to use Ediff.
72 * Session Commands:: Ediff commands used within a session.
73 * Registry of Ediff Sessions:: Keeping track of multiple Ediff sessions.
74 * Session Groups:: Comparing and merging directories.
75 * Remote and Compressed Files:: You may want to know about this.
76 * Customization:: How to make Ediff work the way YOU want.
77 * Credits:: Thanks to those who helped.
78 * GNU Free Documentation License:: The license for this documentation.
79 * Index::
80 @end menu
81
82 @node Introduction, Major Entry Points, Top, Top
83 @chapter Introduction
84
85 @cindex Comparing files and buffers
86 @cindex Merging files and buffers
87 @cindex Patching files and buffers
88 @cindex Finding differences
89
90 Ediff provides a convenient way for simultaneous browsing through
91 the differences between a pair (or a triple) of files or buffers
92 (which are called @samp{variants} for our purposes). The
93 files being compared, file-A, file-B, and file-C (if applicable) are
94 shown in separate windows (side by side, one above the another, or in
95 separate frames), and the differences are highlighted as you step
96 through them. You can also copy difference regions from one buffer to
97 another (and recover old differences if you change your mind).
98
99 Another powerful feature is the ability to merge a pair of files into a
100 third buffer. Merging with an ancestor file is also supported.
101 Furthermore, Ediff is equipped with directory-level capabilities that
102 allow the user to conveniently launch browsing or merging sessions on
103 groups of files in two (or three) different directories.
104
105 In addition, Ediff can apply a patch to a file and then let you step through
106 both files, the patched and the original one, simultaneously,
107 difference-by-difference. You can even apply a patch right out of a mail
108 buffer, i.e., patches received by mail don't even have to be saved. Since
109 Ediff lets you copy differences between variants, you can, in effect, apply
110 patches selectively (i.e., you can copy a difference region from
111 @file{file.orig} to @file{file}, thereby undoing any particular patch that
112 you don't like).
113
114 Ediff even understands multi-file patches and can apply them interactively!
115 (Ediff can recognize multi-file patches only if they are in the context
116 format or GNU unified format. All other patches are treated as 1-file
117 patches. Ediff is [hopefully] using the same algorithm as @code{patch} to
118 determine which files need to be patched.)
119
120 Ediff is aware of version control, which lets you compare
121 files with their older versions. Ediff also works with remote and
122 compressed files, automatically ftp'ing them over and uncompressing them.
123 @xref{Remote and Compressed Files}, for details.
124
125 This package builds upon ideas borrowed from Emerge, and several of Ediff's
126 functions are adaptations from Emerge. Although Ediff subsumes and greatly
127 extends Emerge, much of the functionality in Ediff is influenced by Emerge.
128 The architecture and the interface are, of course, drastically different.
129
130 @node Major Entry Points, Session Commands, Introduction, Top
131 @chapter Major Entry Points
132
133 When Ediff starts up, it displays a small control window, which accepts the
134 Ediff commands, and two or three windows displaying the files to be compared
135 or merged. The control window can be in its own small frame or it can be
136 part of a bigger frame that displays other buffers. In any case, it is
137 important that the control window be active (i.e., be the one receiving the
138 keystrokes) when you use Ediff. You can switch to other Emacs buffers at
139 will and even edit the files currently being compared with Ediff and then
140 switch back to Ediff at any time by activating the appropriate Emacs windows.
141
142 Ediff can be invoked interactively using the following functions, which can
143 be run either from the minibuffer or from the menu bar. In the menu bar,
144 all Ediff's entry points belong to three submenus of the Tools menu:
145 Compare, Merge, and Apply Patch.
146
147 @table @code
148 @item ediff-files
149 @itemx ediff
150 @findex ediff-files
151 @findex ediff
152 Compare two files.
153
154 @item ediff-backup
155 @findex ediff-backup
156 Compare a file with its backup. If there are several numerical backups, use
157 the latest. If the file is itself a backup, then compare it with its
158 original.
159
160 @item ediff-current-file
161 @findex ediff-current-file
162 Compare the buffer with its file on disk. This function can be used as a
163 safe version of @code{revert-buffer}.
164
165 @item ediff-buffers
166 @findex ediff-buffers
167 Compare two buffers.
168
169 @item ediff-files3
170 @itemx ediff3
171 @findex ediff-files3
172 @findex ediff3
173 Compare three files.
174
175 @item ediff-buffers3
176 @findex ediff-buffers3
177 Compare three buffers.
178
179 @item edirs
180 @itemx ediff-directories
181 @findex edirs
182 @findex ediff-directories
183 Compare files common to two directories.
184 @item edirs3
185 @itemx ediff-directories3
186 @findex edirs3
187 @findex ediff-directories3
188 Compare files common to three directories.
189 @item edir-revisions
190 @itemx ediff-directory-revisions
191 @findex ediff-directory-revisions
192 @findex edir-revisions
193 Compare versions of files in a given directory. Ediff selects only the
194 files that are under version control.
195 @item edir-merge-revisions
196 @itemx ediff-merge-directory-revisions
197 @findex edir-merge-revisions
198 @findex ediff-merge-directory-revisions
199 Merge versions of files in a given directory. Ediff selects only the
200 files that are under version control.
201 @item edir-merge-revisions-with-ancestor
202 @itemx ediff-merge-directory-revisions-with-ancestor
203 @findex edir-merge-revisions-with-ancestor
204 @findex ediff-merge-directory-revisions-with-ancestor
205 Merge versions of files in a given directory using other versions as
206 ancestors. Ediff selects only the files that are under version control.
207
208 @item ediff-windows-wordwise
209 @findex ediff-windows-wordwise
210 Compare windows word-by-word.
211
212 @item ediff-windows-linewise
213 @findex ediff-windows-linewise
214 Compare windows line-by-line.
215
216 @item ediff-regions-wordwise
217 @findex ediff-regions-wordwise
218 Compare regions word-by-word. The regions can come from the same buffer
219 and they can even overlap. You will be asked to specify the buffers that
220 contain the regions, which you want to compare. For each buffer, you will
221 also be asked to mark the regions to be compared. Pay attention to the
222 messages that appear in the minibuffer.
223
224 @item ediff-regions-linewise
225 @findex ediff-regions-linewise
226 Similar to @code{ediff-windows-linewise}, but compares the regions
227 line-by-line. See @code{ediff-windows-linewise} for more details.
228
229 @item ediff-revision
230 @findex ediff-revision
231 Compare versions of the current buffer, if the buffer is visiting
232 a file under version control.
233
234 @item ediff-patch-file
235 @itemx epatch
236 @findex ediff-patch-file
237 @findex epatch
238
239 Patch a file or multiple files, then compare. If the patch applies to just
240 one file, Ediff will invoke a regular comparison session. If it is a
241 multi-file patch, then a session group interface will be used and the user
242 will be able to patch the files selectively. @xref{Session Groups}, for
243 more details.
244
245 Since the patch might be in a buffer or a file, you will be asked which is
246 the case. To avoid this extra prompt, you can invoke this command with a
247 prefix argument. With an odd prefix argument, Ediff assumes the patch
248 is in a file; with an even argument, a buffer is assumed.
249
250 Note that @code{ediff-patch-file} will actually use the @code{patch}
251 utility to change the original files on disk. This is not that
252 dangerous, since you will always have the original contents of the file
253 saved in another file that has the extension @file{.orig}.
254 Furthermore, if the file is under version control, then you can always back
255 out to one of the previous versions (see the section on Version Control in
256 the Emacs manual).
257
258 @code{ediff-patch-file} is careful about versions control: if the file
259 to be patched is checked in, then Ediff will offer to check it out, because
260 failing to do so may result in the loss of the changes when the file is
261 checked out the next time.
262
263 If you don't intend to modify the file via the patch and just want to see
264 what the patch is all about (and decide later), then
265 @code{ediff-patch-buffer} might be a better choice.
266
267 @item ediff-patch-buffer
268 @itemx epatch-buffer
269 @findex ediff-patch-buffer
270 @findex epatch-buffer
271 Patch a buffer, then compare. The buffer being patched and the file visited
272 by that buffer (if any) is @emph{not} modified. The result of the patch
273 appears in some other buffer that has the name ending with @emph{_patched}.
274
275 This function would refuse to apply a multifile patch to a buffer. Use
276 @code{ediff-patch-file} for that (and when you want the original file to be
277 modified by the @code{patch} utility).
278
279 Since the patch might be in a buffer or a file, you will be asked which is
280 the case. To avoid this extra prompt, you can invoke this command with a
281 prefix argument. With an odd prefix argument, Ediff assumes the patch
282 is in a file; with an even argument, a buffer is assumed.
283
284 @item ediff-merge-files
285 @itemx ediff-merge
286 @findex ediff-merge-files
287 @findex ediff-merge
288 Merge two files.
289
290 @item ediff-merge-files-with-ancestor
291 @itemx ediff-merge-with-ancestor
292 @findex ediff-merge-files-with-ancestor
293 @findex ediff-merge-with-ancestor
294 Like @code{ediff-merge}, but with a third ancestor file.
295
296 @item ediff-merge-buffers
297 @findex ediff-merge-buffers
298 Merge two buffers.
299
300 @item ediff-merge-buffers-with-ancestor
301 @findex ediff-merge-buffers-with-ancestor
302 Same but with ancestor.
303
304
305 @item edirs-merge
306 @itemx ediff-merge-directories
307 @findex edirs-merge
308 @findex ediff-merge-directories
309 Merge files common to two directories.
310 @item edirs-merge-with-ancestor
311 @itemx ediff-merge-directories-with-ancestor
312 @findex edirs-merge-with-ancestor
313 @findex ediff-merge-directories-with-ancestor
314 Same but using files in a third directory as ancestors.
315 If a pair of files doesn't have an ancestor in the ancestor-directory, you
316 will still be able to merge them without the ancestor.
317
318 @item ediff-merge-revisions
319 @findex ediff-merge-revisions
320 Merge two versions of the file visited by the current buffer.
321
322 @item ediff-merge-revisions-with-ancestor
323 @findex ediff-merge-revisions-with-ancestor
324 Same but with ancestor.
325
326 @item ediff-documentation
327 @findex ediff-documentation
328 Brings up this manual.
329
330 @item ediff-show-registry
331 @itemx eregistry
332 Brings up Ediff session registry. This feature enables you to quickly find
333 and restart active Ediff sessions.
334 @end table
335
336 When the above functions are invoked, the user is prompted for all the
337 necessary information---typically the files or buffers to compare, merge, or
338 patch. Ediff tries to be smart about these prompts. For instance, in
339 comparing/merging files, it will offer the visible buffers as defaults. In
340 prompting for files, if the user enters a directory, the previously input
341 file name will be appended to that directory. In addition, if the variable
342 @code{ediff-use-last-dir} is not @code{nil}, Ediff will offer
343 previously entered directories as defaults (which will be maintained
344 separately for each type of file, A, B, or C).
345 @vindex @code{ediff-use-last-dir}
346
347 All the above functions use the POSIX @code{diff} or @code{diff3} programs
348 to find differences between two files. They process the @code{diff} output
349 and display it in a convenient form. At present, Ediff understands only
350 the plain output from diff. Options such as @samp{-c} are not supported,
351 nor is the format produced by incompatible file comparison programs such as
352 the VMS version of @code{diff}.
353
354 The functions @code{ediff-files}, @code{ediff-buffers},
355 @code{ediff-files3}, @code{ediff-buffers3} first display the coarse,
356 line-based difference regions, as reported by the @code{diff} program. The
357 total number of difference regions and the current difference number are
358 always displayed in the mode line of the control window.
359
360 Since @code{diff} may report fairly large chunks of text as being different,
361 even though the difference may be localized to just a few words or even
362 to the white space or line breaks, Ediff further @emph{refines} the
363 regions to indicate which exact words differ. If the only difference is
364 in the white space and line breaks, Ediff says so.
365
366 On a color display, fine differences are highlighted with color; on a
367 monochrome display, they are underlined. @xref{Highlighting Difference
368 Regions}, for information on how to customize this.
369
370 The commands @code{ediff-windows-wordwise},
371 @code{ediff-windows-linewise}, @code{ediff-regions-wordwise} and
372 @code{ediff-regions-linewise} do comparison on parts of existing Emacs
373 buffers. The commands @code{ediff-windows-wordwise} and
374 @code{ediff-regions-wordwise} are intended for relatively small segments
375 of buffers (e.g., up to 100 lines, depending on the speed of your machine),
376 as they perform comparison on the basis of words rather than lines.
377 (Word-wise comparison of large chunks of text can be slow.)
378
379 To compare large regions, use @code{ediff-regions-linewise}. This
380 command displays differences much like @code{ediff-files} and
381 @code{ediff-buffers}.
382
383 The functions @code{ediff-patch-file} and @code{ediff-patch-buffer} apply a
384 patch to a file or a buffer and then run Ediff on the appropriate
385 files/buffers, displaying the difference regions.
386
387 The entry points @code{ediff-directories}, @code{ediff-merge-directories},
388 etc., provide a convenient interface for comparing and merging files in
389 different directories. The user is presented with Dired-like interface from
390 which one can run a group of related Ediff sessions.
391
392 For files under version control, @code{ediff-revision} lets you compare
393 the file visited by the current buffer to one of its checked-in versions.
394 You can also compare two checked-in versions of the visited file.
395 Moreover, the functions @code{ediff-directory-revisions},
396 @code{ediff-merge-directory-revisions}, etc., let you run a group of
397 related Ediff sessions by taking a directory and comparing (or merging)
398 versions of files in that directory.
399
400 @node Session Commands, Registry of Ediff Sessions, Major Entry Points, Top
401 @chapter Session Commands
402
403 All Ediff commands are displayed in a Quick Help window, unless you type
404 @kbd{?} to shrink the window to just one line. You can redisplay the help
405 window by typing @kbd{?} again. The Quick Help commands are detailed below.
406
407 Many Ediff commands take numeric prefix arguments. For instance, if you
408 type a number, say 3, and then @kbd{j} (@code{ediff-jump-to-difference}),
409 Ediff moves to the third difference region. Typing 3 and then @kbd{a}
410 (@code{ediff-diff-to-diff}) copies the 3rd difference region from variant A
411 to variant B@. Likewise, 4 followed by @kbd{ra} restores the 4th difference
412 region in buffer A (if it was previously written over via the command
413 @kbd{a}).
414
415 Some commands take negative prefix arguments as well. For instance, typing
416 @kbd{-} and then @kbd{j} will make the last difference region
417 current. Typing @kbd{-2} then @kbd{j} makes the penultimate difference
418 region current, etc.
419
420 Without the prefix argument, all commands operate on the currently
421 selected difference region. You can make any difference region
422 current using the various commands explained below.
423
424 For some commands, the actual value of the prefix argument is
425 immaterial. However, if supplied, the prefix argument may modify the
426 command (see @kbd{ga}, @kbd{gb}, and @kbd{gc}).
427
428 @menu
429 * Quick Help Commands:: Frequently used commands.
430 * Other Session Commands:: Commands that are not bound to keys.
431 @end menu
432
433 @node Quick Help Commands,Other Session Commands,,Session Commands
434 @section Quick Help Commands
435 @cindex command help
436 @cindex important commands
437
438 @table @kbd
439 @item ?
440 @kindex ?
441 Toggles the Ediff Quick Help window ON and OFF.
442 @item G
443 @kindex G
444 Prepares a mail buffer for sending a praise or a curse to the Ediff maintainer.
445
446 @item E
447 @kindex E
448 Brings up the top node of this manual, where you can find further
449 information on the various Ediff functions and advanced issues, such as
450 customization, session groups, etc.
451
452 @item v
453 @kindex v
454 Scrolls up buffers A and B (and buffer C where appropriate) in a
455 coordinated fashion.
456 @item V
457 @kindex V
458 Scrolls the buffers down.
459
460 @item <
461 @kindex <
462 Scrolls the buffers to the left simultaneously.
463 @item >
464 @kindex >
465 Scrolls buffers to the right.
466
467 @item wd
468 @kindex wd
469 Saves the output from the diff utility, for further reference.
470
471 With prefix argument, saves the plain output from @code{diff} (see
472 @code{ediff-diff-program} and @code{ediff-diff-options}). Without the
473 argument, it saves customized @code{diff} output (see
474 @code{ediff-custom-diff-program} and @code{ediff-custom-diff-options}), if
475 it is available.
476
477 @item wa
478 @kindex wa
479 Saves buffer A, if it was modified.
480 @item wb
481 @kindex wb
482 Saves buffer B, if it was modified.
483 @item wc
484 @kindex wc
485 Saves buffer C, if it was modified (if you are in a session that
486 compares three files simultaneously).
487
488 @item a
489 @kindex a
490 @emph{In comparison sessions:}
491 Copies the current difference region (or the region specified as the prefix
492 to this command) from buffer A to buffer B@.
493 Ediff saves the old contents of buffer B's region; it can
494 be restored via the command @kbd{rb}, which see.
495
496 @emph{In merge sessions:}
497 Copies the current difference region (or the region specified as the prefix
498 to this command) from buffer A to the merge buffer. The old contents of
499 this region in buffer C can be restored via the command @kbd{r}.
500
501 @item b
502 @kindex b
503 Works similarly, but copies the current difference region from buffer B to
504 buffer A (in @emph{comparison sessions}) or the merge buffer (in
505 @emph{merge sessions}).
506
507 Ediff saves the old contents of the difference region copied over; it can
508 be reinstated via the command @kbd{ra} in comparison sessions and
509 @kbd{r} in merge sessions.
510
511 @item ab
512 @kindex ab
513 Copies the current difference region (or the region specified as the prefix
514 to this command) from buffer A to buffer B@. This (and the next five)
515 command is enabled only in sessions that compare three files
516 simultaneously. The old region in buffer B is saved and can be restored
517 via the command @kbd{rb}.
518 @item ac
519 @kindex ac
520 Copies the difference region from buffer A to buffer C@.
521 The old region in buffer C is saved and can be restored via the command
522 @kbd{rc}.
523 @item ba
524 @kindex ba
525 Copies the difference region from buffer B to buffer A@.
526 The old region in buffer A is saved and can be restored via the command
527 @kbd{ra}.
528 @item bc
529 @kindex bc
530 Copies the difference region from buffer B to buffer C@.
531 The command @kbd{rc} undoes this.
532 @item ca
533 @kindex ca
534 Copies the difference region from buffer C to buffer A@.
535 The command @kbd{ra} undoes this.
536 @item cb
537 @kindex cb
538 Copies the difference region from buffer C to buffer B@.
539 The command @kbd{rb} undoes this.
540
541 @item p
542 @itemx DEL
543 @kindex p
544 @kindex DEL
545 Makes the previous difference region current.
546 @item n
547 @itemx SPC
548 @kindex n
549 @kindex SPC
550 Makes the next difference region current.
551
552 @item j
553 @itemx -j
554 @itemx Nj
555 @kindex j
556 Makes the very first difference region current.
557
558 @kbd{-j} makes the last region current. Typing a number, N, and then `j'
559 makes the difference region N current. Typing @minus{}N (a negative number) then
560 `j' makes current the region Last @minus{} N.
561
562 @item ga
563 @kindex ga
564 Makes current the difference region closest to the position of the point in
565 buffer A.
566
567 However, with a prefix argument, Ediff would position all variants
568 around the area indicated by the current point in buffer A: if
569 the point is inside a difference region, then the variants will be
570 positioned at this difference region. If the point is not in any difference
571 region, then it is in an area where all variants agree with each other. In
572 this case, the variants will be positioned so that each would display this
573 area (of agreement).
574 @item gb
575 @kindex gb
576 Makes current the difference region closest to the position of the point in
577 buffer B.
578
579 With a prefix argument, behaves like @kbd{ga}, but with respect to buffer B.
580 @item gc
581 @kindex gc
582 @emph{In merge sessions:}
583 makes current the difference region closest to the point in the merge buffer.
584
585 @emph{In 3-file comparison sessions:}
586 makes current the region closest to the point in buffer C.
587
588 With a prefix argument, behaves like @kbd{ga}, but with respect to buffer C.
589
590 @item !
591 @kindex !
592 Recomputes the difference regions, bringing them up to date. This is often
593 needed because it is common to do all sorts of editing during Ediff
594 sessions, so after a while, the highlighted difference regions may no
595 longer reflect the actual differences among the buffers.
596
597 @item *
598 @kindex *
599 Forces refinement of the current difference region, which highlights the exact
600 words of disagreement among the buffers. With a negative prefix argument,
601 unhighlights the current region.
602
603 Forceful refinement may be needed if Ediff encounters a difference region
604 that is larger than @code{ediff-auto-refine-limit}. In this situation,
605 Ediff doesn't do automatic refinement in order to improve response time.
606 (Ediff doesn't auto-refine on dumb terminals as well, but @kbd{*} still
607 works there. However, the only useful piece of information it can tell you
608 is whether or not the difference regions disagree only in the amount of
609 white space.)
610
611 This command is also useful when the highlighted fine differences are
612 no longer current, due to user editing.
613
614 @item m
615 @kindex m
616 Displays the current Ediff session in a frame as wide as the physical
617 display. This is useful when comparing files side-by-side. Typing `m' again
618 restores the original size of the frame.
619
620 @item |
621 @kindex |
622 Toggles the horizontal/vertical split of the Ediff display. Horizontal
623 split is convenient when it is possible to compare files
624 side-by-side. If the frame in which files are displayed is too narrow
625 and lines are cut off, typing @kbd{m} may help some.
626
627 @item @@
628 @kindex @@
629 Toggles auto-refinement of difference regions (i.e., automatic highlighting
630 of the exact words that differ among the variants). Auto-refinement is
631 turned off on devices where Emacs doesn't support highlighting.
632
633 On slow machines, it may be advantageous to turn auto-refinement off. The
634 user can always forcefully refine specific difference regions by typing
635 @kbd{*}.
636
637 @item h
638 @kindex h
639 Cycles between full highlighting, the mode where fine differences are not
640 highlighted (but computed), and the mode where highlighting is done with
641 @acronym{ASCII} strings. The latter is not really recommended, unless on a dumb TTY.
642
643 @item r
644 @kindex r
645 Restores the old contents of the region in the merge buffer.
646 (If you copied a difference region from buffer A or B into the merge buffer
647 using the commands @kbd{a} or @kbd{b}, Ediff saves the old contents of the
648 region in case you change your mind.)
649
650 This command is enabled in merge sessions only.
651
652 @item ra
653 @kindex ra
654 Restores the old contents of the current difference region in buffer A,
655 which was previously saved when the user invoked one of these commands:
656 @kbd{b}, @kbd{ba}, @kbd{ca}, which see. This command is enabled in
657 comparison sessions only.
658 @item rb
659 @kindex rb
660 Restores the old contents of the current difference region in buffer B,
661 which was previously saved when the user invoked one of these commands:
662 @kbd{a}, @kbd{ab}, @kbd{cb}, which see. This command is enabled in
663 comparison sessions only.
664 @item rc
665 @kindex rc
666 Restores the old contents of the current difference region in buffer C,
667 which was previously saved when the user invoked one of these commands:
668 @kbd{ac}, @kbd{bc}, which see. This command is enabled in 3-file
669 comparison sessions only.
670
671 @item ##
672 @kindex ##
673 Tell Ediff to skip over regions that disagree among themselves only in the
674 amount of white space and line breaks.
675
676 Even though such regions will be skipped over, you can still jump to any
677 one of them by typing the region number and then `j'. Typing @kbd{##}
678 again puts Ediff back in the original state.
679
680 @item #c
681 @kindex #c
682 @vindex ediff-ignore-case-option
683 @vindex ediff-ignore-case-option3
684 @vindex ediff-ignore-case
685 Toggle case sensitivity in the diff program. All diffs are recomputed.
686 Case sensitivity is controlled by the variables
687 @code{ediff-ignore-case-option}, @code{ediff-ignore-case-option3},
688 and @code{ediff-ignore-case}, which are explained elsewhere.
689
690 @item #h
691 @itemx #f
692 @kindex #f
693 @kindex #h
694 Ediff works hard to ameliorate the effects of boredom in the workplace...
695
696 Quite often differences are due to identical replacements (e.g., the word
697 `foo' is replaced with the word `bar' everywhere). If the number of regions
698 with such boring differences exceeds your tolerance threshold, you may be
699 tempted to tell Ediff to skip these regions altogether (you will still be able
700 to jump to them via the command @kbd{j}). The above commands, @kbd{#h}
701 and @kbd{#f}, may well save your day!
702
703 @kbd{#h} prompts you to specify regular expressions for each
704 variant. Difference regions where each variant's region matches the
705 corresponding regular expression will be skipped from then on. (You can
706 also tell Ediff to skip regions where at least one variant matches its
707 regular expression.)
708
709 @kbd{#f} does dual job: it focuses on regions that match the corresponding
710 regular expressions. All other regions will be skipped
711 over. @xref{Selective Browsing}, for more.
712
713 @item A
714 @kindex A
715 Toggles the read-only property in buffer A@.
716 If file A is under version control and is checked in, it is checked out
717 (with your permission).
718 @item B
719 @kindex B
720 Toggles the read-only property in buffer B@.
721 If file B is under version control and is checked in, it is checked out.
722 @item C
723 @kindex C
724 Toggles the read-only property in buffer C (in 3-file comparison sessions).
725 If file C is under version control and is checked in, it is checked out.
726
727 @item ~
728 @kindex ~
729 Swaps the windows where buffers A and B are displayed. If you are comparing
730 three buffers at once, then this command would rotate the windows among
731 buffers A, B, and C.
732
733 @item i
734 @kindex i
735 Displays all kinds of useful data about the current Ediff session.
736 @item D
737 @kindex D
738 Runs @code{ediff-custom-diff-program} on the variants and displays the
739 buffer containing the output. This is useful when you must send the output
740 to your Mom.
741
742 With a prefix argument, displays the plain @code{diff} output.
743 @xref{Patch and Diff Programs}, for details.
744
745 @item R
746 @kindex R
747 Displays a list of currently active Ediff sessions---the Ediff Registry.
748 You can then restart any of these sessions by either clicking on a session
749 record or by putting the cursor over it and then typing the return key.
750
751 (Some poor souls leave so many active Ediff sessions around that they lose
752 track of them completely... The `R' command is designed to save these
753 people from the recently discovered Ediff Proficiency Syndrome.)
754
755 Typing @kbd{R} brings up Ediff Registry only if it is typed into an Ediff
756 Control Panel. If you don't have a control panel handy, type this in the
757 minibuffer: @kbd{M-x eregistry}. @xref{Registry of Ediff Sessions}.
758
759 @item M
760 @kindex M
761 Shows the session group buffer that invoked the current Ediff session.
762 @xref{Session Groups}, for more information on session groups.
763
764 @item z
765 @kindex z
766 Suspends the current Ediff session. (If you develop a condition known as
767 Repetitive Ediff Injury---a serious but curable illness---you must change
768 your current activity. This command tries hard to hide all Ediff-related
769 buffers.)
770
771 The easiest way to resume a suspended Ediff session is through the registry
772 of active sessions. @xref{Registry of Ediff Sessions}, for details.
773 @item q
774 @kindex q
775 Terminates this Ediff session. With a prefix argument (e.g.,@kbd{1q}), asks
776 if you also want to delete the buffers of the variants.
777 Modified files and the results of merges are never deleted.
778
779 @item %
780 @kindex %
781 Toggles narrowing in Ediff buffers. Ediff buffers may be narrowed if you
782 are comparing only parts of these buffers via the commands
783 @code{ediff-windows-*} and @code{ediff-regions-*}, which see.
784
785 @item C-l
786 @kindex C-l
787 Restores the usual Ediff window setup. This is the quickest way to resume
788 an Ediff session, but it works only if the control panel of that session is
789 visible.
790
791 @item $$
792 @kindex $$
793 While merging with an ancestor file, Ediff is determined to reduce user's
794 wear and tear by saving him and her much of unproductive, repetitive
795 typing. If it notices that, say, file A's difference region is identical to
796 the same difference region in the ancestor file, then the merge buffer will
797 automatically get the difference region taken from buffer B@. The rationale
798 is that this difference region in buffer A is as old as that in the
799 ancestor buffer, so the contents of that region in buffer B represents real
800 change.
801
802 You may want to ignore such `obvious' merges and concentrate on difference
803 regions where both files `clash' with the ancestor, since this means that
804 two different people have been changing this region independently and they
805 had different ideas on how to do this.
806
807 The above command does this for you by skipping the regions where only one
808 of the variants clashes with the ancestor but the other variant agrees with
809 it. Typing @kbd{$$} again undoes this setting.
810
811 @item $*
812 @kindex $*
813 When merging files with large number of differences, it is sometimes
814 convenient to be able to skip the difference regions for which you already
815 decided which variant is most appropriate. Typing @kbd{$*} will accomplish
816 precisely this.
817
818 To be more precise, this toggles the check for whether the current merge is
819 identical to its default setting, as originally decided by Ediff. For
820 instance, if Ediff is merging according to the `combined' policy, then the
821 merge region is skipped over if it is different from the combination of the
822 regions in buffers A and B@. (Warning: swapping buffers A and B will confuse
823 things in this respect.) If the merge region is marked as `prefer-A' then
824 this region will be skipped if it differs from the current difference
825 region in buffer A, etc.
826
827 @item /
828 @kindex /
829 Displays the ancestor file during merges.
830 @item &
831 @kindex &
832 In some situations, such as when one of the files agrees with the ancestor file
833 on a difference region and the other doesn't, Ediff knows what to do: it copies
834 the current difference region from the second buffer into the merge buffer.
835
836 In other cases, the right course of action is not that clearcut, and Ediff
837 would use a default action. The above command changes the default action.
838 The default action can be @samp{default-A} (choose the region from buffer
839 A), @samp{default-B} (choose the region from buffer B), or @samp{combined}
840 (combine the regions from the two buffers).
841 @xref{Merging and diff3}, for further details.
842
843 The command @kbd{&} also affects the regions in the merge buffers that have
844 @samp{default-A}, @samp{default-B}, or @samp{combined} status, provided
845 they weren't changed with respect to the original. For instance, if such a
846 region has the status @samp{default-A} then changing the default action to
847 @samp{default-B} will also replace this merge-buffer's region with the
848 corresponding region from buffer B.
849
850 @item s
851 @kindex s
852 Causes the merge window shrink to its minimum size, thereby exposing as much
853 of the variant buffers as possible. Typing `s' again restores
854 the original size of that window.
855
856 With a positive prefix argument, this command enlarges the merge window.
857 E.g., @kbd{4s} increases the size of the window by about 4 lines, if
858 possible. With a negative numeric argument, the size of the merge window
859 shrinks by that many lines, if possible. Thus, @kbd{-s} shrinks the window
860 by about 1 line and @kbd{-3s} by about 3 lines.
861
862 This command is intended only for temporary viewing; therefore, Ediff
863 restores window C to its original size whenever it makes any other change
864 in the window configuration. However, redisplaying (@kbd{C-l}) or jumping
865 to another difference does not affect window C's size.
866
867 The split between the merge window and the variant windows is controlled by
868 the variable @code{ediff-merge-window-share}, which see.
869
870 @item +
871 @kindex +
872 Combines the difference regions from buffers A and B and copies the
873 result into the merge buffer. @xref{Merging and diff3}, and the
874 variables @code{ediff-combine-diffs} and @code{ediff-combination-pattern}.
875
876
877 @item =
878 @kindex =
879 You may run into situations when a large chunk of text in one file has been
880 edited and then moved to a different place in another file. In such a case,
881 these two chunks of text are unlikely to belong to the same difference
882 region, so the refinement feature of Ediff will not be able to tell you
883 what exactly differs inside these chunks. Since eyeballing large pieces of
884 text is contrary to human nature, Ediff has a special command to help
885 reduce the risk of developing a cataract.
886
887 In other situations, the currently highlighted region might be big and you
888 might want to reconcile of them interactively.
889
890 All of this can be done with the above command, @kbd{=}, which
891 compares regions within Ediff buffers. Typing @kbd{=} creates a
892 child Ediff session for comparing regions in buffers A, B, or
893 C as follows.
894
895 First, you will be asked whether you want to compare the fine differences
896 between the currently highlighted buffers on a word-by-word basis. If you
897 accept, a child Ediff session will start using the currently highlighted
898 regions. Ediff will let you step over the differences word-wise.
899
900 If you reject the offer, you will be asked to select regions of your choice.
901
902 @emph{If you are comparing 2 files or buffers:}
903 Ediff will ask you to select regions in buffers A and B.
904
905 @emph{If you are comparing 3 files or buffers simultaneously:} Ediff will
906 ask you to choose buffers and then select regions inside those buffers.
907
908 @emph{If you are merging files or buffers (with or without ancestor):}
909 Ediff will ask you to choose which buffer (A or B) to compare with the
910 merge buffer and then select regions in those buffers.
911
912 @end table
913
914 @node Other Session Commands,,Quick Help Commands,Session Commands
915 @section Other Session Commands
916
917 The following commands can be invoked from within any Ediff session,
918 although some of them are not bound to a key.
919
920 @table @code
921 @item eregistry
922 @itemx ediff-show-registry
923 @findex eregistry
924 @findex ediff-show-registry
925 This command brings up the registry of active Ediff sessions. Ediff
926 registry is a device that can be used to resume any active Ediff session
927 (which may have been postponed because the user switched to some other
928 activity). This command is also useful for switching between multiple
929 active Ediff sessions that are run at the same time. The function
930 @code{eregistry} is an alias for @code{ediff-show-registry}.
931 @xref{Registry of Ediff Sessions}, for more information on this registry.
932
933 @item ediff-toggle-multiframe
934 @findex ediff-toggle-multiframe
935 Changes the display from the multi-frame mode (where the quick help window
936 is in a separate frame) to the single-frame mode (where all Ediff buffers
937 share the same frame), and vice versa. See
938 @code{ediff-window-setup-function} for details on how to make either of
939 these modes the default one.
940
941 This function can also be invoked from the Menubar. However, in some
942 cases, the change will take place only after you execute one of the Ediff
943 commands, such as going to the next difference or redisplaying.
944
945 @item ediff-toggle-use-toolbar
946 @findex ediff-toggle-use-toolbar
947 Available in XEmacs only. The Ediff toolbar provides quick access to some
948 of the common Ediff functions. This function toggles the display of the
949 toolbar. If invoked from the menubar, the function may take sometimes
950 effect only after you execute an Ediff command, such as going to the next
951 difference.
952
953 @item ediff-use-toolbar-p
954 @vindex ediff-use-toolbar-p
955 The use of the toolbar can also be specified via the variable
956 @code{ediff-use-toolbar-p} (default is @code{t}). This variable can be set
957 only in @file{.emacs}: do @strong{not} change it interactively. Use the
958 function @code{ediff-toggle-use-toolbar} instead.
959
960 @item ediff-revert-buffers-then-recompute-diffs
961 @findex ediff-revert-buffers-then-recompute-diffs
962 This command reverts the buffers you are comparing and recomputes their
963 differences. It is useful when, after making changes, you decided to
964 make a fresh start, or if at some point you changed the files being
965 compared but want to discard any changes to comparison buffers that were
966 done since then.
967
968 This command normally asks for confirmation before reverting files.
969 With a prefix argument, it reverts files without asking.
970
971
972 @item ediff-profile
973 @findex ediff-profile
974 Ediff has an admittedly primitive (but useful) facility for profiling
975 Ediff's commands. It is meant for Ediff maintenance---specifically, for
976 making it run faster. The function @code{ediff-profile} toggles
977 profiling of ediff commands.
978 @end table
979
980 @node Registry of Ediff Sessions, Session Groups, Session Commands, Top
981 @chapter Registry of Ediff Sessions
982
983 Ediff maintains a registry of all its invocations that are
984 still @emph{active}. This feature is very convenient for switching among
985 active Ediff sessions or for quickly restarting a suspended Ediff session.
986
987 The focal point of this activity is a buffer
988 called @emph{*Ediff Registry*}. You can display this buffer by typing
989 @kbd{R} in any Ediff Control Buffer or Session Group Buffer
990 (@pxref{Session Groups}), or by typing
991 @kbd{M-x eregistry} into the Minibuffer.
992 The latter would be the fastest way to bring up the registry
993 buffer if no control or group buffer is displayed in any of the visible
994 Emacs windows.
995 If you are in a habit of running multiple long Ediff sessions and often need to
996 suspend, resume, or switch between them, it may be a good idea to have the
997 registry buffer permanently displayed in a separate, dedicated window.
998
999 The registry buffer has several convenient key bindings.
1000 For instance, clicking mouse button 2 or typing
1001 @kbd{RET} or @kbd{v} over any session record resumes that session.
1002 Session records in the registry buffer provide a fairly complete
1003 description of each session, so it is usually easy to identify the right
1004 session to resume.
1005
1006 Other useful commands are bound to @kbd{SPC} (next registry record)
1007 and @kbd{DEL} (previous registry record). There are other commands as well,
1008 but you don't need to memorize them, since they are listed at the top of
1009 the registry buffer.
1010
1011 @node Session Groups, Remote and Compressed Files, Registry of Ediff Sessions, Top
1012 @chapter Session Groups
1013
1014 Several major entries of Ediff perform comparison and merging on
1015 directories. On entering @code{ediff-directories},
1016 @code{ediff-directories3},
1017 @code{ediff-merge-directories},
1018 @code{ediff-merge-directories-with-ancestor},
1019 @code{ediff-directory-revisions},
1020 @code{ediff-merge-directory-revisions}, or
1021 @code{ediff-merge-directory-revisions-with-ancestor},
1022 the user is presented with a
1023 Dired-like buffer that lists files common to the directories involved along
1024 with their sizes. (The list of common files can be further filtered through
1025 a regular expression, which the user is prompted for.) We call this buffer
1026 @emph{Session Group Panel} because all Ediff sessions associated with the
1027 listed files will have this buffer as a common focal point.
1028
1029 Clicking button 2 or typing @kbd{RET} or @kbd{v} over a
1030 record describing files invokes Ediff in the appropriate mode on these
1031 files. You can come back to the session group buffer associated with a
1032 particular invocation of Ediff by typing @kbd{M} in Ediff control buffer of
1033 that invocation.
1034
1035 Many commands are available in the session group buffer; some are
1036 applicable only to certain types of work. The relevant commands are always
1037 listed at the top of each session group buffer, so there is no need to
1038 memorize them.
1039
1040 In directory comparison or merging, a session group panel displays only the
1041 files common to all directories involved. The differences are kept in a
1042 separate @emph{directory difference buffer} and are conveniently displayed
1043 by typing @kbd{D} to the corresponding session group panel. Thus, as an
1044 added benefit, Ediff can be used to compare the contents of up to three
1045 directories.
1046
1047 @cindex Directory difference buffer
1048 Sometimes it is desirable to copy some files from one directory to another
1049 without exiting Ediff. The @emph{directory difference buffer}, which is
1050 displayed by typing @kbd{D} as discussed above, can be used for this
1051 purpose. If a file is, say, in Ediff's Directory A, but is missing in
1052 Ediff's Directory B (Ediff will refuse to override existing files), then
1053 typing @kbd{C} or clicking mouse button 2 over that file (which must be
1054 displayed in directory difference buffer) will copy that file from
1055 Directory A to Directory B.
1056
1057 Session records in session group panels are also marked with @kbd{+}, for
1058 active sessions, and with @kbd{-}, for finished sessions.
1059
1060 Sometimes, it is convenient to exclude certain sessions from a group.
1061 Usually this happens when the user doesn't intend to run Ediff of certain
1062 files in the group, and the corresponding session records just add clutter
1063 to the session group buffer. To help alleviate this problem, the user can
1064 type @kbd{h} to mark a session as a candidate for exclusion and @kbd{x} to
1065 actually hide the marked sessions. There actions are reversible: with a
1066 prefix argument, @kbd{h} unmarks the session under the cursor, and @kbd{x}
1067 brings the hidden sessions into the view (@kbd{x} doesn't unmark them,
1068 though, so the user has to explicitly unmark the sessions of interest).
1069
1070 Group sessions also understand the command @kbd{m}, which marks sessions
1071 for future operations (other than hiding) on a group of sessions. At present,
1072 the only such group-level operation is the creation of a multi-file patch.
1073
1074 @vindex ediff-autostore-merges
1075 For group sessions created to merge files, Ediff can store all merges
1076 automatically in a directory. The user is asked to specify such directory
1077 if the value of @code{ediff-autostore-merges} is non-@code{nil}. If the value is
1078 @code{nil}, nothing is done to the merge buffers---it will be the user's
1079 responsibility to save them. If the value is @code{t}, the user will be
1080 asked where to save the merge buffers in all merge jobs, even those that do
1081 not originate from a session group. It the value is neither @code{nil} nor
1082 @code{t}, the merge buffer is saved @emph{only} if this merge session was
1083 invoked from a session group. This behavior is implemented in the function
1084 @code{ediff-maybe-save-and-delete-merge}, which is a hook in
1085 @code{ediff-quit-merge-hook}. The user can supply a different hook, if
1086 necessary.
1087
1088 The variable @code{ediff-autostore-merges} is buffer-local, so it can be
1089 set on a per-buffer basis. Therefore, use @code{setq-default} to change
1090 this variable globally.
1091
1092 @cindex Multi-file patches
1093 A multi-file patch is a concatenated output of several runs of the Unix
1094 @code{diff} command (some versions of @code{diff} let you create a
1095 multi-file patch in just one run). Ediff facilitates creation of
1096 multi-file patches as follows. If you are in a session group buffer
1097 created in response to @code{ediff-directories} or
1098 @code{ediff-directory-revisions}, you can mark (by typing @kbd{m}) the
1099 desired Ediff sessions and then type @kbd{P} to create a
1100 multi-file patch of those marked sessions.
1101 Ediff will then display a buffer containing the patch.
1102 The patch is generated by invoking @code{diff} on all marked individual
1103 sessions (represented by files) and session groups (represented by
1104 directories). Ediff will also recursively descend into any @emph{unmarked}
1105 session group and will search for marked sessions there. In this way, you
1106 can create multi-file patches that span file subtrees that grow out of
1107 any given directory.
1108
1109 In an @code{ediff-directories} session, it is enough to just mark the
1110 requisite sessions. In @code{ediff-directory-revisions} revisions, the
1111 marked sessions must also be active, or else Ediff will refuse to produce a
1112 multi-file patch. This is because, in the latter-style sessions, there are
1113 many ways to create diff output, and it is easier to handle by running
1114 Ediff on the inactive sessions.
1115
1116 Last, but not least, by typing @kbd{==}, you can quickly find out which
1117 sessions have identical entries, so you won't have to run Ediff on those
1118 sessions. This, however, works only on local, uncompressed files.
1119 For compressed or remote files, this command won't report anything.
1120 Likewise, you can use @kbd{=h} to mark sessions with identical entries
1121 for hiding or, with @kbd{=m}, for further operations.
1122
1123 The comparison operations @kbd{==}, @kbd{=h}, and @kbd{=m} can recurse into
1124 subdirectories to see if they have identical contents (so the user will not
1125 need to descend into those subdirectories manually). These commands ask the
1126 user whether or not to do a recursive descent.
1127
1128
1129
1130 @node Remote and Compressed Files, Customization, Session Groups, Top
1131 @chapter Remote and Compressed Files
1132
1133 Ediff works with remote, compressed, and encrypted files. Ediff
1134 supports @file{ange-ftp.el}, @file{jka-compr.el}, @file{uncompress.el}
1135 and @file{crypt++.el}, but it may work with other similar packages as
1136 well. This means that you can compare files residing on another
1137 machine, or you can apply a patch to a file on another machine. Even
1138 the patch itself can be a remote file!
1139
1140 When patching compressed or remote files, Ediff does not rename the source
1141 file (unlike what the @code{patch} utility would usually do). Instead, the
1142 source file retains its name and the result of applying the patch is placed
1143 in a temporary file that has the suffix @file{_patched} attached.
1144 Generally, this applies to files that are handled using black magic, such
1145 as special file handlers (ange-ftp and some compression and encryption
1146 packages also use this method).
1147
1148 Regular files are treated by the @code{patch} utility in the usual manner,
1149 i.e., the original is renamed into @file{source-name.orig} and the result
1150 of the patch is placed into the file source-name (@file{_orig} is used
1151 on systems like DOS, etc.)
1152
1153 @node Customization, Credits, Remote and Compressed Files, Top
1154 @chapter Customization
1155
1156 Ediff has a rather self-explanatory interface, and in most cases you
1157 won't need to change anything. However, should the need arise, there are
1158 extensive facilities for changing the default behavior.
1159
1160 Most of the customization can be done by setting various variables in the
1161 @file{.emacs} file. Some customization (mostly window-related
1162 customization and faces) can be done by putting appropriate lines in
1163 @file{.Xdefaults}, @file{.xrdb}, or whatever X resource file is in use.
1164
1165 With respect to the latter, please note that the X resource
1166 for Ediff customization is `Ediff', @emph{not} `emacs'.
1167 @xref{Window and Frame Configuration},
1168 @xref{Highlighting Difference Regions}, for further details. Please also
1169 refer to Emacs manual for the information on how to set Emacs X resources.
1170
1171 @menu
1172 * Hooks:: Customization via the hooks.
1173 * Quick Help Customization:: How to customize Ediff's quick help feature.
1174 * Window and Frame Configuration:: Controlling the way Ediff displays things.
1175 * Selective Browsing:: Advanced browsing through difference regions.
1176 * Highlighting Difference Regions:: Controlling highlighting.
1177 * Narrowing:: Comparing regions, windows, etc.
1178 * Refinement of Difference Regions:: How to control the refinement process.
1179 * Patch and Diff Programs:: Changing the utilities that compute differences
1180 and apply patches.
1181 * Merging and diff3:: How to customize Ediff in its Merge Mode.
1182 * Support for Version Control:: Changing the version control package.
1183 You are not likely to do that.
1184 * Customizing the Mode Line:: Changing the look of the mode line in Ediff.
1185 * Miscellaneous:: Other customization.
1186 * Notes on Heavy-duty Customization:: Customization for the gurus.
1187 @end menu
1188
1189 @node Hooks, Quick Help Customization, Customization, Customization
1190 @section Hooks
1191
1192 The bulk of customization can be done via the following hooks:
1193
1194 @table @code
1195 @item ediff-load-hook
1196 @vindex ediff-load-hook
1197 This hook can be used to change defaults after Ediff is loaded.
1198
1199 @item ediff-before-setup-hook
1200 @vindex ediff-before-setup-hook
1201 Hook that is run just before Ediff rearranges windows to its liking.
1202 Can be used to save windows configuration.
1203
1204 @item ediff-keymap-setup-hook
1205 @vindex ediff-keymap-setup-hook
1206 @vindex ediff-mode-map
1207 This hook can be used to alter bindings in Ediff's keymap,
1208 @code{ediff-mode-map}. These hooks are
1209 run right after the default bindings are set but before
1210 @code{ediff-load-hook}. The regular user needs not be concerned with this
1211 hook---it is provided for implementers of other Emacs packages built on top
1212 of Ediff.
1213
1214 @item ediff-before-setup-windows-hook
1215 @itemx ediff-after-setup-windows-hook
1216 @vindex ediff-before-setup-windows-hook
1217 @vindex ediff-after-setup-windows-hook
1218 These two hooks are called before and after Ediff sets up its window
1219 configuration. These hooks are run each time Ediff rearranges windows to
1220 its liking. This happens whenever it detects that the user changed the
1221 windows setup.
1222
1223 @item ediff-suspend-hook
1224 @itemx ediff-quit-hook
1225 @vindex ediff-suspend-hook
1226 @vindex ediff-quit-hook
1227 These two hooks are run when you suspend or quit Ediff. They can be
1228 used to set desired window configurations, delete files Ediff didn't
1229 want to clean up after exiting, etc.
1230
1231 By default, @code{ediff-quit-hook} holds one hook function,
1232 @code{ediff-cleanup-mess}, which cleans after Ediff, as appropriate in
1233 most cases. You probably won't want to change it, but you might
1234 want to add other hook functions.
1235
1236 Keep in mind that hooks executing before @code{ediff-cleanup-mess} start
1237 in @code{ediff-control-buffer;} they should also leave
1238 @code{ediff-control-buffer} as the current buffer when they finish.
1239 Hooks that are executed after @code{ediff-cleanup-mess} should expect
1240 the current buffer be either buffer A or buffer B@.
1241 @code{ediff-cleanup-mess} doesn't kill the buffers being compared or
1242 merged (see @code{ediff-cleanup-hook}, below).
1243
1244 @item ediff-cleanup-hook
1245 @vindex ediff-cleanup-hook
1246 This hook is run just before @code{ediff-quit-hook}. This is a good
1247 place to do various cleanups, such as deleting the variant buffers.
1248 Ediff provides a function, @code{ediff-janitor}, as one such possible
1249 hook, which you can add to @code{ediff-cleanup-hook} with
1250 @code{add-hook}.
1251
1252 @findex ediff-janitor
1253 This function kills buffers A, B, and, possibly, C, if these buffers aren't
1254 modified. In merge jobs, buffer C is never deleted. However, the side
1255 effect of using this function is that you may not be able to compare the
1256 same buffer in two separate Ediff sessions: quitting one of them will
1257 delete this buffer in another session as well.
1258
1259 @item ediff-quit-merge-hook
1260 @vindex ediff-quit-merge-hook
1261 @vindex ediff-autostore-merges
1262 @findex ediff-maybe-save-and-delete-merge
1263 This hook is called when Ediff quits a merge job. By default, the value is
1264 @code{ediff-maybe-save-and-delete-merge}, which is a function that attempts
1265 to save the merge buffer according to the value of
1266 @code{ediff-autostore-merges}, as described later.
1267
1268 @item ediff-before-setup-control-frame-hook
1269 @itemx ediff-after-setup-control-frame-hook
1270 @vindex ediff-before-setup-control-frame-hook
1271 @vindex ediff-after-setup-control-frame-hook
1272 These two hooks run before and after Ediff sets up the control frame.
1273 They can be used to relocate Ediff control frame when Ediff runs in a
1274 multiframe mode (i.e., when the control buffer is in its own dedicated
1275 frame). Be aware that many variables that drive Ediff are local to
1276 Ediff Control Panel (@code{ediff-control-buffer}), which requires
1277 special care in writing these hooks. Take a look at
1278 @code{ediff-default-suspend-hook} and @code{ediff-default-quit-hook} to
1279 see what's involved.
1280
1281 @item ediff-startup-hook
1282 @vindex ediff-startup-hook
1283 This hook is run at the end of Ediff startup.
1284
1285 @item ediff-select-hook
1286 @vindex ediff-select-hook
1287 This hook is run after Ediff selects the next difference region.
1288
1289 @item ediff-unselect-hook
1290 @vindex ediff-unselect-hook
1291 This hook is run after Ediff unselects the current difference region.
1292
1293 @item ediff-prepare-buffer-hook
1294 @vindex ediff-prepare-buffer-hook
1295 This hook is run for each Ediff buffer (A, B, C) right after the buffer
1296 is arranged.
1297
1298 @item ediff-display-help-hook
1299 @vindex ediff-display-help-hook
1300 Ediff runs this hook each time after setting up the help message. It
1301 can be used to alter the help message for custom packages that run on
1302 top of Ediff.
1303
1304 @item ediff-mode-hook
1305 @vindex ediff-mode-hook
1306 This hook is run just after Ediff mode is set up in the control
1307 buffer. This is done before any Ediff window is created. You can use it to
1308 set local variables that alter the look of the display.
1309
1310 @item ediff-registry-setup-hook
1311 @vindex ediff-registry-setup-hook
1312 Hooks run after setting up the registry for all active Ediff session.
1313 @xref{Session Groups}, for details.
1314 @item ediff-before-session-group-setup-hook
1315 @vindex ediff-before-session-group-setup-hook
1316 Hooks run before setting up a control panel for a group of related Ediff
1317 sessions. Can be used, for example, to save window configuration to restore
1318 later.
1319 @item ediff-after-session-group-setup-hook
1320 @vindex ediff-after-session-group-setup-hook
1321 Hooks run after setting up a control panel for a group of related Ediff
1322 sessions. @xref{Session Groups}, for details.
1323 @item ediff-quit-session-group-hook
1324 @vindex ediff-quit-session-group-hook
1325 Hooks run just before exiting a session group.
1326 @item ediff-meta-buffer-keymap-setup-hook
1327 @vindex ediff-meta-buffer-keymap-setup-hook
1328 @vindex ediff-meta-buffer-map
1329 Hooks run just after setting up the @code{ediff-meta-buffer-map}, the
1330 map that controls key bindings in the meta buffer. Since
1331 @code{ediff-meta-buffer-map} is a local variable, you can set different
1332 bindings for different kinds of meta buffers.
1333 @end table
1334
1335 @node Quick Help Customization, Window and Frame Configuration, Hooks, Customization
1336 @section Quick Help Customization
1337 @vindex ediff-use-long-help-message
1338 @vindex ediff-control-buffer
1339 @vindex ediff-startup-hook
1340 @vindex ediff-help-message
1341
1342 Ediff provides quick help using its control panel window. Since this window
1343 takes a fair share of the screen real estate, you can toggle it off by
1344 typing @kbd{?}. The control window will then shrink to just one line and a
1345 mode line, displaying a short help message.
1346
1347 The variable @code{ediff-use-long-help-message} tells Ediff whether
1348 you use the short message or the long one. By default, it
1349 is set to @code{nil}, meaning that the short message is used.
1350 Set this to @code{t}, if you want Ediff to use the long
1351 message by default. This property can always be changed interactively, by
1352 typing @kbd{?} into Ediff Control Buffer.
1353
1354 If you want to change the appearance of the help message on a per-buffer
1355 basis, you must use @code{ediff-startup-hook} to change the value of
1356 the variable @code{ediff-help-message}, which is local to
1357 @code{ediff-control-buffer}.
1358
1359 @node Window and Frame Configuration, Selective Browsing, Quick Help Customization, Customization
1360 @section Window and Frame Configuration
1361
1362 On a non-windowing display, Ediff sets things up in one frame, splitting
1363 it between a small control window and the windows for buffers A, B, and C@.
1364 The split between these windows can be horizontal or
1365 vertical, which can be changed interactively by typing @kbd{|} while the
1366 cursor is in the control window.
1367
1368 On a window display, Ediff sets up a dedicated frame for Ediff Control
1369 Panel and then it chooses windows as follows: If one of the buffers
1370 is invisible, it is displayed in the currently selected frame. If
1371 a buffer is visible, it is displayed in the frame where it is visible.
1372 If, according to the above criteria, the two buffers fall into the same
1373 frame, then so be it---the frame will be shared by the two. The same
1374 algorithm works when you type @kbd{C-l} (@code{ediff-recenter}), @kbd{p}
1375 (@code{ediff-previous-difference}), @kbd{n}
1376 (@code{ediff-next-difference}), etc.
1377
1378 The above behavior also depends on whether the current frame is splittable,
1379 dedicated, etc. Unfortunately, the margin of this book is too narrow to
1380 present the details of this remarkable algorithm.
1381
1382 The upshot of all this is that you can compare buffers in one frame or
1383 in different frames. The former is done by default, while the latter can
1384 be achieved by arranging buffers A, B (and C, if applicable) to be seen in
1385 different frames. Ediff respects these arrangements, automatically
1386 adapting itself to the multi-frame mode.
1387
1388 Ediff uses the following variables to set up its control panel
1389 (a.k.a.@: control buffer, a.k.a.@: quick help window):
1390
1391 @table @code
1392 @item ediff-control-frame-parameters
1393 @vindex ediff-control-frame-parameters
1394 You can change or augment this variable including the font, color,
1395 etc. The X resource name of Ediff Control Panel frames is @samp{Ediff}. Under
1396 X-windows, you can use this name to set up preferences in your
1397 @file{~/.Xdefaults}, @file{~/.xrdb}, or whatever X resource file is in
1398 use. Usually this is preferable to changing
1399 @code{ediff-control-frame-parameters} directly. For instance, you can
1400 specify in @file{~/.Xdefaults} the color of the control frame
1401 using the resource @samp{Ediff*background}.
1402
1403 In general, any X resource pertaining the control frame can be reached
1404 via the prefix @code{Ediff*}.
1405
1406 @item ediff-control-frame-position-function
1407 @vindex ediff-control-frame-position-function
1408 The preferred way of specifying the position of the control frame is by
1409 setting the variable @code{ediff-control-frame-position-function} to an
1410 appropriate function.
1411 The default value of this variable is
1412 @code{ediff-make-frame-position}. This function places the control frame in
1413 the vicinity of the North-East corner of the frame displaying buffer A.
1414
1415 @findex ediff-make-frame-position
1416 @end table
1417
1418 The following variables can be used to adjust the location produced by
1419 @code{ediff-make-frame-position} and for related customization.
1420
1421 @table @code
1422 @item ediff-narrow-control-frame-leftward-shift
1423 @vindex ediff-narrow-control-frame-leftward-shift
1424 Specifies the number of characters for shifting
1425 the control frame from the rightmost edge of frame A when the control
1426 frame is displayed as a small window.
1427
1428 @item ediff-wide-control-frame-rightward-shift
1429 @vindex ediff-wide-control-frame-rightward-shift
1430 Specifies the rightward shift of the control frame
1431 from the left edge of frame A when the control frame shows the full
1432 menu of options.
1433
1434 @item ediff-control-frame-upward-shift
1435 @vindex ediff-control-frame-upward-shift
1436 Specifies the number of pixels for the upward shift
1437 of the control frame.
1438
1439 @item ediff-prefer-iconified-control-frame
1440 @vindex ediff-prefer-iconified-control-frame
1441 If this variable is @code{t}, the control frame becomes iconified
1442 automatically when you toggle the quick help message off. This saves
1443 valuable real estate on the screen. Toggling help back will deiconify
1444 the control frame.
1445
1446 To start Ediff with an iconified Control Panel, you should set this
1447 variable to @code{t} and @code{ediff-prefer-long-help-message} to
1448 @code{nil} (@pxref{Quick Help Customization}). This behavior is useful
1449 only if icons are allowed to accept keyboard input (which depends on the
1450 window manager and other factors).
1451 @end table
1452
1453 @findex ediff-setup-windows
1454 To make more creative changes in the way Ediff sets up windows, you can
1455 rewrite the function @code{ediff-setup-windows}. However, we believe
1456 that detaching Ediff Control Panel from the rest and making it into a
1457 separate frame offers an important opportunity by allowing you to
1458 iconify that frame. The icon will usually accept all of the Ediff
1459 commands, but will free up valuable real estate on your screen (this may
1460 depend on your window manager, though).
1461
1462 The following variable controls how windows are set up:
1463
1464 @table @code
1465 @item ediff-window-setup-function
1466 @vindex ediff-window-setup-function
1467 The multiframe setup is done by the
1468 @code{ediff-setup-windows-multiframe} function, which is the default on
1469 windowing displays. The plain setup, one where all windows are always
1470 in one frame, is done by @code{ediff-setup-windows-plain}, which is the
1471 default on a non-windowing display (or in an xterm window). In fact,
1472 under Emacs, you can switch freely between these two setups by executing
1473 the command @code{ediff-toggle-multiframe} using the Minibuffer of the
1474 Menubar.
1475 @findex ediff-setup-windows-multiframe
1476 @findex ediff-setup-windows-plain
1477 @findex ediff-toggle-multiframe
1478
1479 If you don't like any of these setups, write your own function. See the
1480 documentation for @code{ediff-window-setup-function} for the basic
1481 guidelines. However, writing window setups is not easy, so you should
1482 first take a close look at @code{ediff-setup-windows-plain} and
1483 @code{ediff-setup-windows-multiframe}.
1484 @end table
1485
1486 You can run multiple Ediff sessions at once, by invoking Ediff several
1487 times without exiting previous Ediff sessions. Different sessions
1488 may even operate on the same pair of files.
1489
1490 Each session has its own Ediff Control Panel and all the regarding a
1491 particular session is local to the associated control panel buffer. You
1492 can switch between sessions by suspending one session and then switching
1493 to another control panel. (Different control panel buffers are
1494 distinguished by a numerical suffix, e.g., @samp{Ediff Control Panel<3>}.)
1495
1496 @node Selective Browsing, Highlighting Difference Regions, Window and Frame Configuration, Customization
1497 @section Selective Browsing
1498
1499 Sometimes it is convenient to be able to step through only some difference
1500 regions, those that match certain regular expressions, and to ignore all
1501 others. On other occasions, you may want to ignore difference regions that
1502 match some regular expressions, and to look only at the rest.
1503
1504 The commands @kbd{#f} and @kbd{#h} let you do precisely this.
1505
1506 Typing @kbd{#f} lets you specify regular expressions that match difference
1507 regions you want to focus on.
1508 We shall call these regular expressions @var{regexp-A}, @var{regexp-B} and
1509 @var{regexp-C}.
1510 Ediff will then start stepping through only those difference regions
1511 where the region in buffer A matches @var{regexp-A} and/or the region in
1512 buffer B matches @var{regexp-B}, etc. Whether `and' or `or' will be used
1513 depends on how you respond to a question.
1514
1515 When scanning difference regions for the aforesaid regular expressions,
1516 Ediff narrows the buffers to those regions. This means that you can use
1517 the expressions @kbd{\`} and @kbd{\'} to tie search to the beginning or end
1518 of the difference regions.
1519
1520 On the other hand, typing @kbd{#h} lets you specify (hide) uninteresting
1521 regions. That is, if a difference region in buffer A matches
1522 @var{regexp-A}, the corresponding region in buffer B matches @var{regexp-B}
1523 and (if applicable) buffer C's region matches @var{regexp-C}, then the
1524 region will be ignored by the commands @kbd{n}/@key{SPC}
1525 (@code{ediff-next-difference}) and @kbd{p}/@key{DEL}
1526 (@code{ediff-previous-difference}) commands.
1527
1528 Typing @kbd{#f} and @kbd{#h} toggles selective browsing on and off.
1529
1530 Note that selective browsing affects only @code{ediff-next-difference}
1531 and @code{ediff-previous-difference}, i.e., the commands
1532 @kbd{n}/@key{SPC} and @kbd{p}/@key{DEL}. @kbd{#f} and @kbd{#h} do not
1533 change the position of the point in the buffers. And you can still jump
1534 directly (using @kbd{j}) to any numbered
1535 difference.
1536
1537 Users can supply their own functions to specify how Ediff should do
1538 selective browsing. To change the default Ediff function, add a function to
1539 @code{ediff-load-hook} which will do the following assignments:
1540
1541 @example
1542 (setq ediff-hide-regexp-matches-function 'your-hide-function)
1543 (setq ediff-focus-on-regexp-matches-function 'your-focus-function)
1544 @end example
1545
1546 @strong{Useful hint}: To specify a regexp that matches everything, don't
1547 simply type @key{RET} in response to a prompt. Typing @key{RET} tells Ediff
1548 to accept the default value, which may not be what you want. Instead, you
1549 should enter something like @key{^} or @key{$}. These match every
1550 line.
1551
1552 You can use the status command, @kbd{i}, to find out whether
1553 selective browsing is currently in effect.
1554
1555 The regular expressions you specified are kept in the local variables
1556 @code{ediff-regexp-focus-A}, @code{ediff-regexp-focus-B},
1557 @code{ediff-regexp-focus-C}, @code{ediff-regexp-hide-A},
1558 @code{ediff-regexp-hide-B}, @code{ediff-regexp-hide-C}. Their default value
1559 is the empty string (i.e., nothing is hidden or focused on). To change the
1560 default, set these variables in @file{.emacs} using @code{setq-default}.
1561
1562 In addition to the ability to ignore regions that match regular
1563 expressions, Ediff can be ordered to start skipping over certain
1564 ``uninteresting'' difference regions. This is controlled by the following
1565 variable:
1566
1567 @table @code
1568 @item ediff-ignore-similar-regions
1569 @vindex ediff-ignore-similar-regions
1570 If @code{t}, causes Ediff to skip over "uninteresting" difference regions,
1571 which are the regions where the variants differ only in the amount of the
1572 white space and newlines. This feature can be toggled on/off interactively,
1573 via the command @kbd{##}.
1574 @end table
1575
1576 @strong{Please note:} in order for this feature to work, auto-refining of
1577 difference regions must be on, since otherwise Ediff won't know if there
1578 are fine differences between regions. On devices where Emacs can display
1579 faces, auto-refining is a default, but it is not turned on by default on
1580 text-only terminals. In that case, you must explicitly turn auto-refining
1581 on (such as, by typing @kbd{@@}).
1582
1583 @strong{Reassurance:} If many such uninteresting regions appear in a row,
1584 Ediff may take a long time to skip over them because it has to compute fine
1585 differences of all intermediate regions. This delay does not indicate any
1586 problem.
1587
1588 @vindex ediff-ignore-case-option
1589 @vindex ediff-ignore-case-option3
1590 @vindex ediff-ignore-case
1591 Finally, Ediff can be told to ignore the case of the letters. This behavior
1592 can be toggled with @kbd{#c} and it is controlled with three variables:
1593 @code{ediff-ignore-case-option}, @code{ediff-ignore-case-option3}, and
1594 @code{ediff-ignore-case}.
1595
1596 The variable @code{ediff-ignore-case-option} specifies the option to pass
1597 to the diff program for comparing two files or buffers. For GNU
1598 @code{diff}, this option is @code{"-i"}. The variable
1599 @code{ediff-ignore-case-option3} specifies the option to pass to the
1600 @code{diff3} program in order to make it case-insensitive. GNU @code{diff3}
1601 does not have such an option, so when merging or comparing three files with
1602 this program, ignoring the letter case is not supported.
1603
1604 The variable @code{ediff-ignore-case} controls whether Ediff starts out by
1605 ignoring letter case or not. It can be set in @file{.emacs} using
1606 @code{setq-default}.
1607
1608 When case sensitivity is toggled, all difference
1609 regions are recomputed.
1610
1611 @node Highlighting Difference Regions, Narrowing, Selective Browsing, Customization
1612 @section Highlighting Difference Regions
1613
1614 The following variables control the way Ediff highlights difference
1615 regions:
1616
1617 @table @code
1618 @item ediff-before-flag-bol
1619 @itemx ediff-after-flag-eol
1620 @itemx ediff-before-flag-mol
1621 @itemx ediff-after-flag-mol
1622 @vindex ediff-before-flag-bol
1623 @vindex ediff-after-flag-eol
1624 @vindex ediff-before-flag-mol
1625 @vindex ediff-after-flag-mol
1626 These variables hold strings that Ediff uses to mark the beginning and the
1627 end of the differences found in files A, B, and C on devices where Emacs
1628 cannot display faces. Ediff uses different flags to highlight regions that
1629 begin/end at the beginning/end of a line or in a middle of a line.
1630
1631 @item ediff-current-diff-face-A
1632 @itemx ediff-current-diff-face-B
1633 @itemx ediff-current-diff-face-C
1634 @vindex ediff-current-diff-face-A
1635 @vindex ediff-current-diff-face-B
1636 @vindex ediff-current-diff-face-C
1637 Ediff uses these faces to highlight current differences on devices where
1638 Emacs can display faces. These and subsequently described faces can be set
1639 either in @file{.emacs} or in @file{.Xdefaults}. The X resource for Ediff
1640 is @samp{Ediff}, @emph{not} @samp{emacs}. Please refer to Emacs manual for
1641 the information on how to set X resources.
1642 @item ediff-fine-diff-face-A
1643 @itemx ediff-fine-diff-face-B
1644 @itemx ediff-fine-diff-face-C
1645 @vindex ediff-fine-diff-face-A
1646 @vindex ediff-fine-diff-face-B
1647 @vindex ediff-fine-diff-face-C
1648 Ediff uses these faces to show the fine differences between the current
1649 differences regions in buffers A, B, and C, respectively.
1650
1651 @item ediff-even-diff-face-A
1652 @itemx ediff-even-diff-face-B
1653 @itemx ediff-even-diff-face-C
1654 @itemx ediff-odd-diff-face-A
1655 @itemx ediff-odd-diff-face-B
1656 @itemx ediff-odd-diff-face-C
1657 @vindex ediff-even-diff-face-A
1658 @vindex ediff-even-diff-face-B
1659 @vindex ediff-even-diff-face-C
1660 @vindex ediff-odd-diff-face-A
1661 @vindex ediff-odd-diff-face-B
1662 @vindex ediff-odd-diff-face-C
1663 Non-current difference regions are displayed using these alternating
1664 faces. The odd and the even faces are actually identical on monochrome
1665 displays, because without colors options are limited.
1666 So, Ediff uses italics to highlight non-current differences.
1667
1668 @item ediff-force-faces
1669 @vindex ediff-force-faces
1670 Ediff generally can detect when Emacs is running on a device where it can
1671 use highlighting with faces. However, if it fails to determine that faces
1672 can be used, the user can set this variable to @code{t} to make sure that
1673 Ediff uses faces to highlight differences.
1674
1675 @item ediff-highlight-all-diffs
1676 @vindex ediff-highlight-all-diffs
1677 Indicates whether---on a windowing display---Ediff should highlight
1678 differences using inserted strings (as on text-only terminals) or using
1679 colors and highlighting. Normally, Ediff highlights all differences, but
1680 the selected difference is highlighted more visibly. One can cycle through
1681 various modes of highlighting by typing @kbd{h}. By default, Ediff starts
1682 in the mode where all difference regions are highlighted. If you prefer to
1683 start in the mode where unselected differences are not highlighted, you
1684 should set @code{ediff-highlight-all-diffs} to @code{nil}. Type @kbd{h} to
1685 restore highlighting for all differences.
1686
1687 Ediff lets you switch between the two modes of highlighting. That is,
1688 you can switch interactively from highlighting using faces to
1689 highlighting using string flags, and back. Of course, switching has
1690 effect only under a windowing system. On a text-only terminal or in an
1691 xterm window, the only available option is highlighting with strings.
1692 @end table
1693
1694 @noindent
1695 If you want to change the default settings for @code{ediff-force-faces} and
1696 @code{ediff-highlight-all-diffs}, you must do it @strong{before} Ediff is
1697 loaded.
1698
1699 You can also change the defaults for the faces used to highlight the
1700 difference regions. There are two ways to do this. The simplest and the
1701 preferred way is to use the customization widget accessible from the
1702 menubar. Ediff's customization group is located under "Tools", which in
1703 turn is under "Programming". The faces that are used to highlight
1704 difference regions are located in the "Highlighting" subgroup of the Ediff
1705 customization group.
1706
1707 The second, much more arcane, method to change default faces is to include
1708 some Lisp code in @file{~/.emacs}. For instance,
1709
1710 @example
1711 (setq ediff-current-diff-face-A
1712 (copy-face 'bold-italic 'ediff-current-diff-face-A))
1713 @end example
1714
1715 @noindent
1716 would use the pre-defined face @code{bold-italic} to highlight the current
1717 difference region in buffer A (this face is not a good choice, by the way).
1718
1719 If you are unhappy with just @emph{some} of the aspects of the default
1720 faces, you can modify them when Ediff is being loaded using
1721 @code{ediff-load-hook}. For instance:
1722
1723 @smallexample
1724 (add-hook 'ediff-load-hook
1725 (lambda ()
1726 (set-face-foreground
1727 ediff-current-diff-face-B "blue")
1728 (set-face-background
1729 ediff-current-diff-face-B "red")
1730 (make-face-italic
1731 ediff-current-diff-face-B)))
1732 @end smallexample
1733
1734 @strong{Please note:} to set Ediff's faces, use only @code{copy-face}
1735 or @code{set/make-face-@dots{}} as shown above. Emacs's low-level
1736 face-manipulation functions should be avoided.
1737
1738 @node Narrowing, Refinement of Difference Regions, Highlighting Difference Regions, Customization
1739 @section Narrowing
1740
1741 If buffers being compared are narrowed at the time of invocation of
1742 Ediff, @code{ediff-buffers} will preserve the narrowing range. However,
1743 if @code{ediff-files} is invoked on the files visited by these buffers,
1744 that would widen the buffers, since this command is defined to compare the
1745 entire files.
1746
1747 Calling @code{ediff-regions-linewise} or @code{ediff-windows-linewise}, or
1748 the corresponding @samp{-wordwise} commands, narrows the variants to the
1749 particular regions being compared. The original accessible ranges are
1750 restored when you quit Ediff. During the command, you can toggle this
1751 narrowing on and off with the @kbd{%} command.
1752
1753 These two variables control this narrowing behavior:
1754
1755 @table @code
1756 @item ediff-start-narrowed
1757 @vindex ediff-start-narrowed
1758 If @code{t}, Ediff narrows the display to the appropriate range when it
1759 is invoked with an @samp{ediff-regions@dots{}} or
1760 @samp{ediff-windows@dots{}} command. If @code{nil}, these commands do
1761 not automatically narrow, but you can still toggle narrowing on and off
1762 by typing @kbd{%}.
1763
1764 @item ediff-quit-widened
1765 @vindex ediff-quit-widened
1766 Controls whether on quitting Ediff should restore the accessible range
1767 that existed before the current invocation.
1768 @end table
1769
1770 @node Refinement of Difference Regions, Patch and Diff Programs, Narrowing, Customization
1771 @section Refinement of Difference Regions
1772
1773 Ediff has variables to control the way fine differences are
1774 highlighted. This feature gives you control over the process of refinement.
1775 Note that refinement ignores spaces, tabs, and newlines.
1776
1777 @table @code
1778 @item ediff-auto-refine
1779 @vindex ediff-auto-refine
1780 This variable controls whether fine differences within regions are
1781 highlighted automatically (``auto-refining''). The default is yes
1782 (@samp{on}).
1783
1784 On a slow machine, automatic refinement may be painful. In that case,
1785 you can turn auto-refining on or off interactively by typing
1786 @kbd{@@}. You can also turn off display of refining that has
1787 already been done.
1788
1789 When auto-refining is off, fine differences are shown only for regions
1790 for which these differences have been computed and saved before. If
1791 auto-refining and display of refining are both turned off, fine
1792 differences are not shown at all.
1793
1794 Typing @kbd{*} computes and displays fine differences for the current
1795 difference region, regardless of whether auto-refining is turned on.
1796
1797 @item ediff-auto-refine-limit
1798 @vindex ediff-auto-refine-limit
1799 If auto-refining is on, this variable limits the size of the regions to
1800 be auto-refined. This guards against the possible slowdown that may be
1801 caused by extraordinary large difference regions.
1802
1803 You can always refine the current region by typing @kbd{*}.
1804
1805 @item ediff-forward-word-function
1806 @vindex ediff-forward-word-function
1807 This variable controls how fine differences are computed. The
1808 value must be a Lisp function that determines how the current difference
1809 region should be split into words.
1810
1811 @vindex ediff-diff-program
1812 @vindex ediff-forward-word-function
1813 @findex ediff-forward-word
1814 Fine differences are computed by first splitting the current difference
1815 region into words and then passing the result to
1816 @code{ediff-diff-program}. For the default forward word function (which is
1817 @code{ediff-forward-word}), a word is a string consisting of letters,
1818 @samp{-}, or @samp{_}; a string of punctuation symbols; a string of digits,
1819 or a string consisting of symbols that are neither space, nor a letter.
1820
1821 This default behavior is controlled by four variables: @code{ediff-word-1},
1822 ..., @code{ediff-word-4}. See the on-line documentation for these variables
1823 and for the function @code{ediff-forward-word} for an explanation of how to
1824 modify these variables.
1825 @vindex ediff-word-1
1826 @vindex ediff-word-2
1827 @vindex ediff-word-3
1828 @vindex ediff-word-4
1829 @end table
1830
1831 Sometimes, when a region has too many differences between the variants,
1832 highlighting of fine differences is inconvenient, especially on
1833 color displays. If that is the case, type @kbd{*} with a negative
1834 prefix argument. This unhighlights fine differences for the current
1835 region.
1836
1837 To unhighlight fine differences in all difference regions, use the
1838 command @kbd{@@}. Repeated typing of this key cycles through three
1839 different states: auto-refining, no-auto-refining, and no-highlighting
1840 of fine differences.
1841
1842 @node Patch and Diff Programs, Merging and diff3, Refinement of Difference Regions, Customization
1843 @section Patch and Diff Programs
1844
1845 This section describes variables that specify the programs to be used for
1846 applying patches and for computing the main difference regions (not the
1847 fine difference regions):
1848
1849 @table @code
1850 @item ediff-diff-program
1851 @itemx ediff-diff3-program
1852 @vindex ediff-patch-program
1853 @vindex ediff-diff-program
1854 @vindex ediff-diff3-program
1855 These variables specify the programs to use to produce differences
1856 and do patching.
1857
1858 @item ediff-diff-options
1859 @itemx ediff-diff3-options
1860 @vindex ediff-patch-options
1861 @vindex ediff-diff-options
1862 @vindex ediff-diff3-options
1863 These variables specify the options to pass to the above utilities.
1864
1865 In @code{ediff-diff-options}, it may be useful to specify options
1866 such as @samp{-w} that ignore certain kinds of changes. However,
1867 Ediff does not let you use the option @samp{-c}, as it doesn't recognize this
1868 format yet.
1869
1870 @item ediff-coding-system-for-read
1871 @vindex ediff-coding-system-for-read
1872 This variable specifies the coding system to use when reading the output
1873 that the programs @code{diff3} and @code{diff} send to Emacs. The default
1874 is @code{raw-text}, and this should work fine in Unix and in most
1875 cases under Windows NT/95/98/2000. There are @code{diff} programs
1876 for which the default option doesn't work under Windows. In such cases,
1877 @code{raw-text-dos} might work. If not, you will have to experiment with
1878 other coding systems or use GNU diff.
1879
1880 @item ediff-patch-program
1881 The program to use to apply patches. Since there are certain
1882 incompatibilities between the different versions of the patch program, the
1883 best way to stay out of trouble is to use a GNU-compatible version.
1884 Otherwise, you may have to tune the values of the variables
1885 @code{ediff-patch-options}, @code{ediff-backup-specs}, and
1886 @code{ediff-backup-extension} as described below.
1887 @item ediff-patch-options
1888 Options to pass to @code{ediff-patch-program}.
1889
1890 Note: the `-b' and `-z' options should be specified in
1891 `ediff-backup-specs', not in @code{ediff-patch-options}.
1892
1893 It is recommended to pass the `-f' option to the patch program, so it won't
1894 ask questions. However, some implementations don't accept this option, in
1895 which case the default value of this variable should be changed.
1896
1897 @item ediff-backup-extension
1898 Backup extension used by the patch program. Must be specified, even if
1899 @code{ediff-backup-specs} is given.
1900 @item ediff-backup-specs
1901 Backup directives to pass to the patch program.
1902 Ediff requires that the old version of the file (before applying the patch)
1903 is saved in a file named @file{the-patch-file.extension}. Usually
1904 `extension' is `.orig', but this can be changed by the user, and may also be
1905 system-dependent. Therefore, Ediff needs to know the backup extension used
1906 by the patch program.
1907
1908 Some versions of the patch program let the user specify `-b backup-extension'.
1909 Other versions only permit `-b', which (usually) assumes the extension `.orig'.
1910 Yet others force you to use `-z<backup-extension>'.
1911
1912 Note that both `ediff-backup-extension' and `ediff-backup-specs' must be
1913 properly set. If your patch program takes the option `-b', but not
1914 `-b extension', the variable `ediff-backup-extension' must still
1915 be set so Ediff will know which extension to use.
1916
1917 @item ediff-custom-diff-program
1918 @itemx ediff-custom-diff-options
1919 @vindex ediff-custom-diff-program
1920 @vindex ediff-custom-diff-options
1921 @findex ediff-save-buffer
1922 Because Ediff limits the options you may want to pass to the @code{diff}
1923 program, it partially makes up for this drawback by letting you save the
1924 output from @code{diff} in your preferred format, which is specified via
1925 the above two variables.
1926
1927 The output generated by @code{ediff-custom-diff-program} (which doesn't
1928 even have to be a standard-style @code{diff}!)@: is not used by Ediff. It is
1929 provided exclusively so that you can
1930 refer to
1931 it later, send it over email, etc. For instance, after reviewing the
1932 differences, you may want to send context differences to a colleague.
1933 Since Ediff ignores the @samp{-c} option in
1934 @code{ediff-diff-program}, you would have to run @code{diff -c} separately
1935 just to produce the list of differences. Fortunately,
1936 @code{ediff-custom-diff-program} and @code{ediff-custom-diff-options}
1937 eliminate this nuisance by keeping a copy of a difference list in the
1938 desired format in a buffer that can be displayed via the command @kbd{D}.
1939
1940 @item ediff-patch-default-directory
1941 @vindex ediff-patch-default-directory
1942 Specifies the default directory to look for patches.
1943
1944 @end table
1945
1946 @noindent
1947 @strong{Warning:} Ediff does not support the output format of VMS
1948 @code{diff}. Instead, make sure you are using some implementation of POSIX
1949 @code{diff}, such as @code{gnudiff}.
1950
1951 @node Merging and diff3, Support for Version Control, Patch and Diff Programs, Customization
1952 @section Merging and diff3
1953
1954 Ediff supports three-way comparison via the functions @code{ediff-files3} and
1955 @code{ediff-buffers3}. The interface is the same as for two-way comparison.
1956 In three-way comparison and merging, Ediff reports if any two difference
1957 regions are identical. For instance, if the current region in buffer A
1958 is the same as the region in buffer C, then the mode line of buffer A will
1959 display @samp{[=diff(C)]} and the mode line of buffer C will display
1960 @samp{[=diff(A)]}.
1961
1962 Merging is done according to the following algorithm.
1963
1964 If a difference region in one of the buffers, say B, differs from the ancestor
1965 file while the region in the other buffer, A, doesn't, then the merge buffer,
1966 C, gets B's region. Similarly when buffer A's region differs from
1967 the ancestor and B's doesn't, A's region is used.
1968
1969 @vindex ediff-default-variant
1970 If both regions in buffers A and B differ from the ancestor file, Ediff
1971 chooses the region according to the value of the variable
1972 @code{ediff-default-variant}. If its value is @code{default-A} then A's
1973 region is chosen. If it is @code{default-B} then B's region is chosen.
1974 If it is @code{combined} then the region in buffer C will look like
1975 this:
1976
1977 @comment Use @set to avoid triggering merge conflict detectors like CVS.
1978 @set seven-left <<<<<<<
1979 @set seven-right >>>>>>>
1980 @example
1981 @value{seven-left} variant A
1982 the difference region from buffer A
1983 @value{seven-right} variant B
1984 the difference region from buffer B
1985 ####### Ancestor
1986 the difference region from the ancestor buffer, if available
1987 ======= end
1988 @end example
1989
1990 The above is the default template for the combined region. The user can
1991 customize this template using the variable
1992 @code{ediff-combination-pattern}.
1993
1994 @vindex ediff-combination-pattern
1995 The variable @code{ediff-combination-pattern} specifies the template that
1996 determines how the combined merged region looks like. The template is
1997 represented as a list of the form @code{(STRING1 Symbol1 STRING2 Symbol2
1998 STRING3 Symbol3 STRING4)}. The symbols here must be atoms of the form
1999 @code{A}, @code{B}, or @code{Ancestor}. They determine the order in which
2000 the corresponding difference regions (from buffers A, B, and the ancestor
2001 buffer) are displayed in the merged region of buffer C@. The strings in the
2002 template determine the text that separates the aforesaid regions. The
2003 default template is
2004
2005 @smallexample
2006 ("@value{seven-left} variant A" A "@value{seven-right} variant B" B
2007 "####### Ancestor" Ancestor "======= end")
2008 @end smallexample
2009
2010 @noindent
2011 (this is one long line) and the corresponding combined region is shown
2012 above. The order in which the regions are shown (and the separator
2013 strings) can be changed by changing the above template. It is even
2014 possible to add or delete region specifiers in this template (although
2015 the only possibly useful such modification seems to be the deletion of
2016 the ancestor).
2017
2018 In addition to the state of the difference, Ediff displays the state of the
2019 merge for each region. If a difference came from buffer A by default
2020 (because both regions A and B were different from the ancestor and
2021 @code{ediff-default-variant} was set to @code{default-A}) then
2022 @samp{[=diff(A) default-A]} is displayed in the mode line. If the
2023 difference in buffer C came, say, from buffer B because the difference
2024 region in that buffer differs from the ancestor, but the region in buffer A
2025 does not (if merging with an ancestor) then @samp{[=diff(B) prefer-B]} is
2026 displayed. The indicators default-A/B and prefer-A/B are inspired by
2027 Emerge and have the same meaning.
2028
2029 Another indicator of the state of merge is @samp{combined}. It appears
2030 with any difference region in buffer C that was obtained by combining
2031 the difference regions in buffers A and B as explained above.
2032
2033 In addition to the state of merge and state of difference indicators, while
2034 merging with an ancestor file or buffer, Ediff informs the user when the
2035 current difference region in the (normally invisible) ancestor buffer is
2036 empty via the @emph{AncestorEmpty} indicator. This helps determine if the
2037 changes made to the original in variants A and B represent pure insertion
2038 or deletion of text: if the mode line shows @emph{AncestorEmpty} and the
2039 corresponding region in buffers A or B is not empty, this means that new
2040 text was inserted. If this indicator is not present and the difference
2041 regions in buffers A or B are non-empty, this means that text was
2042 modified. Otherwise, the original text was deleted.
2043
2044 Although the ancestor buffer is normally invisible, Ediff maintains
2045 difference regions there and advances the current difference region
2046 accordingly. All highlighting of difference regions is provided in the
2047 ancestor buffer, except for the fine differences. Therefore, if desired, the
2048 user can put the ancestor buffer in a separate frame and watch it
2049 there. However, on a TTY, only one frame can be visible at any given time,
2050 and Ediff doesn't support any single-frame window configuration where all
2051 buffers, including the ancestor buffer, would be visible. However, the
2052 ancestor buffer can be displayed by typing @kbd{/} to the control
2053 window. (Type @kbd{C-l} to hide it again.)
2054
2055 Note that the state-of-difference indicators @samp{=diff(A)} and
2056 @samp{=diff(B)} above are not redundant, even in the presence of a
2057 state-of-merge indicator. In fact, the two serve different purposes.
2058
2059 For instance, if the mode line displays @samp{=diff(B) prefer(B)} and
2060 you copy a difference region from buffer A to buffer C then
2061 @samp{=diff(B)} will change to @samp{diff-A} and the mode line will
2062 display @samp{=diff(A) prefer-B}. This indicates that the difference
2063 region in buffer C is identical to that in buffer A, but originally
2064 buffer C's region came from buffer B@. This is useful to know because
2065 you can recover the original difference region in buffer C by typing
2066 @kbd{r}.
2067
2068
2069 Ediff never changes the state-of-merge indicator, except in response to
2070 the @kbd{!} command (see below), in which case the indicator is lost.
2071 On the other hand, the state-of-difference indicator is changed
2072 automatically by the copying/recovery commands, @kbd{a}, @kbd{b}, @kbd{r},
2073 @kbd{+}.
2074
2075 The @kbd{!} command loses the information about origins of the regions
2076 in the merge buffer (default-A, prefer-B, or combined). This is because
2077 recomputing differences in this case means running @code{diff3} on
2078 buffers A, B, and the merge buffer, not on the ancestor buffer. (It
2079 makes no sense to recompute differences using the ancestor file, since
2080 in the merging mode Ediff assumes that you have not edited buffers A and
2081 B, but that you may have edited buffer C, and these changes are to be
2082 preserved.) Since some difference regions may disappear as a result of
2083 editing buffer C and others may arise, there is generally no simple way
2084 to tell where the various regions in the merge buffer came from.
2085
2086 In three-way comparison, Ediff tries to disregard regions that consist
2087 entirely of white space. For instance, if, say, the current region in
2088 buffer A consists of the white space only (or if it is empty), Ediff will
2089 not take it into account for the purpose of computing fine differences. The
2090 result is that Ediff can provide a better visual information regarding the
2091 actual fine differences in the non-white regions in buffers B and
2092 C@. Moreover, if the regions in buffers B and C differ in the white space
2093 only, then a message to this effect will be displayed.
2094
2095 @vindex ediff-merge-window-share
2096 In the merge mode, the share of the split between window C (the window
2097 displaying the merge-buffer) and the windows displaying buffers A and B
2098 is controlled by the variable @code{ediff-merge-window-share}. Its
2099 default value is 0.5. To make the merge-buffer window smaller, reduce
2100 this amount.
2101
2102 We don't recommend increasing the size of the merge-window to more than
2103 half the frame (i.e., to increase the value of
2104 @code{ediff-merge-window-share}) to more than 0.5, since it would be
2105 hard to see the contents of buffers A and B.
2106
2107 You can temporarily shrink the merge window to just one line by
2108 typing @kbd{s}. This change is temporary, until Ediff finds a reason to
2109 redraw the screen. Typing @kbd{s} again restores the original window size.
2110
2111 With a positive prefix argument, the @kbd{s} command will make the merge
2112 window slightly taller. This change is persistent. With `@kbd{-}' or
2113 with a negative prefix argument, the command @kbd{s} makes the merge
2114 window slightly shorter. This change also persistent.
2115
2116 @vindex ediff-show-clashes-only
2117 Ediff lets you automatically ignore the regions where only one of the
2118 buffers A and B disagrees with the ancestor. To do this, set the
2119 variable @code{ediff-show-clashes-only} to non-@code{nil}.
2120
2121 You can toggle this feature interactively by typing @kbd{$$}.
2122
2123 Note that this variable affects only the show next/previous difference
2124 commands. You can still jump directly to any difference region directly
2125 using the command @kbd{j} (with a prefix argument specifying the difference
2126 number).
2127
2128 @vindex ediff-autostore-merges
2129 @vindex ediff-quit-merge-hook
2130 @findex ediff-maybe-save-and-delete-merge
2131 The variable @code{ediff-autostore-merges} controls what happens to the
2132 merge buffer when Ediff quits. If the value is @code{nil}, nothing is done
2133 to the merge buffer---it will be the user's responsibility to save it.
2134 If the value is @code{t}, the user will be asked where to save the buffer
2135 and whether to delete it afterwards. It the value is neither @code{nil} nor
2136 @code{t}, the merge buffer is saved @emph{only} if this merge session was
2137 invoked from a group of related Ediff session, such as those that result
2138 from @code{ediff-merge-directories},
2139 @code{ediff-merge-directory-revisions}, etc.
2140 @xref{Session Groups}. This behavior is implemented in the function
2141 @code{ediff-maybe-save-and-delete-merge}, which is a hook in
2142 @code{ediff-quit-merge-hook}. The user can supply a different hook, if
2143 necessary.
2144
2145 The variable @code{ediff-autostore-merges} is buffer-local, so it can be
2146 set in a per-buffer manner. Therefore, use @code{setq-default} to globally
2147 change this variable.
2148
2149 @vindex ediff-merge-filename-prefix
2150 When merge buffers are saved automatically as directed by
2151 @code{ediff-autostore-merges}, Ediff attaches a prefix to each file, as
2152 specified by the variable @code{ediff-merge-filename-prefix}. The default
2153 is @code{merge_}, but this can be changed by the user.
2154
2155 @node Support for Version Control, Customizing the Mode Line, Merging and diff3, Customization
2156 @section Support for Version Control
2157
2158
2159 Ediff supports version control and lets you compare versions of files
2160 visited by Emacs buffers via the function @code{ediff-revision}. This
2161 feature is controlled by the following variables:
2162
2163 @table @code
2164 @item ediff-version-control-package
2165 @vindex ediff-version-control-package
2166 A symbol. The default is @samp{vc}.
2167
2168 If you are like most Emacs users, Ediff will use VC as the version control
2169 package. This is the standard Emacs interface to RCS, CVS, and SCCS.
2170
2171 However, if your needs are better served by other interfaces, you will
2172 have to tell Ediff which version control package you are using, e.g.,
2173 @example
2174 (setq ediff-version-control-package 'rcs)
2175 @end example
2176
2177 Apart from the standard @file{vc.el}, Ediff supports three other interfaces
2178 to version control: @file{rcs.el}, @file{pcl-cvs.el} (recently renamed
2179 pcvs.el), and @file{generic-sc.el}. The package @file{rcs.el} is written
2180 by Sebastian Kremer <sk@@thp.Uni-Koeln.DE> and is available as
2181 @example
2182 @file{ftp.cs.buffalo.edu:pub/Emacs/rcs.tar.Z}
2183 @file{ftp.uni-koeln.de:/pub/gnu/emacs/rcs.tar.Z}
2184 @end example
2185 @pindex @file{vc.el}
2186 @pindex @file{rcs.el}
2187 @pindex @file{pcl-cvs.el}
2188 @pindex @file{generic-sc.el}
2189 @end table
2190
2191 Ediff's interface to the above packages allows the user to compare the
2192 versions of the current buffer or to merge them (with or without an
2193 ancestor-version). These operations can also be performed on directories
2194 containing files under version control.
2195
2196 In case of @file{pcl-cvs.el}, Ediff can also be invoked via the function
2197 @code{run-ediff-from-cvs-buffer}---see the documentation string for this
2198 function.
2199
2200 @node Customizing the Mode Line, Miscellaneous, Support for Version Control, Customization
2201 @section Customizing the Mode Line
2202
2203 When Ediff is running, the mode line of @samp{Ediff Control Panel}
2204 buffer shows the current difference number and the total number of
2205 difference regions in the two files.
2206
2207 The mode line of the buffers being compared displays the type of the
2208 buffer (@samp{A:}, @samp{B:}, or @samp{C:}) and (usually) the file name.
2209 Ediff tries to be intelligent in choosing the mode line buffer
2210 identification. In particular, it works well with the
2211 @file{uniquify.el} and @file{mode-line.el} packages (which improve on
2212 the default way in which Emacs displays buffer identification). If you
2213 don't like the way Ediff changes the mode line, you can use
2214 @code{ediff-prepare-buffer-hook} to modify the mode line.
2215 @vindex ediff-prepare-buffer-hook
2216 @pindex @file{uniquify.el}
2217 @pindex @file{mode-line.el}
2218
2219 @node Miscellaneous, Notes on Heavy-duty Customization, Customizing the Mode Line, Customization
2220 @section Miscellaneous
2221
2222 Here are a few other variables for customizing Ediff:
2223
2224 @table @code
2225 @item ediff-split-window-function
2226 @vindex ediff-split-window-function
2227 Controls the way you want the window be split between file-A and file-B
2228 (and file-C, if applicable). It defaults to the vertical split
2229 (@code{split-window-vertically}, but you can set it to
2230 @code{split-window-horizontally}, if you so wish.
2231 Ediff also lets you switch from vertical to horizontal split and back
2232 interactively.
2233
2234 Note that if Ediff detects that all the buffers it compares are displayed in
2235 separate frames, it assumes that the user wants them to be so displayed
2236 and stops splitting windows. Instead, it arranges for each buffer to
2237 be displayed in a separate frame. You can switch to the one-frame mode
2238 by hiding one of the buffers A/B/C.
2239
2240 You can also swap the windows where buffers are displayed by typing
2241 @kbd{~}.
2242
2243 @item ediff-merge-split-window-function
2244 @vindex ediff-merge-split-window-function
2245 Controls how windows are
2246 split between buffers A and B in the merge mode.
2247 This variable is like @code{ediff-split-window-function}, but it defaults
2248 to @code{split-window-horizontally} instead of
2249 @code{split-window-vertically}.
2250
2251 @item ediff-make-wide-display-function
2252 @vindex ediff-make-wide-display-function
2253 The value is a function to be called to widen the frame for displaying
2254 the Ediff buffers. See the on-line documentation for
2255 @code{ediff-make-wide-display-function} for details. It is also
2256 recommended to look into the source of the default function
2257 @code{ediff-make-wide-display}.
2258
2259 You can toggle wide/regular display by typing @kbd{m}. In the wide
2260 display mode, buffers A, B (and C, when applicable) are displayed in a
2261 single frame that is as wide as the entire workstation screen. This is
2262 useful when files are compared side-by-side. By default, the display is
2263 widened without changing its height.
2264
2265 @item ediff-use-last-dir
2266 @vindex ediff-use-last-dir
2267 Controls the way Ediff presents the
2268 default directory when it prompts the user for files to compare. If
2269 @code{nil},
2270 Ediff uses the default directory of the current buffer when it
2271 prompts the user for file names. Otherwise, it will use the
2272 directories it had previously used for files A, B, or C, respectively.
2273
2274 @item ediff-no-emacs-help-in-control-buffer
2275 @vindex ediff-no-emacs-help-in-control-buffer
2276 If @code{t}, makes @kbd{C-h}
2277 behave like the @key{DEL} key, i.e., it will move you back to the previous
2278 difference rather than invoking help. This is useful when, in an xterm
2279 window or a text-only terminal, the Backspace key is bound to @kbd{C-h} and is
2280 positioned more conveniently than the @key{DEL} key.
2281
2282 @item ediff-toggle-read-only-function
2283 @vindex ediff-toggle-read-only-function
2284 This variable's value is a function that Ediff uses to toggle
2285 the read-only property in its buffers.
2286
2287 The default function that Ediff uses simply toggles the read-only property,
2288 unless the file is under version control. For a checked-in file under
2289 version control, Ediff first tries to check the file out.
2290
2291 @item ediff-make-buffers-readonly-at-startup nil
2292 @vindex ediff-make-buffers-readonly-at-startup
2293 If @code{t}, all variant buffers are made read-only at Ediff startup.
2294
2295 @item ediff-keep-variants
2296 @vindex @code{ediff-keep-variants}
2297 The default is @code{t}, meaning that the buffers being compared or merged will
2298 be preserved when Ediff quits. Setting this to @code{nil} causes Ediff to
2299 offer the user a chance to delete these buffers (if they are not modified).
2300 Supplying a prefix argument to the quit command (@code{q}) temporarily
2301 reverses the meaning of this variable. This is convenient when the user
2302 prefers one of the behaviors most of the time, but occasionally needs the
2303 other behavior.
2304
2305 However, Ediff temporarily resets this variable to @code{t} if it is
2306 invoked via one of the "buffer" jobs, such as @code{ediff-buffers}.
2307 This is because it is all too easy to lose a day's work otherwise.
2308 Besides, in a "buffer" job, the variant buffers have already been loaded
2309 prior to starting Ediff, so Ediff just preserves status quo here.
2310
2311 Using @code{ediff-cleanup-hook}, one can make Ediff delete the variants
2312 unconditionally (e.g., by making @code{ediff-janitor} into one of these hooks).
2313
2314 @item ediff-keep-tmp-versions
2315 @vindex @code{ediff-keep-tmp-versions}
2316 Default is @code{nil}. If @code{t}, the versions of the files being
2317 compared or merged using operations such as @code{ediff-revision} or
2318 @code{ediff-merge-revisions} are not deleted on exit. The normal action is
2319 to clean up and delete these version files.
2320
2321 @item ediff-grab-mouse
2322 @vindex @code{ediff-grab-mouse}
2323 Default is @code{t}. Normally, Ediff grabs mouse and puts it in its
2324 control frame. This is useful since the user can be sure that when he
2325 needs to type an Ediff command the focus will be in an appropriate Ediff's
2326 frame. However, some users prefer to move the mouse by themselves. The
2327 above variable, if set to @code{maybe}, will prevent Ediff from grabbing
2328 the mouse in many situations, usually after commands that may take more
2329 time than usual. In other situation, Ediff will continue grabbing the mouse
2330 and putting it where it believes is appropriate. If the value is
2331 @code{nil}, then mouse is entirely user's responsibility.
2332 Try different settings and see which one is for you.
2333 @end table
2334
2335
2336 @node Notes on Heavy-duty Customization, , Miscellaneous, Customization
2337 @section Notes on Heavy-duty Customization
2338
2339 Some users need to customize Ediff in rather sophisticated ways, which
2340 requires different defaults for different kinds of files (e.g., SGML,
2341 etc.). Ediff supports this kind of customization in several ways. First,
2342 most customization variables are buffer-local. Those that aren't are
2343 usually accessible from within Ediff Control Panel, so one can make them
2344 local to the panel by calling make-local-variable from within
2345 @code{ediff-startup-hook}.
2346
2347 Second, the function @code{ediff-setup} accepts an optional sixth
2348 argument which has the form @code{((@var{var-name-1} .@: @var{val-1})
2349 (@var{var-name-2} .@: @var{val-2}) @dots{})}. The function
2350 @code{ediff-setup} sets the variables in the list to the respective
2351 values, locally in the Ediff control buffer. This is an easy way to
2352 throw in custom variables (which usually should be buffer-local) that
2353 can then be tested in various hooks.
2354
2355 Make sure the variable @code{ediff-job-name} and @code{ediff-word-mode} are set
2356 properly in this case, as some things in Ediff depend on this.
2357
2358 Finally, if you want custom-tailored help messages, you can set the
2359 variables @code{ediff-brief-help-message-function} and
2360 @code{ediff-long-help-message-function}
2361 to functions that return help strings.
2362 @vindex ediff-startup-hook
2363 @findex ediff-setup
2364 @vindex ediff-job-name
2365 @vindex ediff-word-mode
2366 @vindex ediff-brief-help-message-function
2367 @vindex ediff-long-help-message-function
2368
2369 When customizing Ediff, some other variables are useful, although they are
2370 not user-definable. They are local to the Ediff control buffer, so this
2371 buffer must be current when you access these variables. The control buffer
2372 is accessible via the variable @code{ediff-control-buffer}, which is also
2373 local to that buffer. It is usually used for checking if the current buffer
2374 is also the control buffer.
2375
2376 Other variables of interest are:
2377 @table @code
2378 @item ediff-buffer-A
2379 The first of the data buffers being compared.
2380
2381 @item ediff-buffer-B
2382 The second of the data buffers being compared.
2383
2384 @item ediff-buffer-C
2385 In three-way comparisons, this is the third buffer being compared.
2386 In merging, this is the merge buffer.
2387 In two-way comparison, this variable is @code{nil}.
2388
2389 @item ediff-window-A
2390 The window displaying buffer A@. If buffer A is not visible, this variable
2391 is @code{nil} or it may be a dead window.
2392
2393 @item ediff-window-B
2394 The window displaying buffer B.
2395
2396 @item ediff-window-C
2397 The window displaying buffer C, if any.
2398
2399 @item ediff-control-frame
2400 A dedicated frame displaying the control buffer, if it exists. It is
2401 non-@code{nil} only if Ediff uses the multiframe display, i.e., when
2402 the control buffer is in its own frame.
2403 @end table
2404
2405 @node Credits, GNU Free Documentation License, Customization, Top
2406 @chapter Credits
2407
2408 Ediff was written by Michael Kifer <kifer@@cs.stonybrook.edu>. It was inspired
2409 by emerge.el written by Dale R. Worley <drw@@math.mit.edu>. An idea due to
2410 Boris Goldowsky <boris@@cs.rochester.edu> made it possible to highlight
2411 fine differences in Ediff buffers. Alastair Burt <burt@@dfki.uni-kl.de>
2412 ported Ediff to XEmacs, Eric Freudenthal <freudent@@jan.ultra.nyu.edu>
2413 made it work with VC, Marc Paquette <marcpa@@cam.org> wrote the
2414 toolbar support package for Ediff, and Hrvoje Niksic <hniksic@@xemacs.org>
2415 adapted it to the Emacs customization package.
2416
2417 Many people provided help with bug reports, feature suggestions, and advice.
2418 Without them, Ediff would not be nearly as useful as it is today.
2419 Here is a hopefully full list of contributors:
2420
2421 @example
2422 Adrian Aichner (aichner at ecf.teradyne.com),
2423 Drew Adams (drew.adams at oracle.com),
2424 Steve Baur (steve at xemacs.org),
2425 Neal Becker (neal at ctd.comsat.com),
2426 E. Jay Berkenbilt (ejb at ql.org),
2427 Lennart Borgman (ennart.borgman at gmail.com)
2428 Alastair Burt (burt at dfki.uni-kl.de),
2429 Paul Bibilo (peb at delcam.co.uk),
2430 Kevin Broadey (KevinB at bartley.demon.co.uk),
2431 Harald Boegeholz (hwb at machnix.mathematik.uni-stuttgart.de),
2432 Bradley A. Bosch (brad at lachman.com),
2433 Michael D. Carney (carney at ltx-tr.com),
2434 Jin S. Choi (jin at atype.com),
2435 Scott Cummings (cummings at adc.com),
2436 Albert Dvornik (bert at mit.edu),
2437 Eric Eide (eeide at asylum.cs.utah.edu),
2438 Paul Eggert (eggert at twinsun.com),
2439 Urban Engberg (ue at cci.dk),
2440 Kevin Esler (esler at ch.hp.com),
2441 Robert Estes (estes at ece.ucdavis.edu),
2442 Jay Finger (jayf at microsoft.com),
2443 Xavier Fornari (xavier at europe.cma.fr),
2444 Eric Freudenthal (freudent at jan.ultra.nyu.edu),
2445 Job Ganzevoort (Job.Ganzevoort at cwi.nl),
2446 Felix Heinrich Gatzemeier (felix.g at tzemeier.info),
2447 Boris Goldowsky (boris at cs.rochester.edu),
2448 Allan Gottlieb (gottlieb at allan.ultra.nyu.edu),
2449 Aaron Gross (aaron at bfr.co.il),
2450 Thorbjoern Hansen (thorbjoern.hansen at mchp.siemens.de),
2451 Marcus Harnisch (marcus_harnisch at mint-tech.com),
2452 Steven E. Harris (seh at panix.com),
2453 Aaron S. Hawley (Aaron.Hawley at uvm.edu),
2454 Xiaoli Huang (hxl at epic.com),
2455 Andreas Jaeger (aj at suse.de),
2456 Lars Magne Ingebrigtsen (larsi at ifi.uio.no),
2457 Larry Gouge (larry at itginc.com),
2458 Karl Heuer (kwzh at gnu.org),
2459 (irvine at lks.csi.com),
2460 (jaffe at chipmunk.cita.utoronto.ca),
2461 David Karr (dkarr at nmo.gtegsc.com),
2462 Norbert Kiesel (norbert at i3.informatik.rwth-aachen.de),
2463 Steffen Kilb (skilb at gmx.net),
2464 Leigh L Klotz (klotz at adoc.xerox.com),
2465 Fritz Knabe (Fritz.Knabe at ecrc.de),
2466 Heinz Knutzen (hk at informatik.uni-kiel.d400.de),
2467 Andrew Koenig (ark at research.att.com),
2468 Hannu Koivisto (azure at iki.fi),
2469 Ken Laprade (laprade at dw3f.ess.harris.com),
2470 Will C Lauer (wcl at cadre.com),
2471 Richard Levitte (levitte at e.kth.se),
2472 Mike Long (mike.long at analog.com),
2473 Dave Love (d.love at dl.ac.uk),
2474 Martin Maechler (maechler at stat.math.ethz.ch),
2475 Simon Marshall (simon at gnu.org),
2476 Paul C. Meuse (pmeuse at delcomsys.com),
2477 Richard Mlynarik (mly at adoc.xerox.com),
2478 Stefan Monnier (monnier at cs.yale.edu),
2479 Chris Murphy (murphycm at sun.aston.ac.uk),
2480 Erik Naggum (erik at naggum.no),
2481 Eyvind Ness (Eyvind.Ness at hrp.no),
2482 Ray Nickson (nickson at cs.uq.oz.au),
2483 Dan Nicolaescu (dann at ics.uci.edu),
2484 David Petchey (petchey_david at jpmorgan.com),
2485 Benjamin Pierce (benjamin.pierce at cl.cam.ac.uk),
2486 Francois Pinard (pinard at iro.umontreal.ca),
2487 Tibor Polgar (tlp00 at spg.amdahl.com),
2488 David Prince (dave0d at fegs.co.uk),
2489 Paul Raines (raines at slac.stanford.edu),
2490 Stefan Reicher (xsteve at riic.at),
2491 Charles Rich (rich at merl.com),
2492 Bill Richter (richter at math.nwu.edu),
2493 C.S. Roberson (roberson at aur.alcatel.com),
2494 Kevin Rodgers (kevin.rodgers at ihs.com),
2495 Sandy Rutherford (sandy at ibm550.sissa.it),
2496 Heribert Schuetz (schuetz at ecrc.de),
2497 Andy Scott (ascott at pcocd2.intel.com),
2498 Axel Seibert (axel at tumbolia.ppp.informatik.uni-muenchen.de),
2499 Vin Shelton (acs at xemacs.org),
2500 Scott O. Sherman (Scott.Sherman at mci.com),
2501 Nikolaj Schumacher (n_schumacher at web.de),
2502 Richard Stallman (rms at gnu.org),
2503 Richard Stanton (stanton at haas.berkeley.edu),
2504 Sam Steingold (sds at goems.com),
2505 Ake Stenhoff (etxaksf at aom.ericsson.se),
2506 Stig (stig at hackvan.com),
2507 Peter Stout (Peter_Stout at cs.cmu.edu),
2508 Chuck Thompson (cthomp at cs.uiuc.edu),
2509 Ray Tomlinson (tomlinso at bbn.com),
2510 Raymond Toy (toy at rtp.ericsson.se),
2511 Stephen J. Turnbull (stephen at xemacs.org),
2512 Jan Vroonhof (vroonhof at math.ethz.ch),
2513 Colin Walters (walters at cis.ohio-state.edu),
2514 Philippe Waroquiers (philippe.waroquiers at eurocontrol.be),
2515 Klaus Weber (gizmo at zork.north.de),
2516 Ben Wing (ben at xemacs.org),
2517 Tom Wurgler (twurgler at goodyear.com),
2518 Steve Youngs (youngs at xemacs.org),
2519 Ilya Zakharevich (ilya at math.ohio-state.edu),
2520 Eli Zaretskii (eliz at is.elta.co.il)
2521 @end example
2522
2523 @node GNU Free Documentation License, Index, Credits, Top
2524 @appendix GNU Free Documentation License
2525 @include doclicense.texi
2526
2527
2528 @node Index, , GNU Free Documentation License, Top
2529 @unnumbered Index
2530 @printindex cp
2531
2532 @bye