unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* bootstrap failure: Invalid read syntax: ". in wrong context" in european.el
@ 2008-06-01 18:22 Dan Nicolaescu
  2008-06-02 15:25 ` Taylor Venable
  2008-06-02 15:33 ` Dan Nicolaescu
  0 siblings, 2 replies; 6+ messages in thread
From: Dan Nicolaescu @ 2008-06-01 18:22 UTC (permalink / raw)
  To: emacs-devel


On sparc-sun-solaris2.9 bootstrapping fails currently when executing:

 ./temacs --batch --load loadup bootstrap


The error is:

Loading /tmp/emacs/lisp/language/european.el (source)...
Invalid read syntax: ". in wrong context"

Removing the "sample-text" line after:
       ;; Fixme: Welsh/Ga{e}lic greetings
in european.el fixes it.

The same tree bootstraps just fine on GNU/Linux.

Any idea what could be wrong?




^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: bootstrap failure: Invalid read syntax: ". in wrong context" in european.el
  2008-06-01 18:22 bootstrap failure: Invalid read syntax: ". in wrong context" in european.el Dan Nicolaescu
@ 2008-06-02 15:25 ` Taylor Venable
  2008-06-02 19:18   ` Reiner Steib
  2008-06-04 12:53   ` Kenichi Handa
  2008-06-02 15:33 ` Dan Nicolaescu
  1 sibling, 2 replies; 6+ messages in thread
From: Taylor Venable @ 2008-06-02 15:25 UTC (permalink / raw)
  To: Dan Nicolaescu; +Cc: emacs-devel

On Sun, Jun 01, 2008 at 11:22:42AM -0700, Dan Nicolaescu wrote:
> The error is:
> 
> Loading /tmp/emacs/lisp/language/european.el (source)...
> Invalid read syntax: ". in wrong context"
> 
> Removing the "sample-text" line after:
>        ;; Fixme: Welsh/Ga{e}lic greetings
> in european.el fixes it.

The same error occurs when compiling AUCTeX under NetBSD 4.99.63 on
AMD64 for the following s-expression in tex-jp.el (line 264):

(if japanese-TeX-error-messages
(setq TeX-error-description-list
  '(("Bad \\\\line or \\\\vector argument.*" .
"^[$B@~$N79$-$r;XDj$9$k!$^[(B\\line^[$B$^$?$O^[(B\\vector^[$B$N:G=i$N0z?t$,IT@5$G$9!%^[(B")

    ...)))

Emacs bootstrap worked fine with the CVS as of today (2008-06-02),
just a little while ago (at least on this platform).

-- 
Taylor Venable            http://real.metasyntax.net:2357/

foldr = lambda f, i, l: (len(l) == 1 and [f(l[0], i)] or
                         [f(l[0], foldr(f, i, l[1:]))])[0]




^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: bootstrap failure: Invalid read syntax: ". in wrong context" in european.el
  2008-06-01 18:22 bootstrap failure: Invalid read syntax: ". in wrong context" in european.el Dan Nicolaescu
  2008-06-02 15:25 ` Taylor Venable
@ 2008-06-02 15:33 ` Dan Nicolaescu
  1 sibling, 0 replies; 6+ messages in thread
From: Dan Nicolaescu @ 2008-06-02 15:33 UTC (permalink / raw)
  To: emacs-devel


This must have been something transitory, the bootstrap works fine after updating.




^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: bootstrap failure: Invalid read syntax: ". in wrong context" in european.el
  2008-06-02 15:25 ` Taylor Venable
@ 2008-06-02 19:18   ` Reiner Steib
  2008-06-02 20:18     ` Taylor Venable
  2008-06-04 12:53   ` Kenichi Handa
  1 sibling, 1 reply; 6+ messages in thread
From: Reiner Steib @ 2008-06-02 19:18 UTC (permalink / raw)
  To: Taylor Venable; +Cc: Dan Nicolaescu, emacs-devel

On Mon, Jun 02 2008, Taylor Venable wrote:

> The same error occurs when compiling AUCTeX under NetBSD 4.99.63 on
> AMD64 for the following s-expression in tex-jp.el (line 264):

