From: Gregor Zattler <telegraph@gmx.net>
To: 49746@debbugs.gnu.org
Subject: bug#49746: 28.0.50; bytecompilation introduces bug in org-capture with certain template
Date: Tue, 27 Jul 2021 15:58:58 +0200 [thread overview]
Message-ID: <875ywvyi1p.fsf@no.workgroup> (raw)
Dear emacs developers, I use org-capture a lot with
org-capture-templates. It stopped working a few days ago,
throwing a error message instead:
org-capture: Capture abort: Unknown template placeholder: "%^g"
This is due to a problem with byte compilation. It does not
happen, if I remove all .elc files before starting emacs.
You may test it with this:
(custom-set-variables
'(org-capture-templates '(("d" "diary" entry (file "~/notes.org") "*** %? %^g"))))
in minconfig.el and with this invocation of emacs:
~/src/emacs$ src/emacs -Q -l /tmp/minconfig.el --eval '(org-capture 0 "d")'
If this gives you an error, quit emacs, remove all .elc
-files:
~/src/emacs$ find -type f -print0| grep -zZ "\.elc$" |xargs -0r rm
start emacs again:
~/src/emacs$ src/emacs -Q -l /tmp/minconfig.el --eval '(org-capture 0 "d")'
and there is no error.
I narrowed it down to this commit:
51a86b6a0504d580d3e10efe41abf3ae42c90711 is the first bad commit
commit 51a86b6a0504d580d3e10efe41abf3ae42c90711
Author: Mattias Engdegård <mattiase@acm.org>
Date: Tue Jul 20 17:23:11 2021 +0200
Count (not X) as a switch condition
* lisp/emacs-lisp/bytecomp.el (byte-compile--cond-switch-prefix):
Treat (not VAR) and (null VAR) as (eq VAR nil) when computing the
extent of switch ops.
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el
index 6970c8a5055..2968f1af5df 100644
--- a/lisp/emacs-lisp/bytecomp.el
+++ b/lisp/emacs-lisp/bytecomp.el
@@ -4340,6 +4340,16 @@ byte-compile--cond-switch-prefix
(push value keys)
(push (cons (list value) (or body '(t))) cases))
t))))
+ ;; Treat (not X) as (eq X nil).
+ (`((,(or 'not 'null) ,(and var (pred symbolp))) . ,body)
+ (and (or (eq var switch-var) (not switch-var))
+ (progn
+ (setq switch-var var)
+ (setq switch-test 'eq)
+ (unless (memq nil keys)
+ (push nil keys)
+ (push (cons (list nil) (or body '(t))) cases))
+ t)))
(`((,(and fn (or 'memq 'memql 'member)) ,var ,expr) . ,body)
(and (symbolp var)
(or (eq var switch-var) (not switch-var))
:040000 040000 ae3e2ceaa690965108fb8547ce6e90ecd2fcaaf3 28eec9e6920160dc5dff29e2567ee34b50924bec M lisp
The problem came up recently on the org-mode mailing list:
https://www.mail-archive.com/emacs-orgmode@gnu.org/msg138065.html
Especially this message:
https://www.mail-archive.com/emacs-orgmode@gnu.org/msg138121.html
inspired me to do a git bisect and test builds if the throw
this error and if so, if it also happens after removing all
.elc files.
For every step in git bisect I did a
rm -rf * ; git checkout -f ; make
in order to make sure that all .elc files are build afresh.
Ciao; Gregor
--
-... --- .-. . -.. ..--.. ...-.-
next reply other threads:[~2021-07-27 13:58 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-07-27 13:58 Gregor Zattler [this message]
2021-07-27 15:25 ` bug#49746: 28.0.50; bytecompilation introduces bug in org-capture with certain template Basil L. Contovounesios via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-07-27 15:45 ` Mattias Engdegård
[not found] <13106EC8-D99A-413C-9B90-33A700CD5840@acm.org>
2021-07-27 16:10 ` No Wayman
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
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=875ywvyi1p.fsf@no.workgroup \
--to=telegraph@gmx.net \
--cc=49746@debbugs.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 external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.