GNU bug report logs -
#77454
30.1.50; *-pkg.el header comment broken on GNU/NonGNU ELPA (devel)
Previous Next
Reported by: Daniel Mendler <mail <at> daniel-mendler.de>
Date: Wed, 2 Apr 2025 10:44:01 UTC
Severity: normal
Found in version 30.1.50
Done: Philip Kaludercic <philipk <at> posteo.net>
Bug is archived. No further changes may be made.
Full log
Message #13 received at 77454-done <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Daniel Mendler <mail <at> daniel-mendler.de> writes:
> Daniel Mendler <mail <at> daniel-mendler.de> writes:
>
>> For example the Transient package has this header:
>>
>> ;; Generated package description from .el -*- transientno-byte-compile: t -*-
>
> Ping. This problem is still present, for example:
>
> ;; Generated package description from mode: lisp-data; .el -*- corfuno-byte-compile: t -*-
It seems that there was just a swap-o in elpa-admin.el:
[Message part 2 (text/x-patch, inline)]
diff --git a/elpa-admin.el b/elpa-admin.el
index 7e6db3fbf3..9ff01721ab 100644
--- a/elpa-admin.el
+++ b/elpa-admin.el
@@ -1519,12 +1519,12 @@ Rename DIR/ to PKG-VERS/, and return the descriptor."
(cdr metadata)))
(write-region
(concat (format ";; Generated package description from %s.el -*- %sno-byte-compile: t -*-\n"
+ name
(let* ((emacs-req (assq 'emacs requires))
(emacs-vers (car (cadr emacs-req))))
(if (not (and emacs-vers (>= emacs-vers 28)))
"" ;Need compatibility with Emacs<28.
- "mode: lisp-data; "))
- name)
+ "mode: lisp-data; ")))
(prin1-to-string
(nconc
(list 'define-package
[Message part 3 (text/plain, inline)]
That now generates
;; Generated package description from corfu.el -*- mode: lisp-data;
no-byte-compile: t -*-
As this is a serious issue with a simple fix, I'll push the change
myself. If that was a mistake, anyone can feel free to undo it.
This bug report was last modified 34 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.