unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
From: Denys Mentiei via "Bug reports for GNU Emacs, the Swiss army knife of text editors" <bug-gnu-emacs@gnu.org>
To: Eli Zaretskii <eliz@gnu.org>
Cc: "59507@debbugs.gnu.org" <59507@debbugs.gnu.org>
Subject: bug#59507: 29.0.50; Autoloads generation hangs on Windows and Emacs 29
Date: Wed, 23 Nov 2022 19:36:12 +0000	[thread overview]
Message-ID: <HE1PR0302MB2603368DBC24E458E29EB488F00C9@HE1PR0302MB2603.eurprd03.prod.outlook.com> (raw)
In-Reply-To: <837czlzqou.fsf@gnu.org>

[-- Attachment #1: Type: text/plain, Size: 3256 bytes --]

> I may be missing something, but I fail to see the difference between a
> Windows file name starting with "C:/" and a Unix file name starting with
> "/", as far as that function is concerned.  Either they both work or they
> both fail in the same way, because (file-name-directory "/") returns "/".

Indeed! That is just the use case I describe further was caught on Windows.

> So do you have a real-life recipe where loaddefs-generate--file-load-name is
> called and infloops?  Can you show such a recipe, preferably in "emacs -Q"?

So, this happened for me when installing a package via Straight.el.
Under the hood it invokes autoloads generation, which can be seen in the
following backtrace:

  loaddefs-generate--file-load-name("c:/Users/d/AppData/Roaming/.emacs.d/straight/build/bind-key/bind-key.el" "d:/dotfiles/.emacs.d/straight/build/bind-key/bind-key-autoloads.el")
  autoload-file-load-name("c:/Users/d/AppData/Roaming/.emacs.d/straight/build/bind-key/bind-key.el" "d:/dotfiles/.emacs.d/straight/build/bind-key/bind-key-autoloads.el")
  autoload-generate-file-autoloads("c:/Users/d/AppData/Roaming/.emacs.d/straig..." nil "d:/dotfiles/.emacs.d/straight/build/bind-key/bind-...")
  make-directory-autoloads("c:/Users/d/AppData/Roaming/.emacs.d/straight/build/bind-key/" "c:/Users/d/AppData/Roaming/.emacs.d/straight/build/bind-key/bind-key-autoloads.el")
  straight--build-autoloads((:flavor melpa :files ("bind-key.el" "bind-key-pkg.el") :package "bind-key" :local-repo "use-package" :type git :repo "jwiegley/use-package" :host github))
  run-hook-with-args(straight--build-autoloads (:flavor melpa :files ("bind-key.el" "bind-key-pkg.el") :package "bind-key" :local-repo "use-package" :type git :repo "jwiegley/use-package" :host github))
  straight--build-package((:flavor melpa :files ("bind-key.el" "bind-key-pkg.el") :package "bind-key" :local-repo "use-package" :type git :repo "jwiegley/use-package" :host github) "Building use-package")
  #f(compiled-function () #<bytecode -0x1fce4a710bdd24dd>)()
  straight--transaction-exec(use-package-\"81e6ef700f88dfe7131843f7ca08439c\"-nil-nil :now #f(compiled-function () #<bytecode -0x1fce4a710bdd24dd>))
  straight-use-package(bind-key nil nil "Building use-package")

And then it hangs in the loop mentioned in my original message.

A recipe for “emacs -Q” might be this (not smallest thing so, but a real life one):

Paste this to the *scratch*:

(defvar bootstrap-version)
(let ((bootstrap-file
       (expand-file-name "straight/repos/straight.el/bootstrap.el" user-emacs-directory))
      (bootstrap-version 5))
  (unless (file-exists-p bootstrap-file)
    (with-current-buffer
        (url-retrieve-synchronously
        "https://raw.githubusercontent.com/raxod502/straight.el/develop/install.el"
        'silent 'inhibit-cookies)
      (goto-char (point-max))
      (eval-print-last-sexp))
    (load bootstrap-file nil 'nomessage)))
(setq straight-vc-git-default-clone-depth '(1 single-branch))

aand M-x eval-buffer :) Warning: it will download the straight.el from its GitHub official repo.
Note, that I do this on Windows, so user-emacs-directory isn’t a "~/.emacs.d", but an absolute path,
starting from "c:/".

Hope this helps!

[-- Attachment #2: Type: text/html, Size: 6573 bytes --]

  reply	other threads:[~2022-11-23 19:36 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-11-22 20:13 bug#59507: 29.0.50; Autoloads generation hangs on Windows and Emacs 29 Denys Mentiei via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-11-23 14:33 ` Eli Zaretskii
2022-11-23 19:36   ` Denys Mentiei via Bug reports for GNU Emacs, the Swiss army knife of text editors [this message]
2022-11-26 11:01     ` Eli Zaretskii
2022-11-29  8:58       ` Denys Mentiei via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-11-29 13:10         ` Eli Zaretskii

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=HE1PR0302MB2603368DBC24E458E29EB488F00C9@HE1PR0302MB2603.eurprd03.prod.outlook.com \
    --to=bug-gnu-emacs@gnu.org \
    --cc=59507@debbugs.gnu.org \
    --cc=Denys.Mentiei@tobii.com \
    --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).