Major rewrite to behave more like a minor mode.
[bpt/emacs.git] / lisp / ediff.el
index 04934bb..88bc230 100644 (file)
@@ -3,8 +3,8 @@
 
 ;; Author: Michael Kifer <kifer@cs.sunysb.edu>
 ;; Created: February 2, 1994
-;; Version: 1.52
-;; Keywords: tools
+;; Version: 1.65c
+;; Keywords: comparing, merging, patching, version control.
 
 ;; This file is part of GNU Emacs.
 
@@ -29,7 +29,7 @@
 ;; Never read those diff outputs again!
 ;; Apply patch selectively, like a pro!
 
-;; This package provides a convenient way of simultaneous brousing through
+;; This package provides a convenient way of simultaneous browsing through
 ;; the differences between a pair of files or buffers.  The two files being
 ;; compared (file-A and file-B) are shown in separate windows (side by
 ;; side, one above the another, or in separate frames), and the differences
@@ -38,7 +38,7 @@
 ;; change your mind).
 
 ;; In addition, Ediff can apply a patch to a file and then let you step
-;; though both files, the patched and the original one, simultateously,
+;; though both files, the patched and the original one, simultaneously,
 ;; difference-by-difference.  You can even apply a patch right out of a
 ;; mail buffer, i.e., patches received by mail don't even have to be saved.
 ;; Since Ediff lets you copy differences between buffers, you can, in
 ;;  the previous Ediff sessions. Different sessions may even operate on the
 ;;  same pair of files.  So, in principle, it is possible to do, say,
 ;;  pairwise comparison of three (or more) different files.  Each session
-;;  would have its own *ediff-control* buffer and all the regarding a
-;;  particular session is local to the associated *ediff-control* buffer.
+;;  would have its own Ediff Control Panel and all the regarding a
+;;  particular session is local to the associated control panel buffer.
 ;;  You can switch between sessions by suspending one session and then
-;;  switching to another *ediff-control* buffer. (Different such buffers
-;;  are distinguished by a numerical suffix, e.g., *ediff-control*<3>.)
-;;  This, if you would like to compare three files pairwise, you can do
+;;  switching to another control panel. (Different control panel buffers
+;;  are distinguished by a numerical suffix, e.g., Ediff Control Panel<3>.)
+;;  Thus, if you would like to compare three files pairwise, you can do
 ;;  this by preparing three different frames, each with its own control
 ;;  window.  (This would require a very wide screen, and I never claimed
 ;;  that such 3-way comparison is very easy to do.)
 ;; flags from an Ediff buffer is to hit `h' and thus switch to highlighting
 ;; with faces (unhighlighting on a dumb terminal).
 
+;;;  Remote and Compressed Files
+;;   ---------------------------
+
+;;  Ediff will work with remote files, compressed files, and, probably,
+;;  with encrypted files. (I have only tested it with ange-ftp.el,
+;;  jka-compr.el, and uncompress.el.) This means that you can compare files
+;;  residing on another machine, or you can apply a patch to a file on
+;;  another machine (even the patch itself can be a remote file!). This is
+;;  provided that you access remote files via the usual find-file command
+;;  using the syntax acceptable to ange-ftp (see Emacs Manual).
+;;
+;;  The files to be compared or patched can be compressed or be both
+;;  compressed and remote. To be able to handle compressed files, you
+;;  should use uncompress.el or jka-compr.el. Ediff is designed so that it
+;;  will interface to these packages. When patching compressed or remote
+;;  files, Ediff doesn't rename the source file into source-file-name.orig
+;;  (unlike what `patch' would usually do). Instead, the source file
+;;  retains its name and the result of applying the patch is placed in a
+;;  temporary file that has the suffix `.patched'.  Generally, this applies
+;;  to files that are handled using black magic, such as special file
+;;  handlers (ange-ftp and some compression and encryption packages all
+;;  use this method).
+;;
+;;  Regular files are treated by `patch' in the usual manner, i.e., the
+;;  original is renamed into source-name.orig and the result of the patch
+;;  is placed into the file source-name.
+
 
 ;;; Remarks: 
 ;;  -------
 ;;  1. Ediff is heavily dependent on the new features of Emacs 19.
 ;;     It won't run under Emacs 18 at all.
 ;;  2. If running Lucid Emacs, Ediff requires at least version 19.9.
-;;  3. The function vc-ediff requires the vc.el version that comes with
-;;     Emacs 19.22.
+;;  3. The function vc-ediff requires the version of vc.el that comes with
+;;     Emacs 19.22 and later.
 
 
 ;;; Installation and use:
 ;; You can invoke Ediff interactively using the following functions:
 ;;
 ;;         ediff-buffers                        - compare buffers
-;;         ediff   (alias for ediff-files)
+;;         ediff                                - alias for ediff-files)
 ;;         ediff-files                          - compare files
 ;;         ediff-patch-file                     - patch file then compare
 ;;         epatch                               - alias for ediff-patch-file
 ;;                                                is not part of the
 ;;                                                standard Emacs distribution.
 ;;
-;; There is also the function ediff-files-remote, which can be invoked only
-;; from within another Emacs Lisp function, i.e., non-interactively.
 ;;
 ;; To use Ediff, put this in your .emacs file:
 ;;
 ;; ediff-quit-hooks can be used to save and then restore whatever window
 ;; configuration you want.  However, make sure you understand what you are
 ;; doing.  Many variables that drive Ediff are local to the different
-;; *ediff-control* buffers.  Take a look at ediff-default-suspend-hook and
+;; Ediff Control Panel buffers.  Take a look at ediff-default-suspend-hook and
 ;; ediff-default-quit-hook to see what's involved.
 ;; The hooks in ediff-prepare-buffer-hooks are executed for each Ediff buffer
 ;; (A and B) right after these buffers are arranged.
 ;;
