* bug#2304: 23.0.90; bootstrapping fails
@ 2009-02-12 9:32 ` Sven Joachim
2009-02-12 9:58 ` martin rudalics
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Sven Joachim @ 2009-02-12 9:32 UTC (permalink / raw)
To: emacs-pretest-bug
After fixing the recent trivial problem in movemail.c, I still cannot
bootstrap emacs:
,----
| $ make maintainer-clean && ./configure && make
| [...]
| Compiling /usr/local/src/emacs/lisp/progmodes/antlr-mode.el
|
| In toplevel form:
| progmodes/antlr-mode.el:183:13:Error: Wrong type argument: number-or-marker-p, nil
| make[1]: *** [/usr/local/src/emacs/lisp/progmodes/antlr-mode.elc] Error 1
| make[1]: Leaving directory `/usr/local/src/emacs/lisp'
| make: *** [lisp] Error 2
`----
The offending line in antlr-mode.el looks like this:
(eval-when-compile
(require 'cc-mode))
and cc-mode is not byte-compiled yet (and won't by invoking make -k).
^ permalink raw reply [flat|nested] 7+ messages in thread
* bug#2304: 23.0.90; bootstrapping fails
2009-02-12 9:32 ` bug#2304: 23.0.90; bootstrapping fails Sven Joachim
@ 2009-02-12 9:58 ` martin rudalics
2009-02-12 10:09 ` Juanma Barranquero
2009-02-12 13:10 ` bug#2304: marked as done (23.0.90; bootstrapping fails) Emacs bug Tracking System
2 siblings, 0 replies; 7+ messages in thread
From: martin rudalics @ 2009-02-12 9:58 UTC (permalink / raw)
To: Sven Joachim, 2304
> After fixing the recent trivial problem in movemail.c, I still cannot
> bootstrap emacs:
>
> ,----
> | $ make maintainer-clean && ./configure && make
> | [...]
> | Compiling /usr/local/src/emacs/lisp/progmodes/antlr-mode.el
> |
> | In toplevel form:
> | progmodes/antlr-mode.el:183:13:Error: Wrong type argument: number-or-marker-p, nil
> | make[1]: *** [/usr/local/src/emacs/lisp/progmodes/antlr-mode.elc] Error 1
> | make[1]: Leaving directory `/usr/local/src/emacs/lisp'
> | make: *** [lisp] Error 2
> `----
>
> The offending line in antlr-mode.el looks like this:
>
> (eval-when-compile
> (require 'cc-mode))
>
> and cc-mode is not byte-compiled yet (and won't by invoking make -k).
Probably due to Stefan's last changes in lisp.el, try 1.95 instead.
I don't understand yet what's going on here :-(
martin
^ permalink raw reply [flat|nested] 7+ messages in thread
* bug#2304: 23.0.90; bootstrapping fails
2009-02-12 9:32 ` bug#2304: 23.0.90; bootstrapping fails Sven Joachim
2009-02-12 9:58 ` martin rudalics
@ 2009-02-12 10:09 ` Juanma Barranquero
2009-02-12 11:04 ` Sven Joachim
2009-02-12 12:57 ` Alan Mackenzie
2009-02-12 13:10 ` bug#2304: marked as done (23.0.90; bootstrapping fails) Emacs bug Tracking System
2 siblings, 2 replies; 7+ messages in thread
From: Juanma Barranquero @ 2009-02-12 10:09 UTC (permalink / raw)
To: Sven Joachim, Alan Mackenzie; +Cc: 2304
On Thu, Feb 12, 2009 at 10:32, Sven Joachim <svenjoac@gmx.de> wrote:
> After fixing the recent trivial problem in movemail.c, I still cannot
> bootstrap emacs:
> | progmodes/antlr-mode.el:183:13:Error: Wrong type argument: number-or-marker-p, nil
> | make[1]: *** [/usr/local/src/emacs/lisp/progmodes/antlr-mode.elc] Error 1
> | make[1]: Leaving directory `/usr/local/src/emacs/lisp'
> | make: *** [lisp] Error 2
> `----
>
> The offending line in antlr-mode.el looks like this:
>
> (eval-when-compile
> (require 'cc-mode))
The bootstrap failure is caused by this change:
2009-02-05 Alan Mackenzie <acm@muc.de>
* progmodes/cc-defs.el (c-emacs-features): Check the working of
beginning/end-of-defun-function more rigorously before setting
argumentative-bod-function.
Juanma
^ permalink raw reply [flat|nested] 7+ messages in thread
* bug#2304: 23.0.90; bootstrapping fails
2009-02-12 10:09 ` Juanma Barranquero
@ 2009-02-12 11:04 ` Sven Joachim
2009-02-12 11:07 ` Juanma Barranquero
2009-02-12 12:57 ` Alan Mackenzie
1 sibling, 1 reply; 7+ messages in thread
From: Sven Joachim @ 2009-02-12 11:04 UTC (permalink / raw)
To: Juanma Barranquero; +Cc: 2304
On 2009-02-12 11:09 +0100, Juanma Barranquero wrote:
> On Thu, Feb 12, 2009 at 10:32, Sven Joachim <svenjoac@gmx.de> wrote:
>> After fixing the recent trivial problem in movemail.c, I still cannot
>> bootstrap emacs:
>
>> | progmodes/antlr-mode.el:183:13:Error: Wrong type argument: number-or-marker-p, nil
>> | make[1]: *** [/usr/local/src/emacs/lisp/progmodes/antlr-mode.elc] Error 1
>> | make[1]: Leaving directory `/usr/local/src/emacs/lisp'
>> | make: *** [lisp] Error 2
>> `----
>>
>> The offending line in antlr-mode.el looks like this:
>>
>> (eval-when-compile
>> (require 'cc-mode))
>
> The bootstrap failure is caused by this change:
>
> 2009-02-05 Alan Mackenzie <acm@muc.de>
>
> * progmodes/cc-defs.el (c-emacs-features): Check the working of
> beginning/end-of-defun-function more rigorously before setting
> argumentative-bod-function.
Thanks, reverting cc-defs.el to version 1.67 fixes the problem.
However, a snapshot from 2009-02-07 had built fine here, so the latest
changes in emacs-lisp/lisp.el may be responsible as well, as martin
rudalics pointed out.
Sven
^ permalink raw reply [flat|nested] 7+ messages in thread
* bug#2304: 23.0.90; bootstrapping fails
2009-02-12 11:04 ` Sven Joachim
@ 2009-02-12 11:07 ` Juanma Barranquero
0 siblings, 0 replies; 7+ messages in thread
From: Juanma Barranquero @ 2009-02-12 11:07 UTC (permalink / raw)
To: Sven Joachim, Alan Mackenzie, martin rudalics; +Cc: 2304
On Thu, Feb 12, 2009 at 12:04, Sven Joachim <svenjoac@gmx.de> wrote:
>> The bootstrap failure is caused by this change:
>>
>> 2009-02-05 Alan Mackenzie <acm@muc.de>
>>
>> * progmodes/cc-defs.el (c-emacs-features): Check the working of
>> beginning/end-of-defun-function more rigorously before setting
>> argumentative-bod-function.
>
> Thanks, reverting cc-defs.el to version 1.67 fixes the problem.
> However, a snapshot from 2009-02-07 had built fine here, so the latest
> changes in emacs-lisp/lisp.el may be responsible as well, as martin
> rudalics pointed out.
Ah, yes, of course. I should've said "is triggered by". I have not
tried to determine what is the real cause of the bug.
Juanma
^ permalink raw reply [flat|nested] 7+ messages in thread
* bug#2304: 23.0.90; bootstrapping fails
2009-02-12 10:09 ` Juanma Barranquero
2009-02-12 11:04 ` Sven Joachim
@ 2009-02-12 12:57 ` Alan Mackenzie
1 sibling, 0 replies; 7+ messages in thread
From: Alan Mackenzie @ 2009-02-12 12:57 UTC (permalink / raw)
To: Sven Joachim, Juanma Barranquero; +Cc: 2304
Hi, Sven and Juanma,
On Thu, Feb 12, 2009 at 11:09:33AM +0100, Juanma Barranquero wrote:
> On Thu, Feb 12, 2009 at 10:32, Sven Joachim <svenjoac@gmx.de> wrote:
> > After fixing the recent trivial problem in movemail.c, I still cannot
> > bootstrap emacs:
> > | progmodes/antlr-mode.el:183:13:Error: Wrong type argument: number-or-marker-p, nil
> > | make[1]: *** [/usr/local/src/emacs/lisp/progmodes/antlr-mode.elc] Error 1
> > | make[1]: Leaving directory `/usr/local/src/emacs/lisp'
> > | make: *** [lisp] Error 2
> > `----
> > The offending line in antlr-mode.el looks like this:
> > (eval-when-compile
> > (require 'cc-mode))
> The bootstrap failure is caused by this change:
> 2009-02-05 Alan Mackenzie <acm@muc.de>
>
> * progmodes/cc-defs.el (c-emacs-features): Check the working of
> beginning/end-of-defun-function more rigorously before setting
> argumentative-bod-function.
It was indeed: I'd used (= foo 3) instead of (eq foo 3).
It should be fixed now.
> Juanma
--
Alan Mackenzie (Nuremberg, Germany).
^ permalink raw reply [flat|nested] 7+ messages in thread
* bug#2304: marked as done (23.0.90; bootstrapping fails)
2009-02-12 9:32 ` bug#2304: 23.0.90; bootstrapping fails Sven Joachim
2009-02-12 9:58 ` martin rudalics
2009-02-12 10:09 ` Juanma Barranquero
@ 2009-02-12 13:10 ` Emacs bug Tracking System
2 siblings, 0 replies; 7+ messages in thread
From: Emacs bug Tracking System @ 2009-02-12 13:10 UTC (permalink / raw)
To: Sven Joachim
[-- Attachment #1: Type: text/plain, Size: 854 bytes --]
Your message dated Thu, 12 Feb 2009 14:00:04 +0100
with message-id <87fxijstd7.fsf@turtle.gmx.de>
and subject line Re: bug#2304: 23.0.90; bootstrapping fails
has caused the Emacs bug report #2304,
regarding 23.0.90; bootstrapping fails
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact owner@emacsbugs.donarmstrong.com
immediately.)
--
2304: http://emacsbugs.donarmstrong.com/cgi-bin/bugreport.cgi?bug=2304
Emacs Bug Tracking System
Contact owner@emacsbugs.donarmstrong.com with problems
[-- Attachment #2: Type: message/rfc822, Size: 2784 bytes --]
From: Sven Joachim <svenjoac@gmx.de>
To: emacs-pretest-bug@gnu.org
Subject: 23.0.90; bootstrapping fails
Date: Thu, 12 Feb 2009 10:32:13 +0100
Message-ID: <87skmkrof6.fsf@turtle.gmx.de>
After fixing the recent trivial problem in movemail.c, I still cannot
bootstrap emacs:
,----
| $ make maintainer-clean && ./configure && make
| [...]
| Compiling /usr/local/src/emacs/lisp/progmodes/antlr-mode.el
|
| In toplevel form:
| progmodes/antlr-mode.el:183:13:Error: Wrong type argument: number-or-marker-p, nil
| make[1]: *** [/usr/local/src/emacs/lisp/progmodes/antlr-mode.elc] Error 1
| make[1]: Leaving directory `/usr/local/src/emacs/lisp'
| make: *** [lisp] Error 2
`----
The offending line in antlr-mode.el looks like this:
(eval-when-compile
(require 'cc-mode))
and cc-mode is not byte-compiled yet (and won't by invoking make -k).
[-- Attachment #3: Type: message/rfc822, Size: 2308 bytes --]
From: Sven Joachim <svenjoac@gmx.de>
To: Alan Mackenzie <acm@muc.de>
Cc: Juanma Barranquero <lekktu@gmail.com>, 2304-done@emacsbugs.donarmstrong.com
Subject: Re: bug#2304: 23.0.90; bootstrapping fails
Date: Thu, 12 Feb 2009 14:00:04 +0100
Message-ID: <87fxijstd7.fsf@turtle.gmx.de>
Am 12.02.2009 um 13:57 schrieb Alan Mackenzie:
> On Thu, Feb 12, 2009 at 11:09:33AM +0100, Juanma Barranquero wrote:
>> The bootstrap failure is caused by this change:
>
>> 2009-02-05 Alan Mackenzie <acm@muc.de>
>>
>> * progmodes/cc-defs.el (c-emacs-features): Check the working of
>> beginning/end-of-defun-function more rigorously before setting
>> argumentative-bod-function.
>
> It was indeed: I'd used (= foo 3) instead of (eq foo 3).
>
> It should be fixed now.
It is, so I'm closing the bug.
Thanks,
Sven
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2009-02-12 13:10 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <87fxijstd7.fsf@turtle.gmx.de>
2009-02-12 9:32 ` bug#2304: 23.0.90; bootstrapping fails Sven Joachim
2009-02-12 9:58 ` martin rudalics
2009-02-12 10:09 ` Juanma Barranquero
2009-02-12 11:04 ` Sven Joachim
2009-02-12 11:07 ` Juanma Barranquero
2009-02-12 12:57 ` Alan Mackenzie
2009-02-12 13:10 ` bug#2304: marked as done (23.0.90; bootstrapping fails) Emacs bug Tracking System
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.