I seem to recall such problem when compiling with unibyte mode.
See <http://thread.gmane.org/gmane.emacs.auctex.general/1227/focus=1232>.

Bye, Reiner.
-- 
       ,,,
      (o o)
---ooO-(_)-Ooo---  |  PGP key available  |  http://rsteib.home.pages.de/




^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: bootstrap failure: Invalid read syntax: ". in wrong context" in european.el
  2008-06-02 19:18   ` Reiner Steib
@ 2008-06-02 20:18     ` Taylor Venable
  0 siblings, 0 replies; 6+ messages in thread
From: Taylor Venable @ 2008-06-02 20:18 UTC (permalink / raw)
  To: Dan Nicolaescu, emacs-devel

On Mon, Jun 02, 2008 at 09:18:16PM +0200, Reiner Steib wrote:
> On Mon, Jun 02 2008, Taylor Venable wrote:
> 
> > The same error occurs when compiling AUCTeX under NetBSD 4.99.63 on
> > AMD64 for the following s-expression in tex-jp.el (line 264):
> 
> I seem to recall such problem when compiling with unibyte mode.
> See <http://thread.gmane.org/gmane.emacs.auctex.general/1227/focus=1232>.

That seems to have come from a unibyte/multibyte problem.  I'm pretty
sure my Emacs is multibyte capable, anyways I haven't defined anything
to make it go into unibyte mode.  It's not clearly the fault of
AUCTeX's make system, either; when I just run Emacs and do a
byte-compile-file on tex-jp.el it fails as well.  Nothing shows up in
Emacs' ./configure output as well, at least nothing that flags my
attention immediately.  Could the presence or abscence of terminal
libraries (e.g. ncurses) have anything to do with this?

-- 
Taylor Venable            http://real.metasyntax.net:2357/

foldr = lambda f, i, l: (len(l) == 1 and [f(l[0], i)] or
                         [f(l[0], foldr(f, i, l[1:]))])[0]




^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: bootstrap failure: Invalid read syntax: ". in wrong context" in european.el
  2008-06-02 15:25 ` Taylor Venable
  2008-06-02 19:18   ` Reiner Steib
@ 2008-06-04 12:53   ` Kenichi Handa
  1 sibling, 0 replies; 6+ messages in thread
From: Kenichi Handa @ 2008-06-04 12:53 UTC (permalink / raw)
  To: Taylor Venable; +Cc: dann, emacs-devel

In article <20080602152514.GB483@metasyntax.net>, Taylor Venable <taylor@metasyntax.net> writes:

> On Sun, Jun 01, 2008 at 11:22:42AM -0700, Dan Nicolaescu wrote:
> > The error is:
> > 
> > Loading /tmp/emacs/lisp/language/european.el (source)...
> > Invalid read syntax: ". in wrong context"
> > 
> > Removing the "sample-text" line after:
> >        ;; Fixme: Welsh/Ga{e}lic greetings
> > in european.el fixes it.

I can't reproduce the above error, but...

> The same error occurs when compiling AUCTeX under NetBSD 4.99.63 on
> AMD64 for the following s-expression in tex-jp.el (line 264):

> (if japanese-TeX-error-messages
> (setq TeX-error-description-list
>   '(("Bad \\\\line or \\\\vector argument.*" .
> "^[$B@~$N79$-$r;XDj$9$k!$^[(B\\line^[$B$^$?$O^[(B\\vector^[$B$N:G=i$N0z?t$,IT@5$G$9!%^[(B")

>     ...)))

I installed a fix for iso-2022 based code detection.  Could
you please try again?

---
Kenichi Handa
handa@ni.aist.go.jp




^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2008-06-04 12:53 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-06-01 18:22 bootstrap failure: Invalid read syntax: ". in wrong context" in european.el Dan Nicolaescu
2008-06-02 15:25 ` Taylor Venable
2008-06-02 19:18   ` Reiner Steib
2008-06-02 20:18     ` Taylor Venable
2008-06-04 12:53   ` Kenichi Handa
2008-06-02 15:33 ` Dan Nicolaescu

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).