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