* 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 Bug in latest CVS 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
* 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
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-18 19:48 Bug in latest CVS 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
-- strict thread matches above, loose matches on Subject: below --
2002-09-11 1:36 Luc Teirlinck
2002-09-11 1:54 ` Luc Teirlinck
2002-09-11 7:01 ` Juanma Barranquero
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.