bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#74881: 31.0.50; [PATCH] * lisp/vc/ediff-util.el: Remove temp files o


From: Lin Sun
Subject: bug#74881: 31.0.50; [PATCH] * lisp/vc/ediff-util.el: Remove temp files on kill-emacs
Date: Fri, 27 Dec 2024 05:38:57 +0000

Hi Eli,

I checked the "ediff-delete-temp-files", it should be safe for executing.  Is 
it more safe to wrap it with `ignore-errors` ? Like: 

+(defun ediff--delete-temp-files-on-kill-emacs ()
+  "Delete the temp-files associated with the ediff buffers."
+  (dolist (b (buffer-list))
+    (with-current-buffer b
+      (when (eq major-mode 'ediff-mode)
+        (ignore-errors (ediff-delete-temp-files))))))





reply via email to

[Prev in Thread] Current Thread [Next in Thread]