Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
6aac58fc
Commit
6aac58fc
authored
Aug 12, 2013
by
Katsumi Yamaoka
Browse files
lisp/gnus/mm-decode.el (mm-display-external): Try to delete temporary files by using a 1-min. timer
parent
eaca0446
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
0 deletions
+12
-0
lisp/gnus/ChangeLog
lisp/gnus/ChangeLog
+5
-0
lisp/gnus/mm-decode.el
lisp/gnus/mm-decode.el
+7
-0
No files found.
lisp/gnus/ChangeLog
View file @
6aac58fc
2013-08-12 Katsumi Yamaoka <yamaoka@jpl.org>
* mm-decode.el (mm-display-external): Try to delete temporary files by
using a 1-min. timer.
2013-08-09 Katsumi Yamaoka <yamaoka@jpl.org>
* mm-decode.el (mm-temp-files-to-be-deleted, mm-temp-files-cache-file):
...
...
lisp/gnus/mm-decode.el
View file @
6aac58fc
...
...
@@ -1021,6 +1021,13 @@ 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
)
(
when
(
buffer-live-p
outbuf
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment