emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Greg Minshall <minshall@umich.edu>
To: Ihor Radchenko <yantar92@posteo.net>
Cc: emacs-orgmode@gnu.org
Subject: Re: [BUG] cache file conflict? [9.7-pre (release_9.6.29-1441-gaa71fa @ /home/minshall/.emacs.d/straight/build/org/)]
Date: Thu, 30 May 2024 10:19:09 +0300	[thread overview]
Message-ID: <131445.1717053549@archlinux> (raw)
In-Reply-To: <87a5kii3th.fsf@localhost>

Ihor,

> May you try the attached alternative patch?

it's been a week that i've been running this patch without seeing the
error messages (that used to come up once or more per day).

so, it would seem to have corrected the issue.

thanks again for looking at this.

cheers, Greg

> From 793f7df996b3aade65a66d936e4bd761af154b26 Mon Sep 17 00:00:00 2001
> Message-ID: <793f7df996b3aade65a66d936e4bd761af154b26.1716370593.git.yantar92@posteo.net>
> From: Ihor Radchenko <yantar92@posteo.net>
> Date: Fri, 17 May 2024 14:28:48 +0300
> Subject: [PATCH v2] lisp/org-persist.el: Ignore lock files when writing cache
> 
> * lisp/org-persist.el (org-persist--write-elisp-file): Ignore locks.
> 
> Reported-by: Greg Minshall <minshall@umich.edu>
> Link: https://orgmode.org/list/574109.1715751441@archlinux
> ---
>  lisp/org-persist.el | 15 +++++++++------
>  1 file changed, 9 insertions(+), 6 deletions(-)
> 
> diff --git a/lisp/org-persist.el b/lisp/org-persist.el
> index 0df345536..8a7461649 100644
> --- a/lisp/org-persist.el
> +++ b/lisp/org-persist.el
> @@ -476,12 +476,15 @@ (defun org-persist--write-elisp-file (file data &optional no-circular pp)
>          (start-time (float-time)))
>      (unless (file-exists-p (file-name-directory file))
>        (make-directory (file-name-directory file) t))
> -    (with-temp-file file
> -      (insert ";;   -*- mode: lisp-data; -*-\n")
> -      (if pp
> -          (let ((pp-use-max-width nil)) ; Emacs bug#58687
> -            (pp data (current-buffer)))
> -        (prin1 data (current-buffer))))
> +    ;; Force writing even when the file happens to be opened by
> +    ;; another Emacs process.
> +    (cl-letf (((symbol-function #'ask-user-about-lock) #'always))
> +      (with-temp-file file
> +        (insert ";;   -*- mode: lisp-data; -*-\n")
> +        (if pp
> +            (let ((pp-use-max-width nil)) ; Emacs bug#58687
> +              (pp data (current-buffer)))
> +          (prin1 data (current-buffer)))))
>      (org-persist--display-time
>       (- (float-time) start-time)
>       "Writing to %S" file)))
> -- 
> 2.45.1


  parent reply	other threads:[~2024-05-30  7:21 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-05-15  5:37 [BUG] cache file conflict? [9.7-pre (release_9.6.29-1441-gaa71fa @ /home/minshall/.emacs.d/straight/build/org/)] Greg Minshall
2024-05-17 11:31 ` Ihor Radchenko
2024-05-17 17:15   ` Greg Minshall
2024-05-19  3:12   ` Greg Minshall
2024-05-19 11:41     ` Ihor Radchenko
2024-05-22  4:09       ` Greg Minshall
2024-05-22  9:38         ` Ihor Radchenko
2024-05-22 17:13           ` Greg Minshall
2024-05-30  7:19           ` Greg Minshall [this message]
2024-05-30 13:32             ` Ihor Radchenko
2024-06-02  7:25               ` Greg Minshall

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=131445.1717053549@archlinux \
    --to=minshall@umich.edu \
    --cc=emacs-orgmode@gnu.org \
    --cc=yantar92@posteo.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).