diff options
author | Michael Kifer <kifer@cs.stonybrook.edu> | 2005-11-15 18:49:33 +0000 |
---|---|---|
committer | Michael Kifer <kifer@cs.stonybrook.edu> | 2005-11-15 18:49:33 +0000 |
commit | 3cc60763f80392e20ffcbb12c0a33d8a4032f860 (patch) | |
tree | 19a72ac050cf3212e408a598ba4184625390be1a /lisp/ediff-util.el | |
parent | 54b171c787f722dec1fb965fd46b6fc0c70c168a (diff) | |
download | emacs-3cc60763f80392e20ffcbb12c0a33d8a4032f860.tar.gz |
2005-11-15 Michael Kifer <kifer@cs.stonybrook.edu>
* ediff-util (ediff-make-temp-file): use proper file-name-handler
operation
Diffstat (limited to 'lisp/ediff-util.el')
-rw-r--r-- | lisp/ediff-util.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ediff-util.el b/lisp/ediff-util.el index 9db05ad143b..caa927f2113 100644 --- a/lisp/ediff-util.el +++ b/lisp/ediff-util.el @@ -3173,7 +3173,7 @@ Hit \\[ediff-recenter] to reset the windows afterward." (setq f (concat ediff-temp-file-prefix p) short-f (concat ediff-temp-file-prefix short-p) f (cond (given-file) - ((find-file-name-handler f 'find-file-noselect) + ((find-file-name-handler f 'insert-file-contents) ;; to thwart file handlers in write-region, e.g., if file ;; name ends with .Z or .gz ;; This is needed so that patches produced by ediff will |