aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/ediff-util.el
diff options
context:
space:
mode:
authorStefan Monnier <[email protected]>2008-05-28 17:35:34 +0000
committerStefan Monnier <[email protected]>2008-05-28 17:35:34 +0000
commitab1d38354db0b8c9028347f4c532d546f3d928d8 (patch)
treedf884efd8aac4c0eb14d30f8e79db80039f4125d /lisp/ediff-util.el
parenta6e0b7e57248adf3ce9615f8de08dac2ff46f6ee (diff)
* progmodes/flymake.el (flymake-save-buffer-in-file):
* shadowfile.el (shadow-copy-file): * arc-mode.el (archive-*-write-file-member): * files.el (diff-buffer-with-file): * subr.el (with-temp-file): Pass nil to write-region. * jka-compr.el (jka-compr-write-region): Preserve `start's nullness.
Diffstat (limited to 'lisp/ediff-util.el')
-rw-r--r--lisp/ediff-util.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ediff-util.el b/lisp/ediff-util.el
index 2622d461bf..9aef531b39 100644
--- a/lisp/ediff-util.el
+++ b/lisp/ediff-util.el
@@ -2715,7 +2715,7 @@ only if this merge job is part of a group, i.e., was invoked from within
(if (or (not (file-exists-p file))
(y-or-n-p (format "File %s exists, overwrite? " file)))
(progn
- ;;(write-region (point-min) (point-max) file)
+ ;;(write-region nil nil file)
(ediff-with-current-buffer buf
(set-visited-file-name file)
(save-buffer))