]> git.eshelyaron.com Git - emacs.git/commitdiff
* mm-util.el (mm-decompress-buffer): Use `delete-file'.
authorJuanma Barranquero <lekktu@gmail.com>
Mon, 3 May 2010 22:38:50 +0000 (00:38 +0200)
committerJuanma Barranquero <lekktu@gmail.com>
Mon, 3 May 2010 22:38:50 +0000 (00:38 +0200)
lisp/gnus/ChangeLog
lisp/gnus/mm-util.el

index fbf1302d4f7aa112f78e180ec8265c328dfb7fca..bb6d11c81bd80a2ba4bfd021b8d1294f7c3db2fa 100644 (file)
@@ -1,3 +1,8 @@
+2010-05-03  Juanma Barranquero  <lekktu@gmail.com>
+
+       * mm-util.el (mm-decompress-buffer): Use `delete-file';
+       alias `jka-compr-delete-temp-file' no longer exists.
+
 2010-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        Use define-minor-mode in Gnus where applicable.
index 1e70a69b1fd95b26491f475ad2970d0cd49287ef..c1dc4f5b7542926aa692e6d5de2e62da307d757c 100644 (file)
@@ -1563,7 +1563,7 @@ decompressed data.  The buffer's multibyteness must be turned off."
              (error
               (setq err-msg (error-message-string err)))))
          (when (file-exists-p err-file)
-           (ignore-errors (jka-compr-delete-temp-file err-file)))
+           (ignore-errors (delete-file err-file)))
          (when inplace
            (unless err-msg
              (delete-region (point-min) (point-max))