ediff.texi 105 KB

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