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