GNU bug report logs -
#66993
[PATCH] project.el: avoid asking user about project-list-file lock
Previous Next
Full log
Message #8 received at 66993 <at> debbugs.gnu.org (full text, mbox):
On 07/11/2023 23:28, Spencer Baugh wrote:
> - project-mode-line will call this on mode-line update
Hopefully this will never result in writes to disk made more often than
once per user command, or buffer switch, etc.
> - (write-region nil nil filename nil 'silent))))
> + ;; If project-list-file is locked by some other Emacs, fail to
> + ;; write rather than prompting the user.
> + (ignore-error file-locked
> + (cl-letf (((symbol-function 'ask-user-about-lock)
> + (lambda (file opponent)
> + (signal 'file-locked (list file opponent)))))
> + (write-region nil nil filename nil 'silent))))))
I wonder if all cl-letf uses like this will survive native compilation,
for example. Or will break over time due to internal changes in the
function.
Anyway, maybe an implementation like this (totally untested)?
Or the warning could be skipped entirely.
diff --git a/lisp/progmodes/project.el b/lisp/progmodes/project.el
index a6426c08840..e544dfefa73 100644
--- a/lisp/progmodes/project.el
+++ b/lisp/progmodes/project.el
@@ -1719,7 +1719,9 @@ project--write-project-list
(expand-file-name name)))))
project--list)
(current-buffer)))
- (write-region nil nil filename nil 'silent))))
+ (let ((noninteractive t))
+ (with-demoted-errors "Failed to save file list: %S"
+ (write-region nil nil filename nil 'silent))))))
;;;###autoload
(defun project-remember-project (pr &optional no-write)
This bug report was last modified 1 year and 268 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.