unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
From: Paul Pogonyshev <pogonyshev@gmail.com>
To: Eli Zaretskii <eliz@gnu.org>
Cc: 41489@debbugs.gnu.org
Subject: bug#41489: `package-dir-info' fails on a directory with a non-saved file
Date: Tue, 26 May 2020 00:55:05 +0200	[thread overview]
Message-ID: <CAG7Bpaot2G5GbkTkxqJ4tsJ-2mw7fSRgks5FY=qw3a7qO32DjQ@mail.gmail.com> (raw)
In-Reply-To: <CAG7Bpar-RkAPZtbDH7ySsw_FkCq7Na9xbNAZVxDdQOsOxezWQg@mail.gmail.com>


[-- Attachment #1.1: Type: text/plain, Size: 1261 bytes --]

I also noticed that the error depends on the Moon phase, i.e. it is not
_always_ reproducible. The reason is that it depends on the random order of
elements in `(directory-files default-directory t "\\.el\\'" t)' result.

On Sat, 23 May 2020 at 20:37, Paul Pogonyshev <pogonyshev@gmail.com> wrote:

> Sorry. In any Emacs version. I tested with a fairly recently compiled
> `master', but judging by the source code I checked out two minutes ago, the
> bug is there currently too. The cause is this:
>
>             (insert-file-contents (pop files))
>
> This form is not inside `(ignore-errors ...)' and so any failure is
> propagated out of `package-dir-info' too.
>
> Paul
>
> On Sat, 23 May 2020 at 20:23, Eli Zaretskii <eliz@gnu.org> wrote:
>
>> > From: Paul Pogonyshev <pogonyshev@gmail.com>
>> > Date: Sat, 23 May 2020 19:50:02 +0200
>> >
>> > - edit any Elisp file, but don't save it;
>> > - open its directory in Dired;
>> > - evaluate `(package-dir-info)'.
>> >
>> > Fails with: (file-missing "Opening input file" "No such file or
>> directory" ".../.#blabla.el")
>>
>> In what version of Emacs is that?  Please always supply the
>> information collected by report-emacs-bug, as that saves unnecessary
>> questions such as this one.
>>
>> Thanks.
>>
>>

[-- Attachment #1.2: Type: text/html, Size: 2077 bytes --]

[-- Attachment #2: 0001-Fix-random-errors-in-package-dir-info-caused-by-unre.patch --]
[-- Type: text/x-patch, Size: 1005 bytes --]

From 5fd331e43e18e7b0fc11e93eb3b5fcd43a301d36 Mon Sep 17 00:00:00 2001
From: Paul Pogonyshev <pogonyshev@gmail.com>
Date: Tue, 26 May 2020 00:52:14 +0200
Subject: [PATCH] Fix random errors in `package-dir-info' caused by unreadable
 files (bug#39722)

---
 lisp/emacs-lisp/package.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el
index 9a6d1d7319..99ba5d7107 100644
--- a/lisp/emacs-lisp/package.el
+++ b/lisp/emacs-lisp/package.el
@@ -1181,7 +1181,9 @@ package-dir-info
             info)
         (while files
           (with-temp-buffer
-            (insert-file-contents (pop files))
+            ;; Skip unreadable files, e.g. locks for unsaved `.el'
+            ;; buffers (bug#41489).
+            (ignore-errors (insert-file-contents (pop files)))
             ;; When we find the file with the data,
             (when (setq info (ignore-errors (package-buffer-info)))
               ;; stop looping,
-- 
2.20.1


  reply	other threads:[~2020-05-25 22:55 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-05-23 17:50 bug#41489: `package-dir-info' fails on a directory with a non-saved file Paul Pogonyshev
2020-05-23 18:23 ` Eli Zaretskii
2020-05-23 18:37   ` Paul Pogonyshev
2020-05-25 22:55     ` Paul Pogonyshev [this message]
2020-05-26  2:07       ` Stefan Kangas
2020-05-26  6:54         ` Paul Pogonyshev
2020-05-26  8:51           ` Stefan Kangas
2021-12-05  1:13 ` Lars Ingebrigtsen

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.gnu.org/software/emacs/

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

  git send-email \
    --in-reply-to='CAG7Bpaot2G5GbkTkxqJ4tsJ-2mw7fSRgks5FY=qw3a7qO32DjQ@mail.gmail.com' \
    --to=pogonyshev@gmail.com \
    --cc=41489@debbugs.gnu.org \
    --cc=eliz@gnu.org \
    /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.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).