]> git.eshelyaron.com Git - emacs.git/commitdiff
lisp/gnus/mm-decode.el (mm-display-external): Run a timer for the temp files deletion...
authorKatsumi Yamaoka <yamaoka@jpl.org>
Mon, 12 Aug 2013 05:59:47 +0000 (05:59 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Mon, 12 Aug 2013 05:59:47 +0000 (05:59 +0000)
lisp/gnus/ChangeLog
lisp/gnus/mm-decode.el

index 6b7be997ea921959d20dca7229bb6cc8a1e8be60..1d8c6e4a732d31130cb2d805d4bb7ca031091d53 100644 (file)
@@ -1,5 +1,9 @@
 2013-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
 
+       * mm-decode.el (mm-display-external): Run a timer for the temp files
+       deletion after a viwer exits; add a deletion timer for the needsterm
+       case, too.
+
        * mm-decode.el (mm-display-external): Try to delete temporary files by
        using a 1-min. timer.
 
index 40c1d849f3c48428d88b18a7cc5c137f798f5f61..dbbf0befe608dacc3ed15db26cc555273731f39e 100644 (file)
@@ -954,10 +954,20 @@ external if displayed external."
                            method file (mm-handle-type handle))))
              (unwind-protect
                  (if window-system
-                     (start-process "*display*" nil
-                                    mm-external-terminal-program
-                                    "-e" shell-file-name
-                                    shell-command-switch command)
+                     (set-process-sentinel
+                      (start-process "*display*" nil
+                                     mm-external-terminal-program
+                                     "-e" shell-file-name
+                                     shell-command-switch command)
+                      `(lambda (process state)
+                         (if (eq 'exit (process-status process))
+                             (run-at-time
+                              60.0 nil
+                              (lambda ()
+                                (ignore-errors (delete-file ,file))
+                                (ignore-errors (delete-directory
+                                                ,(file-name-directory
+                                                  file))))))))
                    (require 'term)
                    (require 'gnus-win)
                    (set-buffer
@@ -971,11 +981,15 @@ external if displayed external."
                    (set-process-sentinel
                     (get-buffer-process buffer)
                     `(lambda (process state)
-                       (if (eq 'exit (process-status process))
-                           (gnus-configure-windows
-                            ',gnus-current-window-configuration))))
+                       (when (eq 'exit (process-status process))
+                         (ignore-errors (delete-file ,file))
+                         (ignore-errors
+                           (delete-directory ,(file-name-directory file)))
+                         (gnus-configure-windows
+                          ',gnus-current-window-configuration))))
                    (gnus-configure-windows 'display-term))
-               (mm-handle-set-external-undisplayer handle (cons file buffer)))
+               (mm-handle-set-external-undisplayer handle (cons file buffer))
+               (add-to-list 'mm-temp-files-to-be-deleted file t))
              (message "Displaying %s..." command))
            'external)
           (copiousoutput
@@ -1021,15 +1035,14 @@ external if displayed external."
                                   (buffer buffer)
                                   (command command)
                                   (handle handle))
-                      (run-at-time
-                       60.0 nil
-                       (lambda ()
-                         (ignore-errors
-                           (delete-file file))
-                         (ignore-errors
-                           (delete-directory (file-name-directory file)))))
                       (lambda (process state)
                         (when (eq (process-status process) 'exit)
+                          (run-at-time
+                           60.0 nil
+                           (lambda ()
+                             (ignore-errors (delete-file file))
+                             (ignore-errors (delete-directory
+                                             (file-name-directory file)))))
                           (when (buffer-live-p outbuf)
                             (with-current-buffer outbuf
                               (let ((buffer-read-only nil)