GNU bug report logs -
#49877
[Emacs 28.0.50 Trunk] *ERROR*: No applicable method: frame-creation-function
Previous Next
Reported by: Jacob Faibussowitsch <jacob.fai <at> gmail.com>
Date: Wed, 4 Aug 2021 16:04:01 UTC
Severity: normal
Tags: moreinfo
Merged with 49866
Found in version 28.0.50
Done: Stefan Monnier <monnier <at> iro.umontreal.ca>
Bug is archived. No further changes may be made.
Full log
Message #16 received at 49877 <at> debbugs.gnu.org (full text, mbox):
Jacob Faibussowitsch <jacob.fai <at> gmail.com> writes:
> Is this with a fresh
> checkout (or "make bootstrap")?
>
> I’m not sure I follow, what is the difference?
Sorry, that was unclear. I meant that as an inclusive or, and as
opposed to doing an incremental build.
> I am able to reproduce/build emacs via:
>
> 1. git checkout master
> 2. make clean
> 3. ./reconfigure.sh (attached)
> 3. make all
I'm still not able to reproduce the problem, but a different user
reported exactly the same problem... which then went away. So
something's definitely going on here.
So I've added Stefan to the CCs -- could you take a look at this? It
looks like a possible problem with the recent eql changes, but is
weirdly difficult to reproduce.
diff --git a/lisp/frame.el b/lisp/frame.el
index 9b3d120598..8c05ad2fe5 100644
--- a/lisp/frame.el
+++ b/lisp/frame.el
@@ -36,7 +36,11 @@ as its argument.")
(cl-generic-define-context-rewriter window-system (value)
;; If `value' is a `consp', it's probably an old-style specializer,
;; so just use it, and anyway `eql' isn't very useful on cons cells.
- `(window-system ,(if (consp value) value `(eql ,value))))
+ `(window-system ,(if (consp value) value
+ ;; WARNING: unsure whether this eql expression
+ ;; is actually an eql specializer.
+ ;; Bug #47327
+ `(eql ',value))))
--
(domestic pets only, the antidote for overdose, milk.)
bloggy blog: http://lars.ingebrigtsen.no
This bug report was last modified 3 years and 346 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.