unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Bug in latest CVS
@ 2002-09-11  1:36 Luc Teirlinck
  2002-09-11  1:54 ` Luc Teirlinck
  2002-09-11  7:01 ` Juanma Barranquero
  0 siblings, 2 replies; 9+ messages in thread
From: Luc Teirlinck @ 2002-09-11  1:36 UTC (permalink / raw)


There seems to be a bug in the latest Savannah CVS.

From the output of make-bootstrap:

Loading international/utf-8 (source)...
Wrong number of arguments: #<subr make-char-table>, 0
make[1]: *** [bootstrap-emacs] Error 255
make[1]: Leaving directory `/home/teirllm/CVSemacsdir/emacs/src'
make: *** [bootstrap-src] Error 2

Sincerely,

Luc.

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

* Re: Bug in latest CVS
  2002-09-11  1:36 Bug in latest CVS Luc Teirlinck
@ 2002-09-11  1:54 ` Luc Teirlinck
  2002-09-11  7:01 ` Juanma Barranquero
  1 sibling, 0 replies; 9+ messages in thread
From: Luc Teirlinck @ 2002-09-11  1:54 UTC (permalink / raw)
  Cc: emacs-devel

Justin case this is of any help whatsoever, it is on line 146 of
international/utf-8 and a few days ago the subtype of that char-table
was 'translation-table.

Sincerely,

Luc.

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

* Re: Bug in latest CVS
  2002-09-11  1:36 Bug in latest CVS Luc Teirlinck
  2002-09-11  1:54 ` Luc Teirlinck
@ 2002-09-11  7:01 ` Juanma Barranquero
  1 sibling, 0 replies; 9+ messages in thread
From: Juanma Barranquero @ 2002-09-11  7:01 UTC (permalink / raw)


On Tue, 10 Sep 2002 20:36:30 -0500 (CDT), Luc Teirlinck <teirllm@dms.auburn.edu> wrote:

> There seems to be a bug in the latest Savannah CVS.
> 
> From the output of make-bootstrap:
> 
> Loading international/utf-8 (source)...
> Wrong number of arguments: #<subr make-char-table>, 0

There's also another problem with international/ucs-tables.el; it
complains about arrayp getting nil. Both are caused by recent changes by
Dave.


                                                           /L/e/k/t/u

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

* Bug in latest CVS.
@ 2002-09-18 19:48 Luc Teirlinck
  2002-09-18 19:52 ` Bob Halley
  0 siblings, 1 reply; 9+ messages in thread
From: Luc Teirlinck @ 2002-09-18 19:48 UTC (permalink / raw)


I do not know whether this is related to an earlier message about
problens with bootstrapping, but currently make bootstrap produces the
following error:

Generating cus-load.el...
Wrong type argument: stringp, (mm-inlined-types custom-variable)
make[1]: *** [custom-deps] Error 255
make[1]: Leaving directory `/home/teirllm/CVSemacsdir/emacs/lisp'
make: *** [bootstrap] Error 2

Sincerely,

Luc.

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

* Re: Bug in latest CVS.
  2002-09-18 19:48 Luc Teirlinck
@ 2002-09-18 19:52 ` Bob Halley
  2002-09-19 18:57   ` Richard Stallman
  0 siblings, 1 reply; 9+ messages in thread
From: Bob Halley @ 2002-09-18 19:52 UTC (permalink / raw)
  Cc: emacs-devel

Luc Teirlinck <teirllm@dms.auburn.edu> writes:

> Generating cus-load.el...
> Wrong type argument: stringp, (mm-inlined-types custom-variable)
> make[1]: *** [custom-deps] Error 255
> make[1]: Leaving directory `/home/teirllm/CVSemacsdir/emacs/lisp'
> make: *** [bootstrap] Error 2

Reverting lisp/cus-dep.el to version 1.17 makes the problem go away.

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

* Re: Bug in latest CVS.
  2002-09-18 19:52 ` Bob Halley
@ 2002-09-19 18:57   ` Richard Stallman
  2002-09-19 20:20     ` Bob Halley
  0 siblings, 1 reply; 9+ messages in thread
From: Richard Stallman @ 2002-09-19 18:57 UTC (permalink / raw)
  Cc: teirllm, emacs-devel

Does this fix it?

*** cus-dep.el.~1.18.~	Tue Sep 17 09:47:57 2002
--- cus-dep.el	Thu Sep 19 14:49:30 2002
***************
*** 87,93 ****
  		    item where found)
  		(when members
  		  ;; So x and no-x builds won't differ.
! 		  (setq members (sort (copy-sequence members) 'string<))
  		  (while members
  		    (setq item (car (car members))
  			  members (cdr members)
--- 87,103 ----
  		    item where found)
  		(when members
  		  ;; So x and no-x builds won't differ.
! 		  (setq members
! 			(sort (copy-sequence members) 
! 			      (lambda (x y)
! 				(cond ((and (stringp x) (stringp y))
! 				       (string< x y))
! 				      ;; Put all non-strings before strings.
! 				      ((stringp y) t)
! 				      ((stringp x) nil)
! 				      ;; For two non-strings,
! 				      ;; use the order they appear in MEMBERS.
! 				      (t (member y (member x members)))))))
  		  (while members
  		    (setq item (car (car members))
  			  members (cdr members)

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

* Re: Bug in latest CVS.
  2002-09-19 18:57   ` Richard Stallman
@ 2002-09-19 20:20     ` Bob Halley
  2002-09-20 18:41       ` Richard Stallman
  0 siblings, 1 reply; 9+ messages in thread
From: Bob Halley @ 2002-09-19 20:20 UTC (permalink / raw)
  Cc: teirllm, emacs-devel

Richard Stallman <rms@gnu.org> writes:

> Does this fix it?

Works for me.

/Bob

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

* Re: Bug in latest CVS.
  2002-09-19 20:20     ` Bob Halley
@ 2002-09-20 18:41       ` Richard Stallman
  2002-09-20 19:03         ` Luc Teirlinck
  0 siblings, 1 reply; 9+ messages in thread
From: Richard Stallman @ 2002-09-20 18:41 UTC (permalink / raw)
  Cc: teirllm, emacs-devel

My cus-dep change avoided the crash but was not correct, so I made
another.  Does it work now?

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

* Re: Bug in latest CVS.
  2002-09-20 18:41       ` Richard Stallman
@ 2002-09-20 19:03         ` Luc Teirlinck
  0 siblings, 0 replies; 9+ messages in thread
From: Luc Teirlinck @ 2002-09-20 19:03 UTC (permalink / raw)
  Cc: halley, emacs-devel

Richard Stallman wrote:

   My cus-dep change avoided the crash but was not correct, so I made
   another.  Does it work now?

Yes.  I just updated from the latest CVS a few moments ago.

Sincerely,

Luc.

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

end of thread, other threads:[~2002-09-20 19:03 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-09-11  1:36 Bug in latest CVS Luc Teirlinck
2002-09-11  1:54 ` Luc Teirlinck
2002-09-11  7:01 ` Juanma Barranquero
  -- strict thread matches above, loose matches on Subject: below --
2002-09-18 19:48 Luc Teirlinck
2002-09-18 19:52 ` Bob Halley
2002-09-19 18:57   ` Richard Stallman
2002-09-19 20:20     ` Bob Halley
2002-09-20 18:41       ` Richard Stallman
2002-09-20 19:03         ` Luc Teirlinck

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