-;; Highlighting of difference regions
-;; ----------------------------------
+;;
+;; Selective browsing: Control over stepping through difference regions
+;; ----------------------------------------------- 
+;;
+;; Sometimes it is convenient to be able to step through only some
+;; difference regions, those that satisfy certain conditions and to ignore
+;; all others. The commands `#f' and `#h' let the user specify regular
+;; expressions to control the way Ediff skips to the next or previous
+;; difference. Typing `#f' lets one specify a pair of regular expressions,
+;; regexp-A and regexp-B.
+;; Ediff will then start stepping only through those difference regions where
+;; the region in buffer A matches regexp-A and the region in buffer B
+;; matches regexp-B.
+;; Similarly, using `#h', one specifies expressions that match difference
+;; regions to be ignored while stepping through the differences. That is, if
+;; the buf A part matches regexp-A and the buf B part matches regexp B then
+;; the region will be ignored by ediff-next-difference and
+;; ediff-previous-difference commands.
+;;
+;;  Hitting `#f' and `#h' toggles this feature on/off.
+;;
+;; Note that selective browsing affects only ediff-next-difference and
+;; ediff-previous-difference, i.e., the commands invoked by typing n/SPC
+;; and p/DEL. You can still jump directly (using `j' or `ga/gb') to any
+;; numbered  difference. Also, it should be understood, that #f and #h do
+;; not change the position of the point in the buffers. The effect of these
+;; commands is seen only when the user types `n' or `p', i.e., when
+;; Ediff is told to jump to the next or previous difference.
+;;
+;; Users can supply their own functions that specify how Ediff should do
+;; selective browsing. To change the default Ediff function, add a function to
+;; ediff-load-hooks which will do the following assignments:
+;;
+;;     (fset ediff-hide-regexp-matches 'your-hide-function) 
+;;     (fset ediff-focus-on-regexp-matches 'your-focus-function)
+;;
+;; Useful hints: To specify a regexp that matches everything, don't simply
+;; type RET in response to a prompt. Typing RET tells Ediff to accept the
+;; default value, which may not be what you want. Instead, one should enter
+;; something like `^' or `$' --- which would match every line. 
+;;
+;; If the user doesn't remember if selective browsing is in effect and
+;; which regexps are being used, the status command, `i', will supply
+;; the requisite information.
+;;
+;; In addition to the ability to ignore regions that match regular
+;; expressions, Ediff can be ordered to start skipping over certain
+;; `inessential' regions. This is controlled by the variable
+;;
+;;      ediff-ignore-similar-regions
+;;
+;; which, if set to t, will cause Ediff to skip over difference regions
+;; that has been found similar, i.e., where the only differences are those
+;; in the white space and newlines.
+;;
+;; Note: In order for this feature to work, auto-refining of difference
+;; regions must be on, since otherwise Ediff won't know if there are no
+;; fine differences between regions. Under X, auto-refining is a default,
+;; but it is nixed on a dumb terminal or in an Xterm window. Therefore, in
+;; a non-windowing environment, the user must explicitly turn
+;; auto-refining on (e.g., by typing `@').
+;;
+;; CAUTION: If many inessential regions appear in a row, Ediff may take a
+;; long time to jump to the next region because it has to compute fine
+;; differences of all intermediate regions.
+;;
+;;
+;; Highlighting difference regions
+;; -------------------------------
 ;; The second group of Ediff variables that could be changed, if you so
 ;; wish, is: 
 ;;
 ;; faces: ediff-even/odd-diff-face-A/B.   The odd and the even
 ;; faces are actually identical on monochrome displays, because it is
 ;; rather poor in what you can do on such a display. So, I chose to use
-;; italics to highlight other differences. Any ideas would be welcome. (In
-;; Lucid Emacs, the faces are different because it supports pixmaps.)
+;; italics to highlight other differences. Any ideas would be welcome.
 ;; There are two ways to change the default setting for highlighting faces:
 ;; either change the variables, as in
 ;;
-;; (setq ediff-current-diff-face-A (internal-get-face 'bold-italic))
+;; (setq ediff-current-diff-face-A 'bold-italic)
+;;
+;; or
+;;
+;; (setq ediff-current-diff-face-A
+;;      (copy-face 'bold-italic 'ediff-current-diff-face-A))
 ;;
-;; (`internal-get-face' should be `get-face' if you are using Lucid Emacs)
 ;; or by selectively modifying the defaults:
 ;;
 ;; (add-hook 'ediff-load-hooks
 ;; You may also want to take a look at how the above faces are defined in
 ;; Ediff. 
 ;;
+;; Note: it is not recommended to use `internal-get-face' (or `get-face' in
+;;      Lucid) when defining faces for Ediff, since this may cause
+;;      problems when there are several frames with different font sizes.
+;;       Instead, use copy-face or set/make-face-* as shown above.
+;;
 ;; The last group of variables in this group,
 ;;
 ;;         ediff-want-faces
 ;;
 ;; Refining difference regions
 ;; ---------------------------
-;; There are also variables that control the way fine differences are
-;; highlighted. This feature lets the user highlight the exact words that
+;; Ediff has variables that control the way fine differences are
+;; highlighted. This feature lets the user highlight the exact words that 
 ;; make the difference regions in buffer A and B different. This process
 ;; ignores spaces, tabs, and newlines.
 ;;
 ;;
 ;;         ediff-fine-diff-program
 ;;         ediff-fine-diff-options
-;;         ediff-wordify-function
+;;         ediff-forward-word-function
 ;;
 ;; These variables let the user control how fine differences are computed.
 ;; `ediff-fine-diff-program' is diff, by default. However, you can use
 ;; any function as long as it produces output consistent with diff.
-;; `ediff-wordify-function' is a lisp function that determines how the
+;; `ediff-forward-word-function' is a lisp function that determines how the
 ;; current difference region is split into words. (Fine diferences are
 ;; computed by first splitting the current difference region into words and
 ;; then passing this along to `ediff-fine-diff-program'. For the default
-;; wordify function, `ediff-wordify', a word is a string consisting of
+;; wordify function, `ediff-forward-word', a word is a string consisting of
 ;; letters, `-', or `_', or a string consisting of symbols that are neither
 ;; space, nor a letter.)
 ;;
 ;; diff to ignore spaces and such. Use the option '-w' for that. Diff
 ;; has several other useful options (type 'man diff' to find out).
 ;;
-;; The output from diff is found in *ediff-diff* buffer.  However, this
-;; makes sense only if you also intend to use Ediff to browse through the
-;; diff'ed files before sending the patch.  This is because diff.el is much
-;; faster in yielding the output of diff  (Ediff is a big gun, if used
-;; for this simple purpose).
+;; The output from diff is found in *ediff-diff* buffer, which you can save.
+;; However, using Ediff for producing a diff output makes sense only if you
+;; also intend to use Ediff to browse through the diff'ed files before
+;; sending the patch.  This is because diff.el, which also comes with
+;; Emacs, is much faster in yielding the output of diff  (Ediff is a big
+;; gun, if used for this simple purpose).
+;;
+;; Mode line
+;; ---------
+;;
+;; When Ediff is running, the mode line of Ediff Control Panel buffer
+;; displays the current difference being displayed and the total number of
+;; difference regions in the two files. 
+;;
+;; The mode line of the buffers being compared displays the type of the
+;; buffer (`A:' or `B:') and (usually) the file name. Ediff is trying to be
+;; intelligent in choosing mode line buffer identification. In particular,
+;; it works well with uniquify.el and mode-line.el packages (which improve
+;; on the default way in which Emacs displays buffer identification).
+;; If you don't like the way Ediff identifies its buffers, there is always
+;; ediff-prepare-buffer-hooks, which can be used to modify the mode line.
 ;;
 ;; Miscellaneous
 ;; -------------
 ;;
 ;; The total number of differences and the current difference number are
 ;; always displayed in the mode line of the control window. 
+;;
+;; If, after making changes to buffers A and B, you decide to save them, it
+;; is recommended to use `ediff-save-buffer', which is bound to `wa' and
+;; `wb' (`wa will save buffer A and `wb' saves buffer B).
+;;
+;; Typing `wf' will also save the diff output in a file. 
 
 ;;; Display Modes
 ;;  -------------
 ;;
 ;;  1. file-A and file-B are in different frames (you have to put them into
 ;;     different frames manually); or
-;;  2. *ediff-control* buffer is visible in one frame and one other file (A
+;;  2. Ediff Control Panel is visible in one frame and one other file (A
 ;;     or B) is visible in another frame.  If, say, fileA is visible in a
-;;     different frame than *ediff-control*, fileB doesn't have to be
+;;     different frame than Ediff Control Panel, fileB doesn't have to be
 ;;     visible.  If it is, Ediff will continue displaying fileB in the frame
 ;;     where it was visible before.  If it isn't then Ediff will arrange for
-;;     fileB to share a frame with *ediff-control*.
+;;     fileB to share a frame with Ediff Control Panel.
 ;;
 ;;  If all three buffers are in separate frames, Ediff will switch to a
 ;;  3-frame mode.  If Ediff buffers are currently visible only in two
 ;;  frames, Ediff will work in a 2-frame mode.  In this mode, one of the
-;;  frames will be shared by *ediff-control* and file-A or file-B
+;;  frames will be shared by Ediff Control Panel and file-A or file-B
 ;;  (whichever is appropriate).
 
 
 ;;  2. Emacs 19.xx, where xx < 23, has several bugs related to overlays and
 ;;  faces. Somethimes, these may cause highlighting of the refinements or
 ;;  of the unselected differences to disappear. Hitting `!' will bring them
-;;  back.  In version 19.23, these problems no longer occur.
+;;  back.  In version 19.23 and later, these problems no longer occur.
 
 ;;  3. On a monochrome display, the repertoire of faces with which to
 ;;  highlight fine differences is limited. By default, Ediff is using
 
 ;;     Fixed buglet in vc-ediff (thanks to Ray Nickson <nickson@cs.uq.oz.au>).
 
+;; Wed May 18, 1994
+
+;;     Modified ediff-read-file-name to not put long file names in the
+;;     default prompt area, as suggested by KevinB@bartley.demon.co.uk.
+;;     Applied patch supplied by burt@dfki.uni-kl.de, fixing a problem with
+;;     ediff-diff-to-diff in Lemacs.
+
+;; Tue May 31, 1994
+
+;;     Added ediff-forward-word-function (as suggested by Job Ganzevoort
+;;     <Job.Ganzevoort@cwi.nl>). Modified ediff-default-quit-hook so it
+;;     will clean things up in a more satisfactory way.
+
+;; Thu Jun 2, 1994
+
+;;     Added `ediff-toggle-regexp-match', which allows the user to step
+;;     through only those difference regions that match some regexp; or,
+;;     vice versa, to skip over regions that match a regexp. (This feature
+;;     was suggested by Andy Scott <ascott@pcocd2.intel.com>.)
+;;     Added ediff-eval-in-buffer, which is a modified emerge-eval-in-buffer.
+;;     The function ediff-status-info, bound to `i', now replaces and extends
+;;     ediff-file-names and ediff-line-numbers, which were bound to `f'
+;;     and `i', respectively.
+
+;; Wed Jun 8, 1994
+
+;;     Made `ediff-frame-has-menubar' into a function; copied
+;;     `emerge-defvar-local' and turned it into `ediff-defvar-local' 
+;;     This is supposed to make the same ediff.elc file work for both Emacs
+;;     and Lucid Emacs, at least, if compiled under Lucid Emacs. (Thanks
+;;     to Eric Eide <eeide@asylum.cs.utah.edu>.)
+
+;; Wed Jun 10, 1994
+
+;;     Improved `ediff-read-file-name' and `ediff-buffers' so they are now
+;;     providing more intuitive defaults. Modified `ediff-read-file-name'
+;;     so it won't cause problems under OS/2.
+
+;; Fri Jun 24, 1994
+
+;;     Modified ediff-find-file, ediff-files-internal, and made
+;;     emerge-verify-file-buffer into ediff-verify-file-buffer so that
+;;     Ediff will work correctly with remote and compressed
+;;     files. (Suggested by Sandy Rutherford <sandy@ibm550.sissa.it>.)
+
+;; Fri Jun 28, 1994
+
+;;     Fixed ediff-patch-files to work with remote and compressed files.
+
+;; Wed July 20, 1994
+
+;;     Changed menu bar items per RMS's suggestion. Changed odd/even faces
+;;     in Lemacs to italic.  Changed ediff-*-face-* variables so that they
+;;     will contain names of faces instead of the face internal
+;;     representation.  (Copy-face works better with face names than with
+;;     face internal representation.  With face internal representation, if
+;;     a face vector mentions a font explicitly, copy-face may attempt to
+;;     copy this font, which would cause an error if the font has a wrong
+;;     size for one of the existing frames.)  Improved the way
+;;     mode-line-buffer-identification is set in ediff-setup so that Ediff
+;;     will accommodate the way buffers are identified in mode-line.el and
+;;     uniquify.el.
+
+;; Fri August 5, 1994
+
+;;     Ediff can now automatically skip over regions that differ only in
+;;     the white space and line breaks. This is controled with the variable
+;;     `ediff-ignore-similar-regions' and can be toggled on/off by typing
+;;     `##'.
+
+;; Mon August 8, 1994
+
+;;     If ediff-save-buffer is invoked with `wf', it'll save the diff
+;;     output in a file.
+
 
 ;;; Acknowledgements:
 
 ;; Special thanks to Alastair Burt <burt@dfki.uni-kl.de>, Kevin Esler
 ;; <esler@ch.hp.com>, Kevin Broadey <KevinB@bartley.demon.co.uk>, 
-;; Eric Freudenthal <freudent@jan.ultra.nyu.edu>, Job Ganzevoort
+;; Harald Boegeholz <hwb@machnix.mathematik.uni-stuttgart.de>,
+;; Robert Estes <estes@ece.ucdavis.edu>, Eric Eide <eeide@asylum.cs.utah.edu>,
+;; Eric Freudenthal  <freudent@jan.ultra.nyu.edu>, Job Ganzevoort 
 ;; <Job.Ganzevoort@cwi.nl>, Boris Goldowsky <boris@cs.rochester.edu>,
 ;; Allan Gottlieb <gottlieb@allan.ultra.nyu.edu>, Xiaoli Huang
 ;; <hxl@epic.com>, irvine@lks.csi.com, jaffe@chipmunk.cita.utoronto.ca,
 ;; <norbert@i3.informatik.rwth-aachen.de>, Heinz Knutzen
 ;; <hk@informatik.uni-kiel.d400.de>, Martin Maechler
 ;; <maechler@stat.math.ethz.ch>, Richard Mlynarik <mly@adoc.xerox.com>,
-;; Ray Nickson <nickson@cs.uq.oz.au>, Andy Scott <ascott@pcocd2.intel.com>,
-;; Richard Stanton <stanton@haas.berkeley.edu>, for contributing ideas,
-;; patches and bug reports. 
+;; Ray Nickson <nickson@cs.uq.oz.au>, Sandy Rutherford
+;; <sandy@ibm550.sissa.it>,  Andy Scott <ascott@pcocd2.intel.com>,
+;; Richard Stallman <rms@gnu.ai.mit.edu>, Richard Stanton 
+;; <stanton@haas.berkeley.edu>, Peter Stout <Peter_Stout@cs.cmu.edu>
+;; for contributing ideas, patches, and bug reports. 
 ;;
 ;; Thanks also to many others who felt obliged to drop a thanks note.
 
 (defmacro ediff-get-difference (n)
   (` (aref ediff-difference-vector (, n))))
   
+;; tell if it has been previously found that the region doesn't
+;; contain diffs other than the white space and newlines
+;; The argument, N, is the diff region number used by Ediff to index the
+;; diff vector. It is 1 less than the number seen by the user.
+(defmacro ediff-no-fine-diffs (n)
+  (` (aref (ediff-get-difference n) 3)))
+  
 (defmacro ediff-get-diff-overlay-from-vector (vec buf-type)
   (` (aref (, vec)
           (cond ((eq (, buf-type) 'A) 0)
       
 (defmacro ediff-set-fine-diff-vector (n fine-vec)
   (` (aset (ediff-get-difference (, n)) 2 (, fine-vec))))
+
+;; if flag is t, puts a mark on diff region saying that 
+;; the differences are in white space only. If flag is nil,
+;; the region is marked as essential (i.e., differences are
+;; not just in the white space and newlines.)
+(defmacro ediff-mark-diff-as-space-only (n flag)
+  (` (aset (ediff-get-difference (, n)) 3 (, flag))))
   
 (defmacro ediff-get-fine-diff-vector (n)
   (` (ediff-get-fine-diff-vector-from-vec (ediff-get-difference (, n)))))
   
-(defmacro ediff-frame-has-menubar ()
-  (if (ediff-if-lucid)
-      current-menubar
-    (< 0 (cdr (assq 'menu-bar-lines (frame-parameters (selected-frame)))))
-    ))  
+  
+(defmacro ediff-defvar-local (var value doc) 
+  "Defines SYMBOL as an advertised local variable.  
+Performs a defvar, then executes `make-variable-buffer-local' on
+the variable.  Also sets the `preserved' (Emacs) or `permanent-local' (Lucid)
+property, so that `kill-all-local-variables' (called by major-mode setting
+commands) won't destroy Ediff control variables.
+
+This is a merge of `emerge-defvar-local' for Emacs and Lucid Emacs.  It is
+needed to make the same ediff.elc work under both Emacsen."
+  (` (progn
+       (defvar (, var) (, value) (, doc))
+       (make-variable-buffer-local '(, var))
+       (put '(, var)
+           (if (ediff-if-lucid) 'permanent-local 'preserved)
+           t))))
+    
+(defmacro ediff-eval-in-buffer (buffer &rest forms)
+  "Macro to switch to BUFFER, evaluate FORMS, returns to original buffer.
+Differs from `save-excursion' in that it doesn't save the point and mark.
+This is essentially `emerge-eval-in-buffer' with the test for live buffers."
+  (` (let ((StartBuffer (current-buffer)))
+       (if (ediff-buffer-live-p (, buffer))
+          (unwind-protect
+              (progn
+                (set-buffer (, buffer))
+                (,@ forms))
+            (set-buffer StartBuffer))
+        (beep 1)
+        (message "You seem to have killed an essential Ediff buffer---quit!"))
+       )))
 
 
 ;;; Functions
@@ -835,8 +1076,6 @@ It is entered only through one of the following commands:
        `epatch-buffer'
        `vc-ediff'
        `rcs-ediff'
-or through a non-interactive Emacs Lisp function       
-       `ediff-files-remote'
 
 Commands:
 \\{ediff-mode-map}"
@@ -845,17 +1084,6 @@ Commands:
   (setq major-mode 'ediff-mode)
   (setq mode-name "Ediff"))
 
-(defvar ediff-version "1.52"
-  "The current version of Ediff.")
-
-(defun ediff-version ()
-  "Return string describing the version of Ediff.
-When called interactively, displays the version."
-  (interactive)
-  (if (interactive-p)
-      (message "Ediff version %s" (ediff-version))
-    ediff-version))
-
 
 ;; Hook variables
 
@@ -885,15 +1113,21 @@ on ediff-quit or ediff-suspend.")
 ;; Help messages
 
 (defconst ediff-help-message-long
-  "p,DEL - prev diff      v/V - scroll up/dn    * - refine diff  ! - recomp diffs
-n,SPC - next diff      </> - scroll lt/rt   ab - diff A to B  l - line numbers
-    j - jump to diff     s - toggle split   ba - diff B to A  f - file names
-ga/gb - goto pt in A/B   h - toggle hilit   ra - restore A    z - suspend Ediff
-    c - recenter         @ - toggle refine  rb - restore B    q - quit Ediff
-wa/wb - save buf A/B   A/B - toggle read-only in buffers A/B  ? - toggle help")
+  "    Moving around      |     Toggling features     |       Miscellaneous
+=======================|===========================|===========================
+p,DEL -previous diff   |     s -vert/horiz split   | ab/ba -copy diff A->B/B->A
+n,SPC -next diff       |     h -hiliting           | ra/rb -restore diff in A/B
+    j -jump to diff    |     @ -auto-refining      |     * -refine diff
+ga/gb -to point in A/B |---------------------------|     ! -recompute diffs
+    c -recenter        |    ## -skip whitespace    |---------------------------
+  v/V -scroll up/down  | #f/#h -focus/hide regions | wa/wb -save buf A/B
+  </> -scroll lft/rght |   A/B -read-only buf A/B  |    wf -save diff output
+=======================|===========================|===========================
+    i -status info     |     ? -toggle help window |   z/q -suspend/quit Ediff"
+  )
                          
 (defconst ediff-help-message-short
-  "                       ? - toggle help window")                       
+  "                             ? - toggle help window")
 
 (defvar ediff-help-message ediff-help-message-long
   "*The actual help message.")
@@ -902,11 +1136,14 @@ wa/wb - save buf A/B   A/B - toggle read-only in buffers A/B  ? - toggle help")
 (defvar ediff-diff-program "diff"
   "*Name of the program that compares two files.")
 (defvar ediff-diff-options ""  
-  "*Options to pass to `ediff-diff-program'.")
+  "*Options to pass to `ediff-diff-program'. 
+If diff\(1\) is used as `ediff-diff-program', then the most useful options are
+`-w', to ignore space, and `-i', to ignore case of letters.")
   
-;; Find diff stuff.
-(defvar ediff-wordify-function 'ediff-wordify
-  "*Function to call to split current diff region into separate words.")
+;; Fine differences 
+(defvar ediff-forward-word-function 'ediff-forward-word
+  "*Function to call to move to the next word.
+Used for splitting difference regions into individual words.")
 
 (defvar ediff-fine-diff-program "diff"
   "*Name of the program that compares the current diff regions for fine differences.
@@ -915,9 +1152,11 @@ This program should produce output in the format of diff. One could
 possibly use `spiff' here if appropriate options are set.")
 
 (defvar ediff-fine-diff-options ""  
-  "*Options to pass to `ediff-fine-diff-program'.")
+  "*Options to pass to `ediff-fine-diff-program'.
+If diff\(1\) is used as `ediff-diff-program', then the most useful options are
+`-w', to ignore space, and `-i', to ignore case of letters.")
   
-(defvar ediff-whitespace " \n\t\j"
+(defvar ediff-whitespace " \n\t\C-j"
   "*White space. Used to split strings into words.")
 
 (defvar ediff-word-1 "a-zA-Z---_`'.?!:"
@@ -928,9 +1167,28 @@ used to determine fine differences between regions. There are two types of
 words. One consists entirely out of characters in `ediff-word-1'  and
 another out of characters matching `ediff-word-1'.")
 
-(defvar ediff-word-2 "^a-zA-Z---_`'.?!: \t\n\j"
+(defvar ediff-word-2 "^a-zA-Z---_`'.?!: \t\n\C-j"
   "*Characters matching this regexp constitute words of type 2.
 See `ediff-word-1' for more details.")  
+
+;; Selective browsing
+
+(ediff-defvar-local ediff-skip-diff-region-function 'ediff-show-all-diffs
+  "Function that determines the next/previous diff region to show.
+Should return t for regions to be ignored and nil otherwise.
+This function gets a region number as an argument. The region number
+is the one used internally by Ediff. It is 1 less than the number seen
+by the user.")
+
+(ediff-defvar-local ediff-regexp-focus-A ""
+  "Regexp that determines buf A regions to focus on when skipping to diff.")
+(ediff-defvar-local ediff-regexp-focus-B ""
+  "Regexp that determines buf B regions to focus on when skipping to diff.")
+  
+(ediff-defvar-local ediff-regexp-hide-A ""
+  "Regexp that determines buf A regions to ignore when skipping to diff.")
+(ediff-defvar-local ediff-regexp-hide-B ""
+  "Regexp that determines buf B regions to ignore when skipping to diff.")  
   
 
 ;; Support for patches 
@@ -974,7 +1232,7 @@ Lines that do not match are assumed to be error messages.")
 
 ;; Copying diffs betw buffers.    
 
-(emerge-defvar-local ediff-killed-diffs-alist nil
+(ediff-defvar-local ediff-killed-diffs-alist nil
   "A list of killed diffs. 
 A diff is saved here if it is replaced by a diff
 from another buffer.  This alist has the form:
@@ -999,29 +1257,29 @@ Must end with newline.  Must be set before Ediff is loaded.")
 (defvar ediff-after-flag-mol "<<<---<<"
   "*Like ediff-after-flag, used when a difference starts in mid-line.")
 
-(emerge-defvar-local ediff-before-flag-A nil
+(ediff-defvar-local ediff-before-flag-A nil
   "This is the actual ASCII before-flag in effect in buffer A.
 It is either `ediff-before-flag-mol' or `ediff-before-flag-bol' depending
 on whether the selected difference region starts in the middle of a line 
 or at the beginning of a line.")
-(emerge-defvar-local ediff-after-flag-A nil
+(ediff-defvar-local ediff-after-flag-A nil
   "This is the actual ASCII after-flag in effect in buffer A.
 It is either `ediff-before-flag-mol' or `ediff-before-flag-bol' depending
 on whether the selected difference region starts in the middle of a line 
 or at the beginning of a line.")
-(emerge-defvar-local ediff-before-flag-B nil
+(ediff-defvar-local ediff-before-flag-B nil
   "This is the actual ASCII before-flag in effect in buffer B.
 It is either `ediff-before-flag-mol' or `ediff-before-flag-bol' depending
 on whether the selected difference region starts in the middle of a line 
 or at the beginning of a line.")
-(emerge-defvar-local ediff-after-flag-B nil
+(ediff-defvar-local ediff-after-flag-B nil
   "This is the actual ASCII after-flag in effect in buffer B.
 It is either `ediff-before-flag-mol' or `ediff-before-flag-bol' depending
 on whether the selected difference region starts in the middle of a line 
 or at the beginning of a line.")
 
   
-(emerge-defvar-local ediff-want-faces t
+(ediff-defvar-local ediff-want-faces t
   "If t, differences are highlighted using faces on a window system.
 If nil, they are highlighted using ASCII flags, ediff-before-flag
 and ediff-after-flag.  On a non-window system, differences are always
@@ -1030,13 +1288,13 @@ highlighted using ASCII flags.
 This variable can be set either in .emacs or toggled interactively, using
 ediff-toggle-hilit.") 
 
-(emerge-defvar-local ediff-want-default-menus t
+(ediff-defvar-local ediff-want-default-menus t
   "If t, Ediff will set up menus in the menu bar.
 This variable must be set before Ediff is loaded. If you don't like the
 look of the default menus, set this variable to nil and make your own
 menus.")  
 
-(emerge-defvar-local ediff-auto-refine 'on
+(ediff-defvar-local ediff-auto-refine (if window-system 'on 'nix)
   "If `'on', Ediff auto-highlights fine diffs for the current diff region.
 If `off', auto-highlighting is not used. If `'nix', no fine diffs are shown
 at all, unless the user force-refines the region by hitting `*'.
@@ -1044,16 +1302,19 @@ at all, unless the user force-refines the region by hitting `*'.
 This variable can be set either in .emacs or toggled interactively, using
 ediff-toggle-hilit.") 
 
-(emerge-defvar-local ediff-auto-refine-limit 700
+(ediff-defvar-local ediff-ignore-similar-regions nil
+  "*If t, skip over difference regions that differ only in the white space and line breaks.")
+
+(ediff-defvar-local ediff-auto-refine-limit 700
   "Auto-refine only those regions that are smaller than this number of bytes.")
 
-(emerge-defvar-local ediff-highlight-all-diffs t
+(ediff-defvar-local ediff-highlight-all-diffs t
   "If nil, only the selected differences are highlighted.
 This variable can be set either in .emacs or toggled interactively, using
 ediff-toggle-hilit.") 
 
-(emerge-defvar-local ediff-highlighting-style nil
-  "A var local to each ediff-control buffer.
+(ediff-defvar-local ediff-highlighting-style nil
+  "A var local to each control panel buffer.
 Indicates highlighting style in effect for this buffer: `face', `ascii',
 nil -- temporarily unhighlighted, `off' -- turned off \(on a dumb
 terminal only\).")
@@ -1064,65 +1325,62 @@ terminal only\).")
 ;; control buffer. 
 
 ;; Mode variables
-(emerge-defvar-local ediff-A-buffer nil
+(ediff-defvar-local ediff-A-buffer nil
   "The buffer in which the A variant is stored.")
-(emerge-defvar-local ediff-B-buffer nil
+(ediff-defvar-local ediff-B-buffer nil
   "The buffer in which the B variant is stored.")
-(emerge-defvar-local ediff-control-buffer nil
+(ediff-defvar-local ediff-control-buffer nil
   "The control buffer of ediff. ")
 
-;(emerge-defvar-local ediff-control-buffer-suffix nil
+;(ediff-defvar-local ediff-control-buffer-suffix nil
 ;  "The suffix of the control buffer name. ")
   
-(emerge-defvar-local ediff-control-window nil
+(ediff-defvar-local ediff-control-window nil
   "The control window.")
-(emerge-defvar-local ediff-window-config-saved ""
+(ediff-defvar-local ediff-window-config-saved ""
   "Ediff's window configuration.
 Used to minimize the need to rearrange windows.")
 
 
-(emerge-defvar-local ediff-A-buffer-values nil
+(ediff-defvar-local ediff-A-buffer-values nil
   "Keeps working values of ediff-saved-variables for ediff-A-buffer.")
-(emerge-defvar-local ediff-B-buffer-values nil
+(ediff-defvar-local ediff-B-buffer-values nil
   "Keeps working values of ediff-saved-variables for ediff-B-buffer.")
 
-(emerge-defvar-local ediff-A-buffer-values-setup nil
+(ediff-defvar-local ediff-A-buffer-values-setup nil
   "Remembers ediff-saved-variables for ediff-A-buffer as they were at setup.")
-(emerge-defvar-local ediff-B-buffer-values-setup nil
+(ediff-defvar-local ediff-B-buffer-values-setup nil
   "Remembers ediff-saved-variables for ediff-B-buffer as they were at setup.")
 
-(emerge-defvar-local ediff-difference-vector nil
+(ediff-defvar-local ediff-difference-vector nil
   "Vector of differences between the variants. 
 Each difference is represented by a vector of two overlays.  The first
 overlays the difference section in the A buffer and the second overlays the
 diff in the B buffer. If a difference section is empty, the corresponding
 overlay's endpoints coincide. ")
 
-(emerge-defvar-local ediff-current-difference -1
+(ediff-defvar-local ediff-current-difference -1
   "The difference that is currently selected.")
-(emerge-defvar-local ediff-number-of-differences nil
+(ediff-defvar-local ediff-number-of-differences nil
   "Number of differences found.")
   
-(emerge-defvar-local ediff-diff-buffer nil
+(ediff-defvar-local ediff-diff-buffer nil
   "Buffer containing the output of diff, which is used by Ediff to step
 through files.")
-(emerge-defvar-local ediff-tmp-buffer nil
+(ediff-defvar-local ediff-fine-diff-buffer nil
+  "Buffer used for diff-style fine differences between regions.")
+(ediff-defvar-local ediff-tmp-buffer nil
   "Temporary buffer used for computing fine differences.")
-(emerge-defvar-local ediff-error-buffer nil
+(ediff-defvar-local ediff-error-buffer nil
   "Buffer containing the output of diff when diff returns errors.")
 
-(emerge-defvar-local ediff-this-buffer-control-sessions  nil
-  "List of ediff-control buffers associated with each buffer A/B.")
+(ediff-defvar-local ediff-this-buffer-control-sessions  nil
+  "List of ediff control panels associated with each buffer A/B.")
 
 (defvar ediff-disturbed-overlays nil
   "List of difference overlays disturbed by working with the current diff.")
   
-(defvar ediff-shaded-overlay-priority 
-  (if (ediff-if-lucid)
-      (1+ mouse-highlight-priority)
-    100)       ;; 100 is a kludge. There is a bug in insert-in-front-hooks
-               ;; in Emacs < 19.23. When this is fixed, I will get rid of
-               ;; this kludge.
+(defvar ediff-shaded-overlay-priority  100
   "Priority of non-selected overlays.")
 
 
@@ -1176,7 +1434,7 @@ through files.")
 (if (not window-system)
     ()
   (defun ediff-set-face (ground face color)
-    "Sets face foreground/background. If color unavailable, guides the user."
+    "Sets face foreground/background."
     (if (ediff-valid-color-p color)
        (if (eq ground 'foreground)
            (set-face-foreground face color)
@@ -1207,7 +1465,8 @@ through files.")
                     (copy-face 'modeline 'ediff-current-diff-face-A)
                   (copy-face 'highlight 'ediff-current-diff-face-A))
                 )))
-      (ediff-get-face 'ediff-current-diff-face-A))
+      'ediff-current-diff-face-A)
+      ;;(ediff-get-face 'ediff-current-diff-face-A))
     "Face for highlighting the selected difference in buffer A.")
 
   (defvar ediff-current-diff-face-B
@@ -1224,7 +1483,8 @@ through files.")
                     (copy-face 'modeline 'ediff-current-diff-face-B)
                   (copy-face 'highlight 'ediff-current-diff-face-B))
                 )))
-      (ediff-get-face 'ediff-current-diff-face-B))
+      'ediff-current-diff-face-B)
+      ;;(ediff-get-face 'ediff-current-diff-face-B))
     "Face for highlighting the selected difference in buffer B.")
 
   (defvar ediff-fine-diff-face-A
@@ -1237,7 +1497,8 @@ through files.")
                 (ediff-set-face 'background 'ediff-fine-diff-face-A
                                 "sky blue"))
                (t (set-face-underline-p 'ediff-fine-diff-face-A t))))
-      (ediff-get-face 'ediff-fine-diff-face-A))
+      'ediff-fine-diff-face-A)
+      ;;(ediff-get-face 'ediff-fine-diff-face-A))
     "Face for highlighting the refinement of the selected diff in buffer A.")
 
   (defvar ediff-fine-diff-face-B
@@ -1248,7 +1509,8 @@ through files.")
                 (ediff-set-face 'foreground 'ediff-fine-diff-face-B "Black")
                 (ediff-set-face 'background 'ediff-fine-diff-face-B "cyan"))
                (t (set-face-underline-p 'ediff-fine-diff-face-B t))))
-      (ediff-get-face 'ediff-fine-diff-face-B))
+      'ediff-fine-diff-face-B)
+      ;;(ediff-get-face 'ediff-fine-diff-face-B))
     "Face for highlighting the refinement of the selected diff in buffer B.")
 
 
@@ -1262,12 +1524,9 @@ through files.")
                 (ediff-set-face
                  'background 'ediff-even-diff-face-A "light grey"))
                (t 
-                (if (ediff-if-lucid)
-                    (progn
-                      (copy-face 'highlight 'ediff-even-diff-face-A)
-                      (invert-face 'ediff-even-diff-face-A))
-                  (copy-face 'italic 'ediff-even-diff-face-A)))))
-      (ediff-get-face 'ediff-even-diff-face-A))
+                (copy-face 'italic 'ediff-even-diff-face-A))))
+      'ediff-even-diff-face-A)
+      ;;(ediff-get-face 'ediff-even-diff-face-A))
     "Face used to highlight even-numbered differences in buffer A.")
       
   (defvar ediff-even-diff-face-B
@@ -1280,10 +1539,9 @@ through files.")
                 (ediff-set-face
                  'background 'ediff-even-diff-face-B "Gray"))
                (t 
-                (if (ediff-if-lucid)
-                    (copy-face 'highlight 'ediff-even-diff-face-B)
-                  (copy-face 'italic 'ediff-even-diff-face-B)))))
-      (ediff-get-face 'ediff-even-diff-face-B))
+                (copy-face 'italic 'ediff-even-diff-face-B))))
+      'ediff-even-diff-face-B)
+      ;;(ediff-get-face 'ediff-even-diff-face-B))
     "Face used to highlight even-numbered differences in buffer B.")
   
   (defvar ediff-odd-diff-face-A
@@ -1296,10 +1554,9 @@ through files.")
                 (ediff-set-face
                  'background 'ediff-odd-diff-face-A "Gray"))
                (t 
-                (if (ediff-if-lucid)
-                    (copy-face 'highlight 'ediff-odd-diff-face-A)
-                  (copy-face 'italic 'ediff-odd-diff-face-A)))))
-      (ediff-get-face 'ediff-odd-diff-face-A))
+                (copy-face 'italic 'ediff-odd-diff-face-A))))
+      'ediff-odd-diff-face-A)
+      ;;(ediff-get-face 'ediff-odd-diff-face-A))
     "Face used to highlight odd-numbered differences in buffer A.")
       
   (defvar ediff-odd-diff-face-B
@@ -1312,12 +1569,9 @@ through files.")
                 (ediff-set-face
                  'background 'ediff-odd-diff-face-B "light grey"))
                (t 
-                (if (ediff-if-lucid)
-                    (progn
-                      (copy-face 'highlight 'ediff-odd-diff-face-B)
-                      (invert-face 'ediff-odd-diff-face-B))
-                  (copy-face 'italic 'ediff-odd-diff-face-B)))))
-      (ediff-get-face 'ediff-odd-diff-face-B))
+                (copy-face 'italic 'ediff-odd-diff-face-B))))
+      'ediff-odd-diff-face-B)
+      ;;(ediff-get-face 'ediff-odd-diff-face-B))
     "Face used to highlight odd-numbered differences in buffer B.")
 
   ;; Create *-var faces. These are the actual faces used to highlight
@@ -1351,10 +1605,10 @@ through files.")
 
   ;;; Overlays
 
-  (emerge-defvar-local ediff-current-diff-overlay-A nil
-    "Overlay in buffer A.")
-  (emerge-defvar-local ediff-current-diff-overlay-B nil
-    "Overlay in buffer B.")
+  (ediff-defvar-local ediff-current-diff-overlay-A nil
+    "Overlay specifying the current difference region in buffer A.")
+  (ediff-defvar-local ediff-current-diff-overlay-B nil
+    "Overlay specifying the current difference region in buffer B.")
   
   (defun ediff-make-current-diff-overlay (type)
       (let ((overlay (if (eq type 'A)
@@ -1369,13 +1623,13 @@ through files.")
        (ediff-overlay-put (eval overlay) 'ediff ediff-control-buffer)
        ))
        
-  ;; Computes priority of ediff overlay.
+  ;; Compute priority of ediff overlay.
   (defun ediff-highest-priority (start end buffer)
     (let ((pos (max 1 (1- start)))
          ovr-list)
       (if (ediff-if-lucid)
-         (+ 2 mouse-highlight-priority)
-       (emerge-eval-in-buffer
+         (1+ ediff-shaded-overlay-priority)
+       (ediff-eval-in-buffer
         buffer
         (while (< pos (min (point-max) (1+ end)))
           (setq ovr-list (append (overlays-at pos) ovr-list))
@@ -1418,11 +1672,13 @@ these buffers.")
   "*If t, Ediff uses previous directory as default when reading file name.")
   
 (defvar ediff-no-help-in-control-buffer nil
-  "*Non-nil mean C-h should not invoke Emacs help.
+  "*Non-nil means C-h should not invoke Emacs help in control buffer.
 Instead, C-h jumps to previous difference.")
   
 (defvar ediff-temp-file-prefix
-  (let ((env (getenv "TMPDIR"))
+  (let ((env (or (getenv "TMPDIR")
+                (getenv "TMP")
+                (getenv "TEMP")))
        d)
     (setq d (if (and env (> (length env) 0))
                env
@@ -1436,72 +1692,92 @@ Do not start with `~/' or `~user-name/'.")
 (defvar ediff-temp-file-mode 384       ; u=rw only
   "*Mode for Ediff temporary files.")
   
-(emerge-defvar-local ediff-temp-file-A nil
+(ediff-defvar-local ediff-temp-file-A nil
   "Temporary file used for refining difference regions in buffer B.")
-(emerge-defvar-local ediff-temp-file-B nil
+(ediff-defvar-local ediff-temp-file-B nil
   "Temporary file used for refining difference regions in buffer B.")
   
 (defvar ediff-last-dir-A nil
   "Last directory used by an Ediff command for file-A.")
 (defvar ediff-last-dir-B nil
   "Last directory used by an Ediff command for file-B.")
+(defvar ediff-last-dir-patch nil
+  "Last directory used by an Ediff command for file to patch.")
   
 ;; Build keymaps
 
 (defvar ediff-mode-map nil
   "Local keymap used in Ediff mode.")
   
+(defun ediff-frame-has-menubar ()
+  (if (ediff-if-lucid)
+      current-menubar
+    (< 0 (cdr (assq 'menu-bar-lines (frame-parameters (selected-frame)))))
+    ))
+
 ;;; This is split in three parts to avoid
 ;;; making a line in loaddefs.el that is too long for patch.
 ;;; Note that autoload.el currently looks for cookies
 ;;; only at top level in the file.
+;;; So I moved these to top level.  But the conditionals on
+;;; purify-flag make these no-ops when you load ediff.
+;;; They only do something in loaddefs.el.
 ;;;###autoload
-(progn
-  (defvar menu-bar-epatch-menu (make-sparse-keymap "menu-bar-epatch-map"))
-  (fset 'menu-bar-epatch-menu (symbol-value 'menu-bar-epatch-menu))
-  (defvar menu-bar-ediff-menu (make-sparse-keymap "menu-bar-ediff-map"))
-  (fset 'menu-bar-ediff-menu (symbol-value 'menu-bar-ediff-menu)))
+(if purify-flag
+    (progn
+      (defvar menu-bar-epatch-menu (make-sparse-keymap "Epatch"))
+      (fset 'menu-bar-epatch-menu (symbol-value 'menu-bar-epatch-menu))
+      (defvar menu-bar-ediff-menu (make-sparse-keymap "Ediff"))
+      (fset 'menu-bar-ediff-menu (symbol-value 'menu-bar-ediff-menu))))
+
 
 ;;;###autoload
-(progn
-  (define-key menu-bar-ediff-menu [rcs-ediff]
-    '("With a Revision via RCS ..." . rcs-ediff))
-  (define-key menu-bar-ediff-menu [vc-ediff]
-    '("With a Revision via VC ..." . vc-ediff))
-  (define-key menu-bar-ediff-menu [ediff-buffers]
-    '("Between Buffers ..." . ediff-buffers))
-  (define-key menu-bar-ediff-menu [ediff-files]
-    '("Between Files ..." . ediff-files)))
+(if purify-flag
+    (progn
+      (define-key menu-bar-ediff-menu [rcs-ediff]
+       '("File with a version via RCS ..." . rcs-ediff))
+      (define-key menu-bar-ediff-menu [vc-ediff]
+       '("File with a version via VC ..." . vc-ediff))
+      (define-key menu-bar-ediff-menu [ediff-buffers]
+       '("Buffers ..." . ediff-buffers))
+      (define-key menu-bar-ediff-menu [ediff-files]
+       '("Files ..." . ediff-files))))
 
 ;;;###autoload
-(progn
-  (define-key menu-bar-epatch-menu [ediff-patch-buffer]
-    '("To a Buffer ..." . ediff-patch-buffer))
-  (define-key menu-bar-epatch-menu [ediff-patch-file]
-    '("To a File ..." . ediff-patch-file)))
+(if purify-flag
+    (progn
+      (define-key menu-bar-epatch-menu [ediff-patch-buffer]
+       '("To a Buffer ..." . ediff-patch-buffer))
+      (define-key menu-bar-epatch-menu [ediff-patch-file]
+       '("To a File ..." . ediff-patch-file))))
+       
+(define-key menu-bar-file-menu [epatch]
+  '("Apply Patch" . menu-bar-epatch-menu))
+(define-key menu-bar-file-menu [ediff]
+  '("Compare" . menu-bar-ediff-menu))
+
+(if (and window-system ediff-want-default-menus (ediff-frame-has-menubar)
+        (ediff-if-lucid))
+    (progn  ;; Lucid menu bars
+      (defvar ediff-menu
+       '(""
+         ["Files ..."  ediff-files t]
+         ["Buffers ..." ediff-buffers t]
+         ["File with a version via VC ..."  vc-ediff t]
+         ["File with a version via RCS ..."  rcs-ediff t]))
+      (defvar epatch-menu
+       '(""
+         ["To a file ..."  ediff-patch-file t]
+         ["To a buffer ..." ediff-patch-buffer t]))
+      (add-menu '("File") "Compare" 
+               ediff-menu
+               "New Screen")
+      (add-menu '("File") "Apply Patch" 
+               epatch-menu
+               "New Screen")
+      ;; Displays as a solid horizontal line 
+      (add-menu-item '("File") "---" nil nil "New Screen")))
 
-(if (and window-system ediff-want-default-menus (ediff-frame-has-menubar))
-    (if (ediff-if-lucid)
-       (progn  ;; Lucid menu bars
-         (defvar ediff-menu
-           '(""
-             ["Between Files ..."  ediff-files t]
-             ["Between Buffers ..." ediff-buffers t]
-             ["With a Revision via VC ..."  vc-ediff t]
-             ["With a Revision via RCS ..."  rcs-ediff t]))
-         (defvar epatch-menu
-           '(""
-             ["To a File ..."  ediff-patch-file t]
-             ["To a Buffer ..." ediff-patch-buffer t]))
-         (add-menu '("File") "Find Differences" 
-                   ediff-menu
-                   "Delete Screen")
-         (add-menu '("File") "Apply Patch" 
-                   epatch-menu
-                   "Delete Screen")
-         ;; Displays as a solid horizontal line 
-         (add-menu-item '("File") "---" nil nil "Delete Screen")
-         )))
 
 
 (defun ediff-setup-keymap ()
@@ -1532,8 +1808,7 @@ Do not start with `~/' or `~user-name/'.")
   (define-key ediff-mode-map "V" 'ediff-scroll-down)
   (define-key ediff-mode-map "<" 'ediff-scroll-left)
   (define-key ediff-mode-map ">" 'ediff-scroll-right)
-  (define-key ediff-mode-map "f" 'ediff-file-names)
-  (define-key ediff-mode-map "l" 'ediff-line-numbers)
+  (define-key ediff-mode-map "i" 'ediff-status-info)
   (define-key ediff-mode-map "?" 'ediff-toggle-help)
   (define-key ediff-mode-map "!" 'ediff-recompute-diffs)
   (define-key ediff-mode-map "*" 'ediff-make-fine-diffs)
@@ -1544,55 +1819,72 @@ Do not start with `~/' or `~user-name/'.")
   (define-key ediff-mode-map "r"  nil)
   (define-key ediff-mode-map "ra" 'ediff-restore-diff)
   (define-key ediff-mode-map "rb" 'ediff-restore-diff)
+  (define-key ediff-mode-map "#"  nil)
+  (define-key ediff-mode-map "#h"  'ediff-toggle-regexp-match)
+  (define-key ediff-mode-map "#f"  'ediff-toggle-regexp-match)
+  (define-key ediff-mode-map "##"  'ediff-toggle-skip-similar)
   (define-key ediff-mode-map "o"   nil)
   (define-key ediff-mode-map "A"  'ediff-toggle-read-only)
   (define-key ediff-mode-map "B"  'ediff-toggle-read-only)
   (define-key ediff-mode-map "w"   nil)
   (define-key ediff-mode-map "wa"  'ediff-save-buffer)
   (define-key ediff-mode-map "wb"  'ediff-save-buffer)
+  (define-key ediff-mode-map "wf"  'ediff-save-buffer)
   (define-key ediff-mode-map "k"   nil)
-  (define-key ediff-mode-map "kkk" 'ediff-reload-keymap) ;; for debug
+  (define-key ediff-mode-map "kkk" 'ediff-reload-keymap) ;; for debugging
   ;; Allow ediff-mode-map to be referenced indirectly
   (fset 'ediff-mode-map ediff-mode-map))
 
 
 ;;; Setup functions
 
-(defun ediff-find-file (file buffer &optional last-dir)
-  "Visits FILE for ediff.
-BUFFER is a variable symbol that is supposed to
-get the buffer into which FILE is read.  LAST-DIR is the directory variable
-symbol where FILE's dir name should be returned.
-Arguments: (file 'buffer &optional 'last-dir)"
-  (if (not (file-readable-p file))
-      (error "File `%s' does not exist or is not readable" file))
-  
-  ;; Record the buffer
-  (set buffer (find-file-noselect file))
-  ;; Record the directory of the file
-  (if last-dir
-      (set last-dir (expand-file-name (file-name-directory file))))
-  
-  ;; Make sure the entire file is seen, and it reflects what is on disk
-  (emerge-eval-in-buffer 
-   (eval buffer)
-   (widen)
-   (let ((temp (file-local-copy file))
-        startup-hooks)
-     (if temp
-        (setq file temp
-              startup-hooks
-              (cons (` (lambda () (delete-file (, file))))
-                    startup-hooks))
-       ;; Verify that the file matches the buffer
-       (emerge-verify-file-buffer)))))
+(defun ediff-find-file (file-var buffer &optional last-dir hooks-var)
+  "Visit FILE and arrange its buffer to Ediff's liking. 
+FILE is actually a variables symbol that must contain a true file name.
+BUFFER is a variable symbol, which will get the buffer object into which
+FILE is read.  LAST-DIR is the directory variable symbol where FILE's
+directory name should be returned. HOOKS is a variable symbol that will be
+assigned the hook to be executed after `ediff-strartup' is finished.
+`ediff-find-file' arranges that the temp files it might create will be
+deleted. 
+Arguments: (file buffer &optional last-dir hooks)"
+  (let* ((file (eval file-var))
+        (file-magic (find-file-name-handler file 'find-file-noselect)))
+    (if (not (file-readable-p file))
+       (error "File `%s' does not exist or is not readable" file))
+  
+    ;; Record the directory of the file
+    (if last-dir
+       (set last-dir (expand-file-name (file-name-directory file))))
+    
+    ;; Setup the buffer
+    (set buffer (find-file-noselect file))
+  
+    (ediff-eval-in-buffer 
+     (eval buffer)
+     (widen)  ;; Make sure the entire file is seen
+     (cond (file-magic  ;; file has handler, such as jka-compr-handler or
+                       ;; ange-ftp-hook-function--arrange for temp file
+           (ediff-verify-file-buffer 'magic)
+           (setq file (ediff-make-temp-file))
+           (set hooks-var (cons (` (lambda () (delete-file (, file))))
+                                (eval hooks-var))))
+          ;; file processed via auto-mode-alist, a la uncompress.el
+          ((not (equal (file-truename file)
+                       (file-truename (buffer-file-name))))
+           (setq file (ediff-make-temp-file))
+           (set hooks-var (cons (` (lambda () (delete-file (, file))))
+                                (eval hooks-var))))
+          (t ;; plain file---just check that the file matches the buffer
+            (ediff-verify-file-buffer))))
+    (set file-var file)))
 
 (defun ediff-files-internal (file-A file-B &optional startup-hooks)
   (let (buffer-A buffer-B)
     (message "Reading file %s ... " file-A)(sit-for .5)
-    (ediff-find-file file-A 'buffer-A 'ediff-last-dir-A)
+    (ediff-find-file 'file-A 'buffer-A 'ediff-last-dir-A 'startup-hooks)
     (message "Reading file %s ... " file-B)(sit-for .5)
-    (ediff-find-file file-B 'buffer-B 'ediff-last-dir-B)
+    (ediff-find-file 'file-B 'buffer-B 'ediff-last-dir-B 'startup-hooks)
     (ediff-setup buffer-A file-A buffer-B file-B startup-hooks)))
   
 (defun ediff-get-patch-buffer (dir)
@@ -1602,14 +1894,13 @@ Else, read patch file into a new buffer."
       (setq ediff-patch-buf
            (get-buffer (read-buffer "Patch buffer name: " nil t))) ;must match
     (setq ediff-patch-buf
-         (find-file-noselect (read-file-name "Patch file name: "
-                                             dir))))
-  (emerge-eval-in-buffer
+         (find-file-noselect (read-file-name "Patch file name: " dir))))
+  (ediff-eval-in-buffer
    ediff-patch-buf
    (toggle-read-only 1))
   (setq ediff-patch-diagnostics
        (get-buffer-create "*ediff patch diagnostics*"))
-  (emerge-eval-in-buffer
+  (ediff-eval-in-buffer
    ediff-patch-diagnostics
    (insert-buffer ediff-patch-buf))
   )
@@ -1618,11 +1909,12 @@ Else, read patch file into a new buffer."
 (defun ediff-setup (buffer-A file-A buffer-B file-B startup-hooks)
   (setq file-A (expand-file-name file-A))
   (setq file-B (expand-file-name file-B))
-  (let* ((control-buffer-name (emerge-unique-buffer-name "*ediff-control" "*"))
-        (control-buffer (emerge-eval-in-buffer
+  (let* ((control-buffer-name 
+         (emerge-unique-buffer-name "Ediff Control Panel" ""))
+        (control-buffer (ediff-eval-in-buffer
                          buffer-A
                          (get-buffer-create control-buffer-name))))
-    (emerge-eval-in-buffer
+    (ediff-eval-in-buffer
      control-buffer
      (ediff-mode) ;; in control buffer only
      (setq buffer-read-only nil)
@@ -1649,31 +1941,45 @@ Else, read patch file into a new buffer."
      (run-hooks 'ediff-before-setup-windows-hooks)
      (ediff-setup-windows buffer-A buffer-B control-buffer t)
          
-     ;; all these must be inside emerge-eval-in-buffer control-buffer,
+     ;; all these must be inside ediff-eval-in-buffer control-buffer,
      ;; since these vars are local to control-buffer
      ;; These won't run if there are errors in diff
-     (emerge-eval-in-buffer
+     (ediff-eval-in-buffer
       ediff-A-buffer
-      (run-hooks 'ediff-prepare-buffer-hooks)
       (add-hook 'local-write-file-hooks 'ediff-block-write-file)
       (setq before-change-function 'ediff-before-change-guard)
       ;; add control-buffer to the list of sessions
       (or (memq control-buffer ediff-this-buffer-control-sessions)
          (setq ediff-this-buffer-control-sessions
                (cons control-buffer ediff-this-buffer-control-sessions)))
-      (setq mode-line-buffer-identification '("A: %b")))
-     (emerge-eval-in-buffer
+      (setq mode-line-buffer-identification
+           (cons "A: "
+                 (if (string-match "\\(^ \\|^[^ \t]*: \\)"
+                                   (car mode-line-buffer-identification))
+                     (cons (substring (car mode-line-buffer-identification)
+                                      (match-end 0))
+                           (cdr mode-line-buffer-identification))
+                   mode-line-buffer-identification)))
+      (run-hooks 'ediff-prepare-buffer-hooks))
+     (ediff-eval-in-buffer
       ediff-B-buffer
-      (run-hooks 'ediff-prepare-buffer-hooks)
       (add-hook 'local-write-file-hooks 'ediff-block-write-file)
       (setq before-change-function 'ediff-before-change-guard)
       ;; add control-buffer to the list of sessions
       (or (memq control-buffer ediff-this-buffer-control-sessions)
          (setq ediff-this-buffer-control-sessions
                (cons control-buffer ediff-this-buffer-control-sessions)))
-      (setq mode-line-buffer-identification '("B: %b")))
-
-     (emerge-eval-in-buffer control-buffer
+      (setq mode-line-buffer-identification
+           (cons "B: "
+                 (if (string-match "\\(^ \\|^[^ \t]*: \\)"
+                                   (car mode-line-buffer-identification))
+                     (cons (substring (car mode-line-buffer-identification)
+                                      (match-end 0))
+                           (cdr mode-line-buffer-identification))
+                   mode-line-buffer-identification)))
+      (run-hooks 'ediff-prepare-buffer-hooks))
+
+     (ediff-eval-in-buffer control-buffer
                            (run-hooks 'startup-hooks 'ediff-startup-hooks)
                            (setq buffer-read-only t)))))
 
@@ -1691,9 +1997,13 @@ Else, read patch file into a new buffer."
                     
   (or use-old (setq ediff-diff-buffer 
                    (get-buffer-create
-                    (emerge-unique-buffer-name "*ediff-diff" "*"))))
-  (emerge-eval-in-buffer
-   ediff-diff-buffer
+                    (emerge-unique-buffer-name "*ediff-diff" "*"))
+                   ediff-fine-diff-buffer
+                   (get-buffer-create
+                    (emerge-unique-buffer-name "*ediff-fine-diff" "*"))
+                   ))
+  (ediff-eval-in-buffer
+   (if refine-region ediff-fine-diff-buffer ediff-diff-buffer)
    (erase-buffer)
    ;; shell-command tends to display old shell command buffers even when it
    ;; puts output in another buffer---probably an Emacs bug.
@@ -1709,75 +2019,122 @@ Else, read patch file into a new buffer."
              (ediff-protect-metachars file-B))
       t)
      ))
-  (ediff-prepare-error-list diff-ok-lines-regexp)
-  (if refine-region
-      (message "Refining difference region %d ... Done." (1+ refine-region))
-    (message "Computing differences ... Done.")(sit-for .5))
+  
+   
   (if refine-region
-      (ediff-convert-diffs-to-overlays-refine
-       ediff-A-buffer ediff-B-buffer
-       (ediff-extract-diffs ediff-diff-buffer)
-       refine-region)
+      (progn
+       (ediff-prepare-error-list diff-ok-lines-regexp ediff-fine-diff-buffer)
+       (message "Refining difference region %d ... Done." (1+ refine-region))
+       (ediff-convert-diffs-to-overlays-refine
+        ediff-A-buffer ediff-B-buffer
+        (ediff-extract-diffs ediff-fine-diff-buffer)
+        refine-region))
+    (ediff-prepare-error-list diff-ok-lines-regexp ediff-diff-buffer)
+    (message "Computing differences ... Done.")(sit-for .5)
     (ediff-convert-diffs-to-overlays
      ediff-A-buffer ediff-B-buffer
-     (ediff-extract-diffs ediff-diff-buffer ediff-A-buffer ediff-B-buffer)))
-  )
+     (ediff-extract-diffs ediff-diff-buffer
+                         ediff-A-buffer ediff-B-buffer))))
   
     
-(defun ediff-prepare-error-list (ok-regexp)
-  (let ((diff-buff ediff-diff-buffer))
-    (emerge-eval-in-buffer
+(defun ediff-prepare-error-list (ok-regexp diff-buff)
+    (ediff-eval-in-buffer
      ediff-error-buffer
      (erase-buffer)
      (insert-buffer diff-buff)
-     (delete-matching-lines ok-regexp))))
+     (delete-matching-lines ok-regexp)))
 
 ;;; Function to start Ediff by patching a file
 
 ;;;###autoload
-(defun ediff-patch-file (file-to-patch &optional startup-hooks)
+(defun ediff-patch-file (source-filename &optional startup-hooks)
   "Run Ediff by patching FILE-TP-PATCH."
-  (interactive "fFile to patch: ")
+  (interactive 
+   (list (ediff-read-file-name "File to patch"
+                              (if ediff-use-last-dir
+                                  ediff-last-dir-patch
+                                default-directory)
+                              nil)))
   
-  (ediff-get-patch-buffer (file-name-directory file-to-patch))
-  (let ((buf (get-file-buffer file-to-patch)))
-    (if buf 
-       (progn
-         (emerge-eval-in-buffer
-          buf
-          (if (buffer-modified-p buf)
-              (if (y-or-n-p 
-                   (format 
-                    "File '%s' is already in buffer %s.  Save before killing? "
-                    file-to-patch (buffer-name buf)))
-                  (save-buffer buf)))
-          (set-buffer-modified-p nil))
-         (ediff-kill-buffer-carefully buf))))
-  (emerge-eval-in-buffer
-   ediff-patch-diagnostics
-   (let ((shell-file-name ediff-shell))
+  (ediff-get-patch-buffer (file-name-directory source-filename))
+  (let* ((backup-extension 
+         ;; if the user specified a -b option, extract the backup
+         ;; extension from there; else use `.orig'
+         (substring ediff-patch-options
+                    (if (string-match "-b[ \t]+" ediff-patch-options)
+                        (match-end 0) 0)
+                    (if (string-match "-b[ \t]+[^ \t]+" ediff-patch-options)
+                        (match-end 0) 0)))
+        (backup-extension (if (string= backup-extension "")
+                              "orig" backup-extension))
+        (shell-file-name ediff-shell)
+        ;; ediff-find-file may use a temp file to do the patch
+        ;; so, we save source-filename and true-source-filename as a var
+        ;; that initially is source-filename but may be changed to a temp
+        ;; file for the purpose of patching.
+        (true-source-filename source-filename)
+        (target-filename source-filename)
+        target-buf buf-to-patch file-name-magic-p)
+                                       
+    ;; Make a temp file, if source-filename has a magic file handler (or if
+    ;; it is handled via auto-mode-alist and similar magic).
+    ;; Check if there is a buffer visiting source-filename and if they are in
+    ;; synch; arrange for the deletion of temp file.
+    (ediff-find-file 'true-source-filename 'buf-to-patch
+                    'ediff-last-dir-patch 'startup-hooks)
+
+    ;; Check if source file name has triggered black magic, such as file name
+    ;; handlers or auto mode alist, and make a note of it.
+    (setq file-name-magic-p (not (equal (file-truename true-source-filename)
+                                       (file-truename source-filename))))
+    
+    (ediff-eval-in-buffer
+     ediff-patch-diagnostics
      (message "Applying patch ... ")(sit-for .5)
      ;; always pass patch the -f option, so it won't ask any questions
      (shell-command-on-region 
       (point-min) (point-max)
-      (format "%s %s %s"
-             ediff-patch-program (concat "-f " ediff-patch-options)
-             (expand-file-name file-to-patch))
-      t)
-     (message "Applying patch ... Done.")(sit-for .5)
-     ))
-  (switch-to-buffer ediff-patch-diagnostics)
-  (sit-for 0) ;; synchronize
+      (format "%s -f %s %s"
+             ediff-patch-program ediff-patch-options
+             (expand-file-name true-source-filename))
+      t))
+    (message "Applying patch ... Done.")(sit-for .5)
+    (switch-to-buffer ediff-patch-diagnostics)
+    (sit-for 0) ;; synchronize
+    
+    (or (file-exists-p (concat true-source-filename "." backup-extension))
+       (error "Patch failed or didn't modify the original file."))
   
-  (setq startup-hooks (cons 'ediff-toggle-read-only-A startup-hooks))
-  (if (file-exists-p (format "%s.orig" file-to-patch))
-      (ediff-files
-       (format "%s.orig" file-to-patch) file-to-patch startup-hooks) 
-    (error "Patch failed or didn't modify the original file."))
+    ;; If black magic is involved, apply patch to a temp copy of the
+    ;; file. Otherwise, apply patch to the orig copy.
+    ;; If patch is applied to temp copy, we name the result
+    ;; ***.patched. The orig file name isn't changed, and the temp copy of
+    ;; the original is later deleted.
+    ;; Without magic, the original file is renamed (usually into
+    ;; old-name.orig) and the result of patching will have the 
+    ;; same name as the original.
+    (if (not file-name-magic-p)
+       (ediff-eval-in-buffer
+        buf-to-patch
+        (set-visited-file-name (concat source-filename "." backup-extension))
+        (set-buffer-modified-p nil))
+      (setq target-filename (concat true-source-filename ".patched"))
+      (rename-file true-source-filename target-filename t)
+      
+      ;; arrange that the temp copy of orig will be deleted
+      (rename-file (concat true-source-filename "." backup-extension)
+                  true-source-filename t))
+    
+    ;; make orig buffer read-only
+    (setq startup-hooks (cons 'ediff-toggle-read-only-A startup-hooks))
+    ;; set up a buf for the patched file
+    (setq target-buf (find-file-noselect target-filename))
+    
+    (ediff-buffers buf-to-patch target-buf startup-hooks)
   
-  (bury-buffer ediff-patch-diagnostics)
-  (message "Patch diagnostics available in buffer %s."
-          (buffer-name ediff-patch-diagnostics)))
+    (bury-buffer ediff-patch-diagnostics)
+    (message "Patch diagnostics available in buffer %s."
+            (buffer-name ediff-patch-diagnostics))))
 
 (defalias 'epatch 'ediff-patch-file)
 (defalias 'epatch-buffer 'ediff-patch-buffer)
@@ -1793,11 +2150,11 @@ Else, read patch file into a new buffer."
                                         (if ediff-use-last-dir
                                             ediff-last-dir-A
                                           default-directory)
-                                        nil nil))
+                                        nil))
           (ediff-read-file-name "File B to compare" 
                                 (if ediff-use-last-dir
                                     ediff-last-dir-B  nil)
-                                f f)
+                                f)
           )))
   (ediff-files-internal file-A 
                        (if (file-directory-p file-B)
@@ -1815,12 +2172,25 @@ Else, read patch file into a new buffer."
 ;;;###autoload
 (defun ediff-buffers (buffer-A buffer-B &optional startup-hooks)
   "Run Ediff on a pair of buffers, BUFFER-A and BUFFER-B."
-  (interactive "bBuffer A to compare: \nbBuffer B to compare: ")
+  (interactive 
+   (list (read-buffer "Buffer A to compare: " (current-buffer) t)
+        (read-buffer "Buffer B to compare: "
+                     (progn
+                       ;; realign buffers so that two visible bufs will be
+                       ;; at the top
+                       (save-window-excursion (other-window 1))
+                       (other-buffer (current-buffer) t))
+                     t)))
+  (if (not (ediff-buffer-live-p buffer-A))
+      (error "Buffer %S doesn't exist." buffer-A))
+  (if (not (ediff-buffer-live-p buffer-B))
+      (error "Buffer %S doesn't exist." buffer-B))
+      
   (let (file-A file-B)
-    (emerge-eval-in-buffer
+    (ediff-eval-in-buffer
      buffer-A
      (setq file-A (ediff-make-temp-file)))
-    (emerge-eval-in-buffer
+    (ediff-eval-in-buffer
      buffer-B
      (setq file-B (ediff-make-temp-file)))
     (ediff-setup (get-buffer buffer-A) file-A
@@ -1861,7 +2231,8 @@ If `F.~REV~' already exists, it is used instead of being re-created."
            (define-key vc-prefix-map "=" 'vc-ediff))
        (error "The VC package is apparently not installed.")))
   (let ((newvers (current-buffer))
-       (oldvers (vc-version-other-window rev)))
+       )
+    (vc-version-other-window rev)
     ;; current-buffer is supposed to contain the old version in another
     ;; window
     (ediff-buffers newvers (current-buffer)) 
@@ -1878,8 +2249,7 @@ With prefix argument, prompts for a revision name."
         (buff (concat (file-name-nondirectory filename) ".~" rev "~")))
     (message "Working...")
     (setq filename (expand-file-name filename))
-    (with-output-to-temp-buffer
-       buff
+    (with-output-to-temp-buffer buff
       (let ((output-buffer (ediff-rcs-get-output-buffer filename buff)))
        (delete-windows-on output-buffer)
        (save-excursion
@@ -1894,7 +2264,7 @@ With prefix argument, prompts for a revision name."
 (defun ediff-rcs-get-output-buffer (file name)
   ;; Get a buffer for RCS output for FILE, make it writable and clean it up.
   ;; Optional NAME is name to use instead of `*RCS-output*'.
-  ;; This is a mofified version from rcs.el v1.1. I use it here to make
+  ;; This is a modified version from rcs.el v1.1. I use it here to make
   ;; Ediff immune to changes in rcs.el
   (let* ((default-major-mode 'fundamental-mode);; no frills!
         (buf (get-buffer-create name)))
@@ -1923,20 +2293,6 @@ With prefix argument, prompts for revision name."
     ))
 
 
-;;; Functions to start Ediff via remote request
-
-;;;###autoload
-(defun ediff-files-remote (file-a file-b)
-  "Run Ediff on remote files, FILE-A and FILE-B."
-  (ediff-files-internal file-a file-b nil)
-  (throw 'client-wait nil))
-
-
-(defun ediff-remote-exit (exit-func)
-  "Exit remote Ediff session."
-  (ediff-really-quit)
-  (funcall exit-func))
-
 
 
 ;; Select the lowest window on the frame.
@@ -1982,7 +2338,7 @@ With prefix argument, prompts for revision name."
        (ediff-setup-control-window)
   
        ;; If diff reports errors, show them then quit.
-       (if (/= 0 (emerge-eval-in-buffer ediff-error-buffer (buffer-size)))
+       (if (/= 0 (ediff-eval-in-buffer ediff-error-buffer (buffer-size)))
            (let ((diff-output-buf  ediff-diff-buffer))
              (switch-to-buffer ediff-error-buffer)
              (ediff-kill-buffer-carefully control-buffer)
@@ -2059,7 +2415,7 @@ With prefix argument, prompts for revision name."
 (defun ediff-leave-window-config (control-buf)
   (and (eq control-buf (current-buffer))
        (/= (buffer-size) 0)
-       (emerge-eval-in-buffer
+       (ediff-eval-in-buffer
        control-buf
        (string= ediff-window-config-saved
                 (format "%S%S%S%S"
@@ -2091,17 +2447,16 @@ because this is required by `before-change-function'."
       (mapcar
        (function
        (lambda (buf)
-         (if (ediff-buffer-live-p buf)
-             (emerge-eval-in-buffer
-              buf
-              (if (eq ediff-highlighting-style 'ascii)
-                  (progn
-                    (ediff-unselect-and-select-difference
-                     ediff-current-difference 
-                     'unselect-only 'no-recenter)
-                    (setq rehighlight-key
-                          (substitute-command-keys "\\[ediff-recenter]"))
-                    ))))))
+         (ediff-eval-in-buffer
+          buf
+          (if (eq ediff-highlighting-style 'ascii)
+              (progn
+                (ediff-unselect-and-select-difference
+                 ediff-current-difference 
+                 'unselect-only 'no-recenter)
+                (setq rehighlight-key
+                      (substitute-command-keys "\\[ediff-recenter]"))
+                )))))
        ediff-this-buffer-control-sessions)
       (if rehighlight-key
          (error 
@@ -2112,15 +2467,14 @@ because this is required by `before-change-function'."
 (defun ediff-recompute-diffs ()
   "Recompute difference regions in buffers A and B."
   (interactive)
-  (let ((curr-diff ediff-current-difference)
-       (point-A (emerge-eval-in-buffer ediff-A-buffer (point)))
-       (point-B (emerge-eval-in-buffer ediff-B-buffer (point)))
+  (let ((point-A (ediff-eval-in-buffer ediff-A-buffer (point)))
+       (point-B (ediff-eval-in-buffer ediff-B-buffer (point)))
        file-A file-B)
     (ediff-unselect-and-select-difference -1)
-    (emerge-eval-in-buffer
+    (ediff-eval-in-buffer
      ediff-A-buffer
      (setq file-A (ediff-make-temp-file)))
-    (emerge-eval-in-buffer
+    (ediff-eval-in-buffer
      ediff-B-buffer
      (setq file-B (ediff-make-temp-file)))
     (ediff-clear-diff-vector ediff-difference-vector 'fine-diffs-also)
@@ -2131,13 +2485,13 @@ because this is required by `before-change-function'."
     (setq ediff-number-of-differences (length ediff-difference-vector))
     (delete-file file-A)
     (delete-file file-B)
-    (emerge-eval-in-buffer ediff-A-buffer (goto-char point-A))
+    (ediff-eval-in-buffer ediff-A-buffer (goto-char point-A))
     (ediff-jump-to-difference (ediff-diff-at-point 'A))
     (beep 1)
     (if (y-or-n-p 
-       "Ediff is around last posn in buff A. Stay (or goto last posn in B)? ")
+       "Ediff is at last posn in buff A. Stay (or goto last posn in B)? ")
        ()
-      (emerge-eval-in-buffer ediff-B-buffer (goto-char point-B))
+      (ediff-eval-in-buffer ediff-B-buffer (goto-char point-B))
       (ediff-jump-to-difference (ediff-diff-at-point 'B)))
     (message "")
     ))
@@ -2151,14 +2505,14 @@ and `auto-save' properties in buffer local variables.  Turns off
 
   ;; remember and alter buffer characteristics
   (set  (if arg 'ediff-A-buffer-values-setup 'ediff-A-buffer-values)
-       (emerge-eval-in-buffer
+       (ediff-eval-in-buffer
         ediff-A-buffer
         (prog1
             (emerge-save-variables ediff-saved-variables)
           (emerge-restore-variables ediff-saved-variables
                                     ediff-working-values))))
   (set  (if arg 'ediff-B-buffer-values-setup 'ediff-B-buffer-values)
-       (emerge-eval-in-buffer
+       (ediff-eval-in-buffer
         ediff-B-buffer
         (prog1
             (emerge-save-variables ediff-saved-variables)
@@ -2169,15 +2523,16 @@ and `auto-save' properties in buffer local variables.  Turns off
   "Restores properties saved by `ediff-remember-buffer-characteristics'."
   (let ((A-values (if arg ediff-A-buffer-values-setup ediff-A-buffer-values))
        (B-values (if arg ediff-B-buffer-values-setup ediff-B-buffer-values)))
-    (emerge-eval-in-buffer ediff-A-buffer
-                          (emerge-restore-variables ediff-saved-variables
-                                                    A-values))
-    (emerge-eval-in-buffer ediff-B-buffer
-                          (emerge-restore-variables ediff-saved-variables
-                                                    B-values))))
+       
+    (ediff-eval-in-buffer ediff-A-buffer
+                         (emerge-restore-variables ediff-saved-variables
+                                                   A-values))
+    (ediff-eval-in-buffer ediff-B-buffer
+                         (emerge-restore-variables ediff-saved-variables
+                                                   B-values))))
 
 
-;; if optional A-buffer and B-buffer are given, then construct a vector of
+;; If optional A-buffer and B-buffer are given, then construct a vector of
 ;; diff using point values. Otherwise, use line offsets.
 (defun ediff-extract-diffs (diff-buffer &optional A-buffer B-buffer)
   (let (diff-list
@@ -2186,14 +2541,14 @@ and `auto-save' properties in buffer local variables.  Turns off
 
     (if (and A-buffer B-buffer)
        (progn    ;; reset point in buffers A and B
-         (emerge-eval-in-buffer
+         (ediff-eval-in-buffer
           A-buffer
           (goto-char (point-min)))
-         (emerge-eval-in-buffer
+         (ediff-eval-in-buffer
           B-buffer
           (goto-char (point-min)))))
     
-    (emerge-eval-in-buffer
+    (ediff-eval-in-buffer
      diff-buffer
      (goto-char (point-min))
      (while (re-search-forward ediff-match-diff-line nil t)
@@ -2229,14 +2584,14 @@ and `auto-save' properties in buffer local variables.  Turns off
         (if (and A-buffer B-buffer)
             (progn    ;; computing main diff vector
               ;; convert to relative line numbers    
-              (emerge-eval-in-buffer
+              (ediff-eval-in-buffer
                A-buffer
                (forward-line (- a-begin a-prev))
                (setq a-begin-pt (point))
                (forward-line (- a-end a-begin))
                (setq a-end-pt (point)
                      a-prev a-end))
-              (emerge-eval-in-buffer
+              (ediff-eval-in-buffer
                B-buffer
                (forward-line (- b-begin b-prev))
                (setq b-begin-pt (point))
@@ -2255,7 +2610,7 @@ and `auto-save' properties in buffer local variables.  Turns off
                  a-prev a-end
                  b-prev b-end))
                  
-        ))) ;; end emerge-eval-in-buffer
+        ))) ;; end ediff-eval-in-buffer
     diff-list
     ))
     
@@ -2275,10 +2630,10 @@ and `auto-save' properties in buffer local variables.  Turns off
            b-begin      (aref list-element 2)
            b-end        (aref list-element 3))
            
-      ;; place overlays at the appropriate places in the buffers
+      ;; Put overlays at appropriate places in buffers
       (setq a-overlay (ediff-make-overlay a-begin a-end A-buffer))
-      ;; priorities of overlays should be equal in all ediff-control
-      ;; buffers. otherwise it won't work due to Emacs
+      ;; Priorities of overlays should be equal in all ediff control
+      ;; panels buffers. Otherwise it won't work due to Emacs
       ;; bug---insert-in-front-hooks will be called 
       ;; only on behalf of the buffer with higher priority.
       (ediff-overlay-put a-overlay 'priority ediff-shaded-overlay-priority)
@@ -2317,8 +2672,10 @@ and `auto-save' properties in buffer local variables.  Turns off
                         
       ;; record all overlays for this difference
       (setq diff-overlay-list
-           (nconc diff-overlay-list (list (vector a-overlay b-overlay nil)))
-           diff-list (cdr diff-list))
+           (nconc diff-overlay-list
+                  (list (vector a-overlay b-overlay nil nil)))
+           diff-list
+           (cdr diff-list))
       (message "Processing diff region %d of %d"
               current-diff total-diffs)
       ) ;; while
@@ -2339,9 +2696,14 @@ Reestablish the default three-window display."
   (interactive)
   (setq ediff-disturbed-overlays nil) ;; clear after use
   (let (buffer-read-only)
-    (ediff-setup-windows ediff-A-buffer ediff-B-buffer ediff-control-buffer))
+    (if (and (ediff-buffer-live-p ediff-A-buffer)
+            (ediff-buffer-live-p ediff-B-buffer))
+       (ediff-setup-windows
+        ediff-A-buffer ediff-B-buffer ediff-control-buffer)))
   ;; Redisplay whatever buffers are showing, if there is a selected difference
-  (if (and (>= ediff-current-difference 0)
+  (if (and (ediff-buffer-live-p ediff-A-buffer)
+          (ediff-buffer-live-p ediff-B-buffer)
+          (>= ediff-current-difference 0)
           (< ediff-current-difference ediff-number-of-differences))
       (let* ( ;; context must be saved before switching to windows A/B
             (buffer-A ediff-A-buffer)
@@ -2447,19 +2809,18 @@ On a dumb terminal, switches between ASCII highlighting and no highlighting."
 (defun ediff-toggle-autorefine ()
   "Toggle auto-refine mode."
   (interactive)
-  (if window-system
-      (cond ((eq ediff-auto-refine 'nix)
-            (setq ediff-auto-refine 'on)
-            (ediff-make-fine-diffs ediff-current-difference 'noforce)
-            (message "Auto-refining is ON."))
-           ((eq ediff-auto-refine 'on)
-            (message "Auto-refining is OFF.")
-            (setq ediff-auto-refine 'off))
-           (t
-            (ediff-set-fine-diff-properties ediff-current-difference 'default)
-            (message "Refinements are HIDDEN.")
-            (setq ediff-auto-refine 'nix))
-           )))
+  (cond ((eq ediff-auto-refine 'nix)
+        (setq ediff-auto-refine 'on)
+        (ediff-make-fine-diffs ediff-current-difference 'noforce)
+        (message "Auto-refining is ON."))
+       ((eq ediff-auto-refine 'on)
+        (message "Auto-refining is OFF.")
+        (setq ediff-auto-refine 'off))
+       (t
+        (ediff-set-fine-diff-properties ediff-current-difference 'default)
+        (message "Refinements are HIDDEN.")
+        (setq ediff-auto-refine 'nix))
+       ))
   
 (defun ediff-toggle-help ()
   "Toggle short/long help message."
@@ -2481,7 +2842,7 @@ On a dumb terminal, switches between ASCII highlighting and no highlighting."
 (defun ediff-toggle-read-only ()
   "Toggles buffer-read-only for buffer buffers A and B."
   (interactive)
-  (emerge-eval-in-buffer
+  (ediff-eval-in-buffer
    (if (eq last-command-char ?A) ediff-A-buffer ediff-B-buffer)
    (setq buffer-read-only (null buffer-read-only))))
 
@@ -2651,7 +3012,19 @@ With a prefix argument, go back that many differences."
       (let ((n (min ediff-number-of-differences
                    (+ ediff-current-difference (if arg arg 1))))
            (buffer-read-only nil))
-       (ediff-unselect-and-select-difference n))
+           
+       (while (and (< n ediff-number-of-differences)
+                   (funcall ediff-skip-diff-region-function n))
+         (setq n (1+ n)))
+       
+       (ediff-unselect-and-select-difference n)
+       ;; possibly skip inessential difference regions
+       (while (and ediff-ignore-similar-regions
+                   (< n ediff-number-of-differences)
+                   (ediff-no-fine-diffs n))
+         (setq n (1+ n))
+         (ediff-unselect-and-select-difference n))
+       ) ;; let
     (error "At end of the difference list.")))
 
 (defun ediff-previous-difference (&optional arg)
@@ -2661,7 +3034,18 @@ With a prefix argument, go back that many differences."
   (if (> ediff-current-difference -1)
       (let ((n (max -1 (- ediff-current-difference (if arg arg 1))))
            (buffer-read-only nil))
+           
+       (while (and (funcall ediff-skip-diff-region-function n)
+                   (> n -1))
+         (setq n (1- n)))
+       (ediff-unselect-and-select-difference n)
+       ;; possibly skip inessential difference regions
+       (while (and ediff-ignore-similar-regions
+                   (> n -1)
+                   (ediff-no-fine-diffs n))
+         (setq n (1- n))
          (ediff-unselect-and-select-difference n))
+       ) ;; let
     (error "At beginning of the difference list.")))
 
 (defun ediff-jump-to-difference (difference-number)
@@ -2676,8 +3060,9 @@ With a prefix argument, go back that many differences."
       
 (defun ediff-jump-to-difference-at-point ()
   "Go to the difference closest to the point in buffer A or B.
-If this command is invoked via `ja' or `ga' then the point in buffer A is
-used. Otherwise, buffer B is used."
+If this command is invoked via `\\[ediff-jump-to-difference-at-point]' 
+then the point in buffer B is used.
+Otherwise, buffer A's point is used."
   (interactive)
   (let ((buffer-read-only nil)
        (buf-type (ediff-char-to-buftype last-command-char)))
@@ -2689,15 +3074,17 @@ used. Otherwise, buffer B is used."
 (defun ediff-diff-at-point (buf-type)
   (let ((buffer (ediff-get-buffer buf-type))
        (ctl-buffer ediff-control-buffer)
+       (max-dif-num (1- ediff-number-of-differences))
        (diff-no -1)
        (prev-beg 0)
        (prev-end 0)
        (beg 0)
        (end 0))
        
-    (emerge-eval-in-buffer
+    (ediff-eval-in-buffer
      buffer
-     (while (or (< (point) prev-beg) (> (point) beg))
+     (while (and (or (< (point) prev-beg) (> (point) beg))
+                (< diff-no max-dif-num))
        (setq diff-no (1+ diff-no))
        (setq prev-beg beg
             prev-end end)
@@ -2720,10 +3107,14 @@ Otherwise, copy the difference given by `ediff-current-difference'."
   (interactive "P")
   (if arg
       (ediff-jump-to-difference arg))
-  (ediff-copy-diff ediff-current-difference
-                  (ediff-char-to-buftype (aref (this-command-keys) 0))
-                  (ediff-char-to-buftype (aref (this-command-keys) 1)))
-  (ediff-recenter 'no-rehighlight))
+  (let* ((key1 (aref (this-command-keys) 0))
+        (key2 (aref (this-command-keys) 1))
+        (char1 (if (ediff-if-lucid) (event-key key1) key1))
+        (char2 (if (ediff-if-lucid) (event-key key2) key2)))
+    (ediff-copy-diff ediff-current-difference
+                    (ediff-char-to-buftype char1)
+                    (ediff-char-to-buftype char2))
+    (ediff-recenter 'no-rehighlight)))
 
 
 (defun ediff-copy-diff (n from-buf-type to-buf-type)
@@ -2739,13 +3130,13 @@ Otherwise, copy the difference given by `ediff-current-difference'."
          (ediff-get-diff-posn to-buf-type 'beg n ctrl-buf))
     (setq reg-to-delete-end
          (ediff-get-diff-posn to-buf-type 'end n ctrl-buf))
-    (setq reg-to-copy (emerge-eval-in-buffer
+    (setq reg-to-copy (ediff-eval-in-buffer
                       from-buf
                       (buffer-substring (ediff-get-diff-posn
                                          from-buf-type 'beg n ctrl-buf)
                                         (ediff-get-diff-posn
                                          from-buf-type 'end n ctrl-buf))))
-    (setq reg-to-delete (emerge-eval-in-buffer
+    (setq reg-to-delete (ediff-eval-in-buffer
                         to-buf
                         (buffer-substring reg-to-delete-beg
                                           reg-to-delete-end)))
@@ -2762,7 +3153,7 @@ Otherwise, copy the difference given by `ediff-current-difference'."
       (if (ediff-test-save-region n to-buf-type)
            (condition-case conds
                (let (inhibit-read-only)
-                 (emerge-eval-in-buffer
+                 (ediff-eval-in-buffer
                   to-buf
                   ;; to prevent flags from interfering if buffer is writable
                   (setq inhibit-read-only (null buffer-read-only))
@@ -2848,7 +3239,7 @@ convenience."
     (setq ediff-disturbed-overlays nil) ;; clear before use
     
     (condition-case conds
-       (emerge-eval-in-buffer
+       (ediff-eval-in-buffer
         buf
         (let ((inhibit-read-only (null buffer-read-only))
               (before-change-function nil))
@@ -2890,6 +3281,118 @@ ARG is a prefix argument.  If ARG is nil, restore current-difference."
   (ediff-pop-diff ediff-current-difference 
                  (ediff-char-to-buftype last-command-char))
   (ediff-recenter 'no-rehighlight))
+  
+(defun ediff-toggle-regexp-match ()
+  "Toggle focus on difference regions that match a regexp or hide those diffs."
+  (interactive)
+  (let (regexp-A regexp-B)
+    (cond
+     ((or (and (eq ediff-skip-diff-region-function 'ediff-focus-on-regexp-matches)
+              (eq last-command-char ?f))
+         (and (eq ediff-skip-diff-region-function 'ediff-hide-regexp-matches)
+              (eq last-command-char ?h)))
+      (message "Selective browsing by regexp turned off.")
+      (setq ediff-skip-diff-region-function 'ediff-show-all-diffs))
+     ((eq last-command-char ?h)
+      (setq ediff-skip-diff-region-function 'ediff-hide-regexp-matches
+           regexp-A 
+           (read-string
+            (format 
+             "Ignore A-regions matching this regexp (default \"%s\"): "
+             (regexp-quote ediff-regexp-hide-A)))
+           regexp-B
+           (read-string
+            (format 
+             "Ignore B-regions matching this regexp (default \"%s\"): "
+             (regexp-quote ediff-regexp-hide-B))))
+      (message "Hide difference regions matching regexp.")
+      (or (string= regexp-A "") (setq ediff-regexp-hide-A regexp-A))
+      (or (string= regexp-B "") (setq ediff-regexp-hide-B regexp-B)))
+     ((eq last-command-char ?f)
+      (setq ediff-skip-diff-region-function 'ediff-focus-on-regexp-matches
+           regexp-A 
+           (read-string
+            (format 
+             "Focus on A-regions matching this regexp (default \"%s\"): "
+             (regexp-quote ediff-regexp-focus-A)))
+           regexp-B
+           (read-string
+            (format 
+             "Focus on B-regions matching this regexp (default \"%s\"): "
+             (regexp-quote ediff-regexp-focus-B))))
+      (message "Focus on difference regions matching regexp.")
+      (or (string= regexp-A "") (setq ediff-regexp-focus-A regexp-A))
+      (or (string= regexp-B "") (setq ediff-regexp-focus-B regexp-B))))))
+      
+(defun ediff-toggle-skip-similar ()
+  (interactive)
+  (setq ediff-ignore-similar-regions (not ediff-ignore-similar-regions))
+  (if ediff-ignore-similar-regions
+      (message "Skipping over regions that differ only in white space & line breaks.")
+    (message "Skipping over white-space differences turned off.")))
+  
+(defun ediff-show-all-diffs (n)
+  "Don't skip difference regions."
+  nil)
+  
+(defun ediff-focus-on-regexp-matches (n)
+  "Focus on diffs that match regexp `ediff-regexp-focus-A/B'.
+Regions to be ignored according to this function are those where   
+buf A region doesn't match `ediff-regexp-focus-A' and buf B region
+doesn't match `ediff-regexp-focus-B'.
+This function returns nil if the region number N (specified as
+an argument) is not to be ignored and t if region N is to be ignored.
+
+N is a region number used by Ediff internally. It is 1 less
+the number seen by the user."
+  (if (and (>= n 0) (< n ediff-number-of-differences))
+      (let* ((ctl-buf ediff-control-buffer)
+            (regex-A ediff-regexp-focus-A)
+            (regex-B ediff-regexp-focus-B)
+            (reg-A-match (ediff-eval-in-buffer
+                          ediff-A-buffer
+                          (goto-char (ediff-get-diff-posn 'A 'beg n ctl-buf))
+                          (re-search-forward
+                           regex-A
+                           (ediff-get-diff-posn 'A 'end n ctl-buf)
+                           t)))
+            (reg-B-match (ediff-eval-in-buffer
+                          ediff-B-buffer
+                          (goto-char (ediff-get-diff-posn 'B 'beg n ctl-buf))
+                          (re-search-forward
+                           regex-B
+                           (ediff-get-diff-posn 'B 'end n ctl-buf)
+                           t))))
+       (not (and reg-A-match reg-B-match)))))
+  
+(defun ediff-hide-regexp-matches (n)  
+  "Hide diffs that match regexp `ediff-regexp-hide-A/B'.
+Regions to be ignored are those where buf A region matches
+`ediff-regexp-hide-A' and buf B region matches `ediff-regexp-hide-B'.
+This function returns nil if the region number N (specified as
+an argument) is not to be ignored and t if region N is to be ignored.
+
+N is a region number used by Ediff internally. It is 1 less
+the number seen by the user."
+  (if (and (>= n 0) (< n ediff-number-of-differences))
+      (let* ((ctl-buf ediff-control-buffer)
+            (regex-A ediff-regexp-hide-A)
+            (regex-B ediff-regexp-hide-B)
+            (reg-A-match (ediff-eval-in-buffer
+                          ediff-A-buffer
+                          (goto-char (ediff-get-diff-posn 'A 'beg n ctl-buf))
+                          (re-search-forward
+                           regex-A
+                           (ediff-get-diff-posn 'A 'end n ctl-buf)
+                           t)))
+            (reg-B-match (ediff-eval-in-buffer
+                          ediff-B-buffer
+                          (goto-char (ediff-get-diff-posn 'B 'beg n ctl-buf))
+                          (re-search-forward
+                           regex-B
+                           (ediff-get-diff-posn 'B 'end n ctl-buf)
+                           t))))
+       (and reg-A-match reg-B-match))))
     
 
 ;;; Quitting, suspending, etc.
@@ -2916,24 +3419,29 @@ flags of the compared file buffers, kills Ediff buffers for this session
   
   ;; restore buffer mode line id's in buffer-A/B
   (let ((control-buffer ediff-control-buffer))
-    (emerge-eval-in-buffer
-     ediff-A-buffer
-     (setq before-change-function nil)
-     (setq ediff-this-buffer-control-sessions 
-          (delq control-buffer ediff-this-buffer-control-sessions))
-     (if (null ediff-this-buffer-control-sessions)
-        (setq local-write-file-hooks 
-              (delq 'ediff-block-write-file local-write-file-hooks)))
-     (kill-local-variable 'mode-line-buffer-identification))
-    (emerge-eval-in-buffer
-     ediff-B-buffer
-     (setq ediff-this-buffer-control-sessions 
-          (delq control-buffer ediff-this-buffer-control-sessions))
-     (if (null ediff-this-buffer-control-sessions)
-        (setq local-write-file-hooks 
-              (delq 'ediff-block-write-file local-write-file-hooks)))
-     (setq before-change-function nil)
-     (kill-local-variable 'mode-line-buffer-identification)))
+    (condition-case nil
+       (ediff-eval-in-buffer
+        ediff-A-buffer
+        (setq before-change-function nil)
+        (setq ediff-this-buffer-control-sessions 
+              (delq control-buffer ediff-this-buffer-control-sessions))
+        (if (null ediff-this-buffer-control-sessions)
+            (setq local-write-file-hooks 
+                  (delq 'ediff-block-write-file local-write-file-hooks)))
+        (kill-local-variable 'mode-line-buffer-identification))
+      (error))
+      
+    (condition-case nil
+       (ediff-eval-in-buffer
+        ediff-B-buffer
+        (setq ediff-this-buffer-control-sessions 
+              (delq control-buffer ediff-this-buffer-control-sessions))
+        (if (null ediff-this-buffer-control-sessions)
+            (setq local-write-file-hooks 
+                  (delq 'ediff-block-write-file local-write-file-hooks)))
+        (setq before-change-function nil)
+        (kill-local-variable 'mode-line-buffer-identification))
+      (error)))
    
   (run-hooks 'ediff-quit-hooks))
   
@@ -2949,14 +3457,27 @@ flags of the compared file buffers, kills Ediff buffers for this session
   (let ((buff-A ediff-A-buffer)
        (buff-B ediff-B-buffer))
     (ediff-kill-buffer-carefully ediff-diff-buffer)
+    (ediff-kill-buffer-carefully ediff-fine-diff-buffer)
     (ediff-kill-buffer-carefully ediff-tmp-buffer)
     (ediff-kill-buffer-carefully ediff-error-buffer)
     (ediff-kill-buffer-carefully ediff-control-buffer)
     (ediff-kill-buffer-carefully ediff-patch-diagnostics)
     (delete-other-windows)
-    (switch-to-buffer buff-B)
-    (split-window-vertically)
-    (switch-to-buffer buff-A)))
+    ;; display only if not visible
+    
+    (condition-case nil
+       (or (get-buffer-window buff-B t)
+           (switch-to-buffer buff-B))
+      (error))
+    (condition-case nil
+       (or (get-buffer-window buff-A t)
+           (progn
+             (if (get-buffer-window buff-B)
+                 (split-window-vertically))
+             (switch-to-buffer buff-A)))
+      (error))
+    (message "")
+    ))
     
 ;; The default way of suspending Ediff.
 ;; Buries Ediff buffers, kills all windows.
@@ -2966,11 +3487,13 @@ flags of the compared file buffers, kills Ediff buffers for this session
        (buf-patch ediff-patch-buf)
        (buf-patch-diag ediff-patch-diagnostics)
        (buf-err  ediff-error-buffer)
-       (buf-diff ediff-diff-buffer))
+       (buf-diff ediff-diff-buffer)
+       (buf-fine-diff ediff-fine-diff-buffer))
     (bury-buffer) ;; ediff-control-buffer
     (delete-other-windows)
     (bury-buffer buf-err)
     (bury-buffer buf-diff)
+    (bury-buffer buf-fine-diff)
     (bury-buffer buf-patch)
     (bury-buffer buf-patch-diag)
     (bury-buffer buf-A)
@@ -2979,46 +3502,72 @@ flags of the compared file buffers, kills Ediff buffers for this session
      
 (defun ediff-suspend ()
   "Suspend Ediff.
-To resume, switch to the appropriate `*ediff-control*'
+To resume, switch to the appropriate `Ediff Control Panel'
 buffer and then type \\[ediff-recenter].  Ediff will automatically set
 up an appropriate window config."
   (interactive)
   (let ((key (substitute-command-keys "\\[ediff-recenter]")))
   (run-hooks 'ediff-suspend-hooks)
   (message
-   "To resume Ediff, switch to *ediff-control* and hit '%S'" key)))
+   "To resume Ediff, switch to Ediff Control Panel and hit '%S'" key)))
 
 
-(defun ediff-file-names ()
+(defun ediff-status-info ()
   "Show the names of the buffers or files being operated on by Ediff.
 Hit \\[ediff-recenter] to reset the windows afterward."
   (interactive)
-  (with-output-to-temp-buffer "*Help*"
-    (emerge-eval-in-buffer ediff-A-buffer
+  (with-output-to-temp-buffer " *ediff-info*"
+    (ediff-eval-in-buffer ediff-A-buffer
                           (if buffer-file-name
                               (princ
                                (format "File A is: %s\n" buffer-file-name))
                             (princ 
                              (format "Buffer A is: %s\n" (buffer-name)))))
-    (emerge-eval-in-buffer ediff-B-buffer
+    (ediff-eval-in-buffer ediff-B-buffer
                           (if buffer-file-name
                               (princ
                                (format "File B is: %s\n" buffer-file-name))
                             (princ 
                              (format "Buffer B is: %s\n" (buffer-name)))))
-    ))
-
-
-
-(defun ediff-line-numbers ()
-  "Display the current line numbers.
-This function displays the line numbers of the points in the A, B."
-  (interactive)
-  (let* ((A-line (emerge-eval-in-buffer ediff-A-buffer
+                             
+    (let* ((A-line (ediff-eval-in-buffer ediff-A-buffer
                                       (count-lines (point-min) (point))))
-        (B-line (emerge-eval-in-buffer ediff-B-buffer
+          (B-line (ediff-eval-in-buffer ediff-B-buffer
                                       (count-lines (point-min) (point)))))
-    (message "At lines:  A = %d, B = %d" A-line B-line)))
+      (princ (format "\nPoint position in buffer A = %d\n" A-line))
+      (princ (format "Point position in buffer B = %d\n" B-line)))
+      
+    (princ (format "\nCurrent difference number = %S\n"
+                  (cond ((< ediff-current-difference 0) 'start)
+                        ((>= ediff-current-difference
+                             ediff-number-of-differences) 'end)
+                        (t (1+ ediff-current-difference)))))
+
+    (cond (ediff-ignore-similar-regions
+          (princ "\nSkipping over regions that differ only in white space & line breaks."))
+         (t 
+          (princ "\nNo skipping over regions that differ in white space & line breaks.")))
+          
+    (cond ((eq ediff-skip-diff-region-function 'ediff-show-all-diffs)
+          (princ "\nSelective browsing by regexp is off.\n"))
+         ((eq ediff-skip-diff-region-function 'ediff-hide-regexp-matches)
+          (princ
+           "\nIgnoring regions that match")
+          (princ
+           (format "\n\t regexp `%s' in buffer A  and\n\t regexp `%s' in buffer B\n"
+                   ediff-regexp-hide-A ediff-regexp-hide-B)))
+         ((eq ediff-skip-diff-region-function 'ediff-focus-on-regexp-matches)
+          (princ
+           "\nFocusing on regions that match")
+          (princ
+           (format "\n\t regexp `%s' in buffer A  and\n\t regexp `%s' in buffer B\n"
+                   ediff-regexp-focus-A ediff-regexp-focus-B)))
+         (t (princ "\nSelective browsing via a user-defined method.\n")))
+    
+    (princ "\nBug fixes to:  Michael Kifer <kifer@cs.sunysb.edu>\n")
+    (princ   "Gripes to:     /dev/null <dev@null.gov>\n")
+    ))
+
 
 
 ;;; Support routines
@@ -3026,7 +3575,9 @@ This function displays the line numbers of the points in the A, B."
 ;; Select a difference by placing the ASCII flags around the appropriate
 ;; group of lines in the A, B buffers
 (defun ediff-select-difference (n)
-  (if (and (>= n 0) (< n ediff-number-of-differences))
+  (if (and (ediff-buffer-live-p ediff-A-buffer)
+          (ediff-buffer-live-p ediff-B-buffer)
+          (>= n 0) (< n ediff-number-of-differences))
       (progn
        (ediff-remember-buffer-characteristics)
        (if (and window-system ediff-want-faces)
@@ -3039,20 +3590,19 @@ This function displays the line numbers of the points in the A, B."
          (ediff-place-flags-in-buffer 'B ediff-B-buffer
                                       ediff-control-buffer n)) 
          
-       (if window-system
-           (cond ((eq ediff-auto-refine 'on)
-                  (if (and
-                       (> ediff-auto-refine-limit
-                          (- (ediff-get-diff-posn 'A 'end n)
-                             (ediff-get-diff-posn 'A 'beg n)))
-                       (> ediff-auto-refine-limit
-                          (- (ediff-get-diff-posn 'B 'end n)
-                             (ediff-get-diff-posn 'B 'beg n))))
-                      (ediff-make-fine-diffs n 'noforce)
-                    (ediff-make-fine-diffs n 'skip)))
-                 
-                 ((eq ediff-auto-refine 'off)       ; highlight iff fine diffs
-                  (ediff-make-fine-diffs n 'skip)))) ; already exist 
+       (cond ((eq ediff-auto-refine 'on)
+              (if (and
+                   (> ediff-auto-refine-limit
+                      (- (ediff-get-diff-posn 'A 'end n)
+                         (ediff-get-diff-posn 'A 'beg n)))
+                   (> ediff-auto-refine-limit
+                      (- (ediff-get-diff-posn 'B 'end n)
+                         (ediff-get-diff-posn 'B 'beg n))))
+                  (ediff-make-fine-diffs n 'noforce)
+                (ediff-make-fine-diffs n 'skip)))
+             
+             ((eq ediff-auto-refine 'off)       ; highlight iff fine diffs
+              (ediff-make-fine-diffs n 'skip))) ; already exist 
      
        (ediff-restore-buffer-characteristics)
        (run-hooks 'ediff-select-hooks))))
@@ -3082,9 +3632,7 @@ This function displays the line numbers of the points in the A, B."
        (setq ediff-highlighting-style nil)
        
        ;; unhighlight fine diffs
-       (if window-system
-           (ediff-set-fine-diff-properties
-            ediff-current-difference 'default))
+       (ediff-set-fine-diff-properties ediff-current-difference 'default)
        
        (run-hooks 'ediff-unselect-hooks))))
   
@@ -3097,7 +3645,7 @@ This function displays the line numbers of the points in the A, B."
 ;; don't recenter buffers after selecting/unselecting.
 ;; 
 ;; Don't use `ediff-select-difference' and `ediff-unselect-difference'
-;; directly,;; since this will screw up the undo info in the presence of
+;; directly, since this will screw up the undo info in the presence of
 ;; ASCII flags. 
 ;; Instead, use `ediff-unselect-and-select-difference' with appropriate
 ;; flags.
@@ -3114,15 +3662,18 @@ This function displays the line numbers of the points in the A, B."
       (or no-recenter
          (ediff-recenter 'no-rehighlight)))
          
-    (emerge-eval-in-buffer
-     ediff-A-buffer
-     (setq buf-A-undo buffer-undo-list))
-    (emerge-eval-in-buffer
-     ediff-B-buffer
-     (setq buf-B-undo buffer-undo-list))
+    (if (and (ediff-buffer-live-p ediff-A-buffer) 
+            (ediff-buffer-live-p ediff-B-buffer))
+       (progn
+         (ediff-eval-in-buffer
+          ediff-A-buffer
+          (setq buf-A-undo buffer-undo-list))
+         (ediff-eval-in-buffer
+          ediff-B-buffer
+          (setq buf-B-undo buffer-undo-list))
     
-    (buffer-disable-undo ediff-A-buffer)
-    (buffer-disable-undo ediff-B-buffer)
+         (buffer-disable-undo ediff-A-buffer)
+         (buffer-disable-undo ediff-B-buffer)))
     
     (unwind-protect    ;; we don't want to lose undo info due to error
        (progn
@@ -3130,11 +3681,11 @@ This function displays the line numbers of the points in the A, B."
              (ediff-unselect-difference ediff-current-difference))
          
          ;; Auto-save buffers while Ediff flags are temporarily removed.
-         (emerge-eval-in-buffer
+         (ediff-eval-in-buffer
           ediff-A-buffer
           (if buf-A-modified
               (do-auto-save)))
-         (emerge-eval-in-buffer
+         (ediff-eval-in-buffer
           ediff-B-buffer
           (if buf-B-modified
               (do-auto-save)))
@@ -3144,40 +3695,39 @@ This function displays the line numbers of the points in the A, B."
          (setq ediff-current-difference n)
          ) ;; end protected section
       
-      (emerge-eval-in-buffer
+      (ediff-eval-in-buffer
        control-buf
-      (ediff-refresh-mode-line)
+       (ediff-refresh-mode-line)
+       ;; restore undo and buffer-modified info
+       (ediff-eval-in-buffer
+       ediff-A-buffer
+       (set-buffer-modified-p buf-A-modified)
+       (setq buffer-undo-list buf-A-undo)))
       
-      ;; restore undo and buffer-modified info
-      (emerge-eval-in-buffer
-       ediff-A-buffer
-       (set-buffer-modified-p buf-A-modified)
-       (setq buffer-undo-list buf-A-undo)))
-       
-      (emerge-eval-in-buffer
+      (ediff-eval-in-buffer
        control-buf
-      (emerge-eval-in-buffer
-       ediff-B-buffer
-       (set-buffer-modified-p buf-B-modified)
-       (setq buffer-undo-list buf-B-undo))
-      ))))
+       (ediff-eval-in-buffer
+       ediff-B-buffer
+       (set-buffer-modified-p buf-B-modified)
+       (setq buffer-undo-list buf-B-undo)))
+      )))
 
 ;; Revise the mode line to display which difference we have selected
 
 (defun ediff-refresh-mode-line ()
   (setq mode-line-buffer-identification
        (cond ((< ediff-current-difference 0)
-              (list (format "Ediff: %%b  At start: %d diffs"
+              (list (format "%%b:  At start of %d diffs"
                             ediff-number-of-differences)))
              ((>= ediff-current-difference ediff-number-of-differences)
-              (list (format "Ediff: %%b  At end: %d diffs"
+              (list (format "%%b:  At end of %d diffs"
                             ediff-number-of-differences)))
              (t
-              (list (format "Ediff: %%b   diff %d of %d"
+              (list (format "%%b:  diff %d of %d"
                             (1+ ediff-current-difference)
                             ediff-number-of-differences)))))
   ;; Force mode-line redisplay
-  (set-buffer-modified-p (buffer-modified-p)))
+  (force-mode-line-update))
 
 
 
@@ -3187,56 +3737,50 @@ This function displays the line numbers of the points in the A, B."
                (< ediff-current-difference ediff-number-of-differences)))
       (error "No difference selected")))
 
-(defun ediff-read-file-name (prompt default-dir default-file A-file)
+(defun ediff-read-file-name (prompt default-dir default-file)
 ; This is a modified version of a similar function in `emerge.el'.
 ; PROMPT should not have trailing ': ', so that it can be modified
 ; according to context.
-; If both A-FILE and default-dir are set, the file constructed our of
-; default-dir and the non-directory part of A-FILE is used as default and as
-; initial input.
-; If A-FILE is set (but default-dir is not), it is used as default and
-; initial input. 
 ; If default-file is set, it should be used as the default value.
 ; If default-dir is non-nil, use it as the default directory.
-; Otherwise, use the value in Emacs's var default-directory.
+; Otherwise, use the value of Emacs' variable `default-directory.'
+
+  ;; hack default-dir if it is not set
+  (setq default-dir
+       (file-name-as-directory
+        (abbreviate-file-name
+         (expand-file-name (or default-dir
+                               (and default-file
+                                    (file-name-directory default-file))
+                               default-directory)))))
+
+  ;; strip the directory from default-file
+  (if default-file
+      (setq default-file (file-name-nondirectory default-file)))
+
   (let (f)
-    (setq f
-         (cond
-          ((and A-file default-dir)
-           (read-file-name (format "%s (default %s%s): "
-                                   prompt
-                                   (abbreviate-file-name
-                                    (expand-file-name default-dir))
-                                   (file-name-nondirectory A-file))
-                           (expand-file-name default-dir)
-                           (concat (expand-file-name default-dir)
-                                   (file-name-nondirectory A-file))
-                           'confirm (file-name-nondirectory A-file)))
-          (A-file
-           (read-file-name (format "%s (default %s): "
-                                   prompt (file-name-nondirectory A-file))
-                           (expand-file-name (file-name-directory A-file))
-                           A-file
-                           'confirm (file-name-nondirectory A-file)))
-          ;; If there is a default file, but no A-file, use it.
-          (default-file
-            (read-file-name (format "%s (default %s): " prompt default-file)
-                            default-dir;; if nil then default-directory.
-                            nil 'confirm))
-          (t
-           (read-file-name (concat prompt ": ")
-                           default-dir;; if nil then default-directory.
-                           nil 'confirm))))
+    (setq f (expand-file-name
+            (read-file-name
+             (format "%s%s: "
+                     prompt
+                     (if default-file
+                         (concat " (default " default-file ")")
+                       ""))
+             default-dir
+             default-file
+             'confirm
+             default-file
+             )
+            default-dir
+            ))
     ;; If user enters a directory name, expand the default file in that
     ;; directory.  This allows the user to enter a directory name for the
-    ;; B-file and diff against the A-file in that directory instead of a DIRED
-    ;; listing!
-    (if (and (file-directory-p f)
-            (or A-file default-file))
+    ;; B-file and diff against the default-file in that directory instead
+    ;; of a DIRED listing!
+    (if (and (file-directory-p f) default-file)
        (setq f (expand-file-name
-                (file-name-nondirectory (or A-file default-file)) f)))
-    f))
-
+                (file-name-nondirectory default-file) f)))
+    f)) 
   
 ;; If `prefix' is given, then it is used as a prefix for the temp file
 ;; name. Otherwise, `.buffer-name' is used. If `file' is given, use this
@@ -3248,8 +3792,7 @@ This function displays the line numbers of the points in the A, B."
                                (or prefix
                                    (format
                                     ".%s"
-                                    (file-name-nondirectory
-                                     (buffer-name))))))))) 
+                                    "buf")))))))
     ;; create the file
     (write-region (point-min) (point-max) f nil 'no-message) 
     (set-file-modes f ediff-temp-file-mode)
@@ -3267,19 +3810,56 @@ This function displays the line numbers of the points in the A, B."
          (setq limit (1+ (match-end 0))))))
   str)
 
+;; Make sure the current buffer (for a file) has the same contents as the
+;; file on disk, and attempt to remedy the situation if not.
+;; Signal an error if we can't make them the same, or the user doesn't want
+;; to do what is necessary to make them the same.
+;; If file has file handlers (indicated by the optional arg), then we
+;; offer to instead of saving. This is one difference with Emerge. 
+;; Another is that we always offer to revert obsolete files, whether they
+;; are modified or not.
+(defun ediff-verify-file-buffer (&optional file-magic)
+  ;; First check if the file has been modified since the buffer visited it.
+  (if (verify-visited-file-modtime (current-buffer))
+      (if (buffer-modified-p)
+         ;; If buffer is not obsolete and is modified, offer to save
+         (if (yes-or-no-p 
+              (format "Buffer out of sync with visited file. %s file %s? "
+                      (if file-magic "Revert" "Save")
+                      buffer-file-name))
+             (if (not file-magic)
+                 (save-buffer)
+               ;; for some reason, file-name-handlers append instead of
+               ;; replacing, so we have to erase first.
+               (erase-buffer)
+               (revert-buffer t t))
+           (error "Buffer out of sync for file %s" buffer-file-name))
+       ;; If buffer is not obsolete and is not modified, do nothing
+       nil)
+    ;; If buffer is obsolete, offer to revert
+    (if (yes-or-no-p
+        (format "Buffer out of sync with visited file. Revert file %s? "
+                buffer-file-name))
+       (progn
+         (if file-magic
+             (erase-buffer))
+         (revert-buffer t t))
+      (error "Buffer out of sync for file %s" buffer-file-name))))
+
 
 (defun ediff-block-write-file ()    
   "Prevent writing files A and B directly."
   (if (ediff-check-for-ascii-flags)
-      (error "Use 'wa' and 'wb' to save buffs A/B (first switch back to *ediff-control*.")))
+      (error "Type 'wa' and 'wb' in Ediff Control Panel to save buffs A/B.")))
 
 (defun ediff-check-for-ascii-flags ()
   (eval
    (cons 'or
         (mapcar (function (lambda (buf)
-                            (emerge-eval-in-buffer
-                             buf
-                             (eq ediff-highlighting-style 'ascii))))
+                            (if (ediff-buffer-live-p buf)
+                                (ediff-eval-in-buffer
+                                 buf
+                                 (eq ediff-highlighting-style 'ascii)))))
                 ediff-this-buffer-control-sessions))))
 
 (defun ediff-insert-in-front (overl beg end)
@@ -3331,14 +3911,21 @@ them before they disappear."
     (setq ediff-disturbed-overlays nil))
   
 (defun ediff-save-buffer ()
-  "Safe way of saving buffers A and B."
+  "Safe way of saving buffers A, B, and the diff output.
+`wa' saves buffer A, `wb' saves buffer B, and `wf' saves the diff output."
   (interactive)
   (let ((hooks local-write-file-hooks))
     (ediff-unselect-and-select-difference ediff-current-difference
                                          'unselect-only)
     (unwind-protect
-       (emerge-eval-in-buffer
-        (if (eq last-command-char ?a) ediff-A-buffer ediff-B-buffer)
+       (ediff-eval-in-buffer
+        (cond ((eq last-command-char ?a)
+               ediff-A-buffer)
+              ((eq last-command-char ?b)
+               ediff-B-buffer)
+              ((eq last-command-char ?f)
+               (message "Saving diff output ...")(sit-for 1)
+               ediff-diff-buffer))
         ;; temporarily remove writing block 
         (setq hooks (delq 'ediff-block-write-file hooks))
         (let ((local-write-file-hooks hooks))
@@ -3353,7 +3940,7 @@ them before they disappear."
 ;; of read-only flags.
 (defun ediff-remove-flags-from-buffer (buffer before-posn after-posn
                                              before-flag after-flag)
-  (emerge-eval-in-buffer
+  (ediff-eval-in-buffer
    buffer
    (let ((buffer-read-only nil)
         (before-change-function nil)
@@ -3374,7 +3961,7 @@ them before they disappear."
        (message "Trouble removing ASCII flag"))
      (if (ediff-if-lucid)
         (ediff-adjust-disturbed-extents-lucid (point)))
-        
+     
      (if (ediff-if-lucid)
         (ediff-collect-extents-lucid (point)))
      (goto-char after-posn)
@@ -3391,7 +3978,7 @@ them before they disappear."
 
 ;; This is a modified `emerge-place-flags-in-buffer'.
 (defun ediff-place-flags-in-buffer (buf-type buffer ctl-buffer difference)
-  (emerge-eval-in-buffer
+  (ediff-eval-in-buffer
    buffer
    (ediff-place-flags-in-buffer1 buf-type ctl-buffer difference)))
 
@@ -3413,7 +4000,7 @@ them before they disappear."
       (goto-char before)
       (setq beg-of-line (bolp))
       
-      (setq flag (emerge-eval-in-buffer
+      (setq flag (ediff-eval-in-buffer
                  ctl-buffer
                  (if beg-of-line
                      (set before-flag-name ediff-before-flag-bol)
@@ -3433,7 +4020,7 @@ them before they disappear."
       (goto-char after)
       (setq beg-of-line (bolp))
 
-      (setq flag (emerge-eval-in-buffer
+      (setq flag (ediff-eval-in-buffer
                  ctl-buffer
                  (if beg-of-line
                      (set after-flag-name ediff-after-flag-bol)
@@ -3462,7 +4049,7 @@ buffer."
     (or control-buf
        (setq control-buf (current-buffer)))
 
-    (emerge-eval-in-buffer
+    (ediff-eval-in-buffer
      control-buf
      (or n  (setq n ediff-current-difference))
      (if (or (< n 0) (>= n ediff-number-of-differences))
@@ -3486,8 +4073,8 @@ buffer."
 ;; These would highlight differences under X
 (defun ediff-highlight-diff (n)
   "Put face on diff N.  Invoked for X displays only."
-  (let* ((last-A (emerge-eval-in-buffer ediff-A-buffer (point-max)))
-        (last-B (emerge-eval-in-buffer ediff-B-buffer (point-max)))
+  (let* ((last-A (ediff-eval-in-buffer ediff-A-buffer (point-max)))
+        (last-B (ediff-eval-in-buffer ediff-B-buffer (point-max)))
         (begin-A (ediff-get-diff-posn 'A 'beg n))
         (end-A (ediff-get-diff-posn 'A 'end n))
         (xtraA (if (equal begin-A end-A) 1 0))
@@ -3532,7 +4119,7 @@ buffer."
     (ediff-overlay-put (ediff-get-diff-overlay n 'A) 'face nil)
     (ediff-overlay-put (ediff-get-diff-overlay n 'B) 'face nil)
     
-    (sit-for 0) ;; needs to synch for some reason
+    ;; (sit-for 0) ;; needed synch for some reason in v19.22
     ))
 
 
@@ -3595,26 +4182,25 @@ buffer."
   "Re/unhighlights buffers A and B with all flags from all Ediff sessions.
 This is usually needed only when a
 buffer is involved in multiple Ediff sessions."
-  (let* ((A-sessions (emerge-eval-in-buffer
+  (let* ((A-sessions (ediff-eval-in-buffer
                      ediff-A-buffer
                      ediff-this-buffer-control-sessions))
-        (B-sessions (emerge-eval-in-buffer
+        (B-sessions (ediff-eval-in-buffer
                      ediff-B-buffer
                      ediff-this-buffer-control-sessions))
         (sessions (ediff-union A-sessions B-sessions))
         (flag (if (eq action 'remove) 'unselect-only 'select-only)))
         
     (mapcar (function (lambda (buf)
-                       (if (ediff-buffer-live-p buf)
-                           (emerge-eval-in-buffer
-                            buf
-                            (or (if (eq action 'insert)
+                       (ediff-eval-in-buffer
+                        buf
+                        (or (if (eq action 'insert)
                                 (memq ediff-highlighting-style '(ascii off))
-                                (not (eq ediff-highlighting-style 'ascii)))
-                                (ediff-unselect-and-select-difference
-                                 ediff-current-difference 
-                                 flag 'no-recenter))
-                            ))))
+                              (not (eq ediff-highlighting-style 'ascii)))
+                            (ediff-unselect-and-select-difference
+                             ediff-current-difference 
+                             flag 'no-recenter))
+                        )))
            sessions)))
 
 
@@ -3622,6 +4208,12 @@ buffer is involved in multiple Ediff sessions."
 ;;; Refinement of current diff     
 ;; Split region along word boundaries. Each word will be on its own line.
 ;; Output to buffer out-buffer.
+(defun ediff-forward-word ()
+  "Move point one word forward. Used for splitting diff regions into words.
+This is the default for `ediff-forward-word-function'."
+  (or (> (skip-chars-forward ediff-word-1) 0)
+      (> (skip-chars-forward ediff-word-2) 0)))
+
 (defun ediff-wordify (beg end in-buffer out-buffer)
   (let (sv-point string)
     (save-excursion
@@ -3635,14 +4227,12 @@ buffer is involved in multiple Ediff sessions."
      (skip-chars-forward ediff-whitespace)
      (delete-region (point-min) (point))
      
-     (while (or (> (skip-chars-forward ediff-word-1) 0)
-               (> (skip-chars-forward ediff-word-2) 0))
-       
+     (while (not (eobp))
+       (funcall ediff-forward-word-function)
        (setq sv-point (point))
        (skip-chars-forward ediff-whitespace)
        (delete-region sv-point (point))
-       (insert "\n"))))) 
-       
+       (insert "\n")))))
 
 ;; `n' is the diff region to work on. 
 ;; if `flag' is 'noforce then make fine-diffs only if this region's fine
@@ -3650,98 +4240,107 @@ buffer is involved in multiple Ediff sessions."
 ;; if `flag' is 'skip then don't compute fine diffs for this region.
 (defun ediff-make-fine-diffs (&optional n flag)       
   (interactive)
-  (if (not window-system)
-      (error "Non-window system."))
   (or n  (setq n ediff-current-difference))
   
   (if (< ediff-number-of-differences 1)
       (error "No differences found."))
   
-  (let ((file-A ediff-temp-file-A)
+  (or (< n 0)
+      (>= n ediff-number-of-differences)
+      ;; n is within the range
+      (let ((file-A ediff-temp-file-A)
        (file-B ediff-temp-file-B))
        
-    (cond ((and (eq flag 'noforce) (ediff-get-fine-diff-vector n))
-          nil)
-         ((eq flag 'skip)
-          (or (ediff-get-fine-diff-vector n)
-              (eq ediff-auto-refine 'off)
-              (message "Region %d is larger than auto-refine limit. Hit %S to force-refine."
-                       (1+ n)
-                       (substitute-command-keys "\\[ediff-make-fine-diffs]")
-                       )))
-         (t
-          ;; delete old fine diffs
-          (ediff-clear-diff-vector (ediff-get-fine-diff-vector n))
-          ;; recompute fine diffs
-          (setq ediff-tmp-buffer (get-buffer-create "*ediff-tmp*"))
-      
-          (funcall ediff-wordify-function
-                   (ediff-get-diff-posn 'A 'beg n)
-                   (ediff-get-diff-posn 'A 'end n)
-                   ediff-A-buffer
-                   ediff-tmp-buffer)
-          (emerge-eval-in-buffer
-           ediff-tmp-buffer
-           (setq file-A (ediff-make-temp-file ".fine-diffs-A" file-A)))
-    
-          (funcall ediff-wordify-function
-                   (ediff-get-diff-posn 'B 'beg n)
-                   (ediff-get-diff-posn 'B 'end n)
-                   ediff-B-buffer
-                   ediff-tmp-buffer)
-          (emerge-eval-in-buffer
-           ediff-tmp-buffer
-           (setq file-B (ediff-make-temp-file ".fine-diffs-B" file-B)))
-   
-          ;; save temp file names.
-          (setq ediff-temp-file-A file-A
-                ediff-temp-file-B file-B)
-          
-          ;; set the new vector of fine diffs, if none exists
-          (ediff-set-fine-diff-vector
-                n
-                (ediff-setup-diff-regions file-A file-B 'use-old-diff-buf n
-                                          ediff-fine-diff-program
-                                          ediff-fine-diff-options
-                                          ediff-fine-diff-ok-lines-regexp))
-          (if (eq (length (ediff-get-fine-diff-vector n)) 0)
-              (message "No differences found in region %d, except for white space and line breaks."
-                       (1+ n))))
-         ) ;; end cond
-    (ediff-set-fine-diff-properties n)
-    ))
+       (cond ((and (eq flag 'noforce) (ediff-get-fine-diff-vector n))
+              nil)
+             ((eq flag 'skip)
+              (or (ediff-get-fine-diff-vector n)
+                  (eq ediff-auto-refine 'off)
+                  (message "Region %d is larger than auto-refine limit. Hit %S to force-refine."
+                           (1+ n)
+                           (substitute-command-keys
+                            "\\[ediff-make-fine-diffs]")
+                           )))
+             (t
+              ;; delete old fine diffs
+              (ediff-clear-diff-vector (ediff-get-fine-diff-vector n))
+              ;; recompute fine diffs
+              (setq ediff-tmp-buffer (get-buffer-create "*ediff-tmp*"))
+              
+              (ediff-wordify
+               (ediff-get-diff-posn 'A 'beg n)
+               (ediff-get-diff-posn 'A 'end n)
+               ediff-A-buffer
+               ediff-tmp-buffer)
+              (ediff-eval-in-buffer
+               ediff-tmp-buffer
+               (setq file-A (ediff-make-temp-file ".fine-diffs-A" file-A)))
+              
+              (ediff-wordify
+               (ediff-get-diff-posn 'B 'beg n)
+               (ediff-get-diff-posn 'B 'end n)
+               ediff-B-buffer
+               ediff-tmp-buffer)
+              (ediff-eval-in-buffer
+               ediff-tmp-buffer
+               (setq file-B (ediff-make-temp-file ".fine-diffs-B" file-B)))
+              
+              ;; save temp file names.
+              (setq ediff-temp-file-A file-A
+                    ediff-temp-file-B file-B)
+              
+              ;; set the new vector of fine diffs, if none exists
+              (ediff-set-fine-diff-vector
+               n
+               (ediff-setup-diff-regions file-A file-B 'use-old-diff-buf n
+                                         ediff-fine-diff-program
+                                         ediff-fine-diff-options
+                                         ediff-fine-diff-ok-lines-regexp))
+              (if (eq (length (ediff-get-fine-diff-vector n)) 0)
+                  (progn
+                    (message "No diffs found in region %d, except for white space and line breaks."
+                             (1+ n))
+                    (ediff-mark-diff-as-space-only n t))
+                (ediff-mark-diff-as-space-only n nil)))
+             ) ;; end cond
+       (ediff-set-fine-diff-properties n)
+       )))
     
     
 (defun ediff-set-fine-diff-properties (n &optional default)
-  (let ((fine-diff-vector  (ediff-get-fine-diff-vector n))
-       (face-A (if default 'default (face-name ediff-fine-diff-face-A)))
-       (face-B (if default 'default (face-name ediff-fine-diff-face-B)))
-       (priority-A (if default
-                       0
-                     (1+ (ediff-overlay-get ediff-current-diff-overlay-A
-                                            'priority))))
-       (priority-B (if default
-                       0
-                     (1+ (ediff-overlay-get ediff-current-diff-overlay-B
-                                            'priority)))))
-    (mapcar
-     (function (lambda (vec)
-                (ediff-overlay-put 
-                 (ediff-get-diff-overlay-from-vector vec 'A)
-                 'face face-A)
-                (ediff-overlay-put
-                 (ediff-get-diff-overlay-from-vector vec 'A)
-                 'priority priority-A)
-                
-                (ediff-overlay-put
-                 (ediff-get-diff-overlay-from-vector vec 'B)
-                 'face face-B)
-                (ediff-overlay-put
-                 (ediff-get-diff-overlay-from-vector vec 'B)
-                 'priority priority-B)
-                ))
-     fine-diff-vector)
-    ))
+  (or (not window-system)
+      (< n 0)
+      (>= n ediff-number-of-differences)
+      ;; in a window system, set faces and priorities of fine overlays
+      (let ((fine-diff-vector  (ediff-get-fine-diff-vector n))
+           (face-A (if default 'default (face-name ediff-fine-diff-face-A)))
+           (face-B (if default 'default (face-name ediff-fine-diff-face-B)))
+           (priority-A (if default
+                           0
+                         (1+ (ediff-overlay-get ediff-current-diff-overlay-A
+                                                'priority))))
+           (priority-B (if default
+                           0
+                         (1+ (ediff-overlay-get ediff-current-diff-overlay-B
+                                                'priority)))))
+       (mapcar
+        (function (lambda (vec)
+                    (ediff-overlay-put 
+                     (ediff-get-diff-overlay-from-vector vec 'A)
+                     'face face-A)
+                    (ediff-overlay-put
+                     (ediff-get-diff-overlay-from-vector vec 'A)
+                     'priority priority-A)
+                    
+                    (ediff-overlay-put
+                     (ediff-get-diff-overlay-from-vector vec 'B)
+                     'face face-B)
+                    (ediff-overlay-put
+                     (ediff-get-diff-overlay-from-vector vec 'B)
+                     'priority priority-B)
+                    ))
+        fine-diff-vector)
+       )))
     
 (defun ediff-convert-diffs-to-overlays-refine (A-buffer B-buffer
                                                diff-list refine-region)
@@ -3752,8 +4351,8 @@ buffer is involved in multiple Ediff sessions."
         a-begin a-end b-begin b-end
         a-overlay b-overlay)
 
-    (emerge-eval-in-buffer A-buffer (goto-char reg-A-start))
-    (emerge-eval-in-buffer B-buffer (goto-char reg-B-start))
+    (ediff-eval-in-buffer A-buffer (goto-char reg-A-start))
+    (ediff-eval-in-buffer B-buffer (goto-char reg-B-start))
      
     (while diff-list
       (setq current-diff (1+ current-diff)
@@ -3763,7 +4362,7 @@ buffer is involved in multiple Ediff sessions."
            b-begin      (aref list-element 2)
            b-end        (aref list-element 3))
            
-      ;; place overlays at the appropriate places in the buffers
+      ;; put overlays at appropriate places in buffers
       (setq a-overlay (ediff-make-overlay 
                       (ediff-goto-word (1+ a-begin) A-buffer)
                       (ediff-goto-word a-end A-buffer 'end)
@@ -3785,21 +4384,19 @@ buffer is involved in multiple Ediff sessions."
 
 ;; goto word #n starting at current position in buffer `buf'
 ;; For ediff, a word is either a string of a-z,A-Z, incl `-' and `_';
-;; or a string of other non-blanks. A blank is a \n\t\j
+;; or a string of other non-blanks. A blank is a \n\t\C-j
 ;; If `flag' is non-nil, goto the end of the n-th word.
 (defun ediff-goto-word (n buf &optional flag)
-  (emerge-eval-in-buffer
+  (ediff-eval-in-buffer
    buf
    (skip-chars-forward ediff-whitespace)
    (while (> n 1)
-     (or (> (skip-chars-forward ediff-word-1) 0)
-        (> (skip-chars-forward ediff-word-2) 0))
+     (funcall ediff-forward-word-function)
      (skip-chars-forward ediff-whitespace)
      (setq n (1- n)))
    ;(if flag
    (if (and flag (> n 0))
-       (or (> (skip-chars-forward ediff-word-1) 0)
-          (> (skip-chars-forward ediff-word-2) 0)))
+       (funcall ediff-forward-word-function))
    (point)))
 
   
@@ -3825,7 +4422,6 @@ avoid loading cl-*."
               (setq list1 (cons (car list2) list1)))
           (setq list2 (cdr list2)))
         list1)))
-        
 
 ;(defun ediff-debug ()
 ;  (interactive)