]> git.eshelyaron.com Git - emacs.git/commitdiff
Speed up smerge-refine-regions by avoiding fsync
authorNoam Postavsky <npostavs@gmail.com>
Thu, 12 Jul 2018 00:13:25 +0000 (20:13 -0400)
committerNoam Postavsky <npostavs@gmail.com>
Fri, 13 Jul 2018 01:45:31 +0000 (21:45 -0400)
* lisp/vc/smerge-mode.el (smerge-refine-regions): Bind
write-region-inhibit-fsync to t.  This was reported in
https://github.com/magit/magit/pull/2834 to give a noticable speedup.

lisp/vc/smerge-mode.el

index cb51fbab8eb60b84b2022e670cae54276fa4144d..ff41473435c78569e5a1e7ee96eb633acee34133 100644 (file)
@@ -1075,9 +1075,10 @@ used to replace chars to try and eliminate some spurious differences."
           (if smerge-refine-weight-hack (make-hash-table :test #'equal))))
     (unless (markerp beg1) (setq beg1 (copy-marker beg1)))
     (unless (markerp beg2) (setq beg2 (copy-marker beg2)))
-    ;; Chop up regions into smaller elements and save into files.
-    (smerge--refine-chopup-region beg1 end1 file1 preproc)
-    (smerge--refine-chopup-region beg2 end2 file2 preproc)
+    (let ((write-region-inhibit-fsync t)) ; Don't fsync temp files (Bug#12747).
+      ;; Chop up regions into smaller elements and save into files.
+      (smerge--refine-chopup-region beg1 end1 file1 preproc)
+      (smerge--refine-chopup-region beg2 end2 file2 preproc))
 
     ;; Call diff on those files.
     (unwind-protect