]> git.eshelyaron.com Git - emacs.git/commitdiff
Adjust jka-compr to recent Tramp changes.
authorPaul Eggert <eggert@cs.ucla.edu>
Sat, 12 Aug 2017 15:52:25 +0000 (08:52 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Sat, 12 Aug 2017 15:52:53 +0000 (08:52 -0700)
* lisp/jka-compr.el (jka-compr-write-region):
Two new args LOCKNAME and MUSTBENEW.

lisp/jka-compr.el

index 26a7cf506fd4c72d97d68d500bf2ac74aedc033e..9e780f82b31a21fd7a265ffeecb5b8faa2a32c57 100644 (file)
@@ -252,7 +252,8 @@ There should be no more than seven characters after the final `/'."
   "This routine will return the name of a new file."
   (make-temp-file jka-compr-temp-name-template))
 
-(defun jka-compr-write-region (start end file &optional append visit)
+(defun jka-compr-write-region (start end file &optional
+                                     append visit lockname mustbenew)
   (let* ((filename (expand-file-name file))
         (visit-file (if (stringp visit) (expand-file-name visit) filename))
         (info (jka-compr-get-compression-info visit-file))
@@ -334,7 +335,8 @@ There should be no more than seven characters after the final `/'."
              (jka-compr-run-real-handler 'write-region
                                          (list (point-min) (point-max)
                                                filename
-                                               (and append can-append) 'dont))
+                                               (and append can-append) 'dont
+                                               lockname mustbenew))
              (erase-buffer)) )
 
          (delete-file temp-file)
@@ -365,7 +367,8 @@ There should be no more than seven characters after the final `/'."
          nil)
 
       (jka-compr-run-real-handler 'write-region
-                                 (list start end filename append visit)))))
+                                 (list start end filename append visit
+                                       lockname mustbenew)))))
 
 
 (defun jka-compr-insert-file-contents (file &optional visit beg end replace)