diff options
| author | Michael Kifer | 2005-11-15 18:49:33 +0000 |
|---|---|---|
| committer | Michael Kifer | 2005-11-15 18:49:33 +0000 |
| commit | 3cc60763f80392e20ffcbb12c0a33d8a4032f860 (patch) | |
| tree | 19a72ac050cf3212e408a598ba4184625390be1a | |
| parent | 54b171c787f722dec1fb965fd46b6fc0c70c168a (diff) | |
| download | emacs-3cc60763f80392e20ffcbb12c0a33d8a4032f860.tar.gz emacs-3cc60763f80392e20ffcbb12c0a33d8a4032f860.zip | |
2005-11-15 Michael Kifer <kifer@cs.stonybrook.edu>
* ediff-util (ediff-make-temp-file): use proper file-name-handler
operation
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/ediff-util.el | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 99ec4d32b9a..ee76e27c103 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -5,6 +5,9 @@ | |||
| 5 | 5 | ||
| 6 | * viper.el (viper-emacs-state-mode-list): Ensure that | 6 | * viper.el (viper-emacs-state-mode-list): Ensure that |
| 7 | rcirc-mode buffers come up in Emacs state. | 7 | rcirc-mode buffers come up in Emacs state. |
| 8 | |||
| 9 | * ediff-util (ediff-make-temp-file): use proper file-name-handler | ||
| 10 | operation | ||
| 8 | 11 | ||
| 9 | 2005-11-15 Dan Nicolaescu <dann@ics.uci.edu> | 12 | 2005-11-15 Dan Nicolaescu <dann@ics.uci.edu> |
| 10 | 13 | ||
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." | |||
| 3173 | (setq f (concat ediff-temp-file-prefix p) | 3173 | (setq f (concat ediff-temp-file-prefix p) |
| 3174 | short-f (concat ediff-temp-file-prefix short-p) | 3174 | short-f (concat ediff-temp-file-prefix short-p) |
| 3175 | f (cond (given-file) | 3175 | f (cond (given-file) |
| 3176 | ((find-file-name-handler f 'find-file-noselect) | 3176 | ((find-file-name-handler f 'insert-file-contents) |
| 3177 | ;; to thwart file handlers in write-region, e.g., if file | 3177 | ;; to thwart file handlers in write-region, e.g., if file |
| 3178 | ;; name ends with .Z or .gz | 3178 | ;; name ends with .Z or .gz |
| 3179 | ;; This is needed so that patches produced by ediff will | 3179 | ;; This is needed so that patches produced by ediff will |