all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* CVS HEAD fails compile in eshell/em-xtra.el
@ 2008-10-11 22:37 Randal L. Schwartz
  2008-10-12 11:22 ` Garfileo
  2008-10-12 12:08 ` Stephen Leake
  0 siblings, 2 replies; 5+ messages in thread
From: Randal L. Schwartz @ 2008-10-11 22:37 UTC (permalink / raw)
  To: emacs-devel


$ make bootstrap
....
Compiling /Users/merlyn/MIRROR/emacs-CVS/lisp/eshell/em-xtra.el

In toplevel form:
eshell/em-xtra.el:30:1:Error: Wrong type argument: keymapp, nil
make[2]: *** [/Users/merlyn/MIRROR/emacs-CVS/lisp/eshell/em-xtra.elc] Error 1
make[1]: *** [lisp] Error 2
make: *** [bootstrap] Error 2

-- 
Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095
<merlyn@stonehenge.com> <URL:http://www.stonehenge.com/merlyn/>
Smalltalk/Perl/Unix consulting, Technical writing, Comedy, etc. etc.
See http://methodsandmessages.vox.com/ for Smalltalk and Seaside discussion





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

* Re: CVS HEAD fails compile in eshell/em-xtra.el
  2008-10-11 22:37 CVS HEAD fails compile in eshell/em-xtra.el Randal L. Schwartz
@ 2008-10-12 11:22 ` Garfileo
  2008-10-12 12:08 ` Stephen Leake
  1 sibling, 0 replies; 5+ messages in thread
From: Garfileo @ 2008-10-12 11:22 UTC (permalink / raw)
  To: Emacs-devel




Randal L. Schwartz wrote:
> 
> $ make bootstrap
> ....
> eshell/em-xtra.el:30:1:Error: Wrong type argument: keymapp, nil
> ....
> 

I encountered this error too.

-- 
View this message in context: http://www.nabble.com/CVS-HEAD-fails-compile-in-eshell-em-xtra.el-tp19937112p19940718.html
Sent from the Emacs - Dev mailing list archive at Nabble.com.





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

* Re: CVS HEAD fails compile in eshell/em-xtra.el
  2008-10-11 22:37 CVS HEAD fails compile in eshell/em-xtra.el Randal L. Schwartz
  2008-10-12 11:22 ` Garfileo
@ 2008-10-12 12:08 ` Stephen Leake
  2008-10-12 13:51   ` Chong Yidong
  1 sibling, 1 reply; 5+ messages in thread
From: Stephen Leake @ 2008-10-12 12:08 UTC (permalink / raw)
  To: Randal L. Schwartz; +Cc: emacs-devel

merlyn@stonehenge.com (Randal L. Schwartz) writes:

> $ make bootstrap
> ....
> Compiling /Users/merlyn/MIRROR/emacs-CVS/lisp/eshell/em-xtra.el
>
> In toplevel form:
> eshell/em-xtra.el:30:1:Error: Wrong type argument: keymapp, nil
> make[2]: *** [/Users/merlyn/MIRROR/emacs-CVS/lisp/eshell/em-xtra.elc] Error 1
> make[1]: *** [lisp] Error 2
> make: *** [bootstrap] Error 2

The fix is:

----------------------
*** lisp/progmodes/compile.el	11 Oct 2008 19:59:11 -0000	1.479
--- lisp/progmodes/compile.el	12 Oct 2008 12:06:20 -0000
***************
*** 70,77 ****

  ;;; Code:

! (eval-when-compile (require 'cl))
! (require 'tool-bar)

  (defvar font-lock-extra-managed-props)
  (defvar font-lock-keywords)
--- 70,78 ----

  ;;; Code:

! (eval-when-compile
!   (require 'cl)
!   (require 'tool-bar))

  (defvar font-lock-extra-managed-props)
  (defvar font-lock-keywords)
-----------------------

I don't have write privs on CVS; someone else will have to check this in.

-- 
-- Stephe




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

* Re: CVS HEAD fails compile in eshell/em-xtra.el
  2008-10-12 12:08 ` Stephen Leake
@ 2008-10-12 13:51   ` Chong Yidong
  2008-10-12 15:22     ` Garfileo
  0 siblings, 1 reply; 5+ messages in thread
From: Chong Yidong @ 2008-10-12 13:51 UTC (permalink / raw)
  To: Stephen Leake; +Cc: emacs-devel, Randal L. Schwartz

Stephen Leake <stephen_leake@member.fsf.org> writes:

> merlyn@stonehenge.com (Randal L. Schwartz) writes:
>
>> $ make bootstrap
>> ....
>> Compiling /Users/merlyn/MIRROR/emacs-CVS/lisp/eshell/em-xtra.el
>>
>> In toplevel form:
>> eshell/em-xtra.el:30:1:Error: Wrong type argument: keymapp, nil
>> make[2]: *** [/Users/merlyn/MIRROR/emacs-CVS/lisp/eshell/em-xtra.elc] Error 1
>> make[1]: *** [lisp] Error 2
>> make: *** [bootstrap] Error 2

I just checked in a fix.  Could you try again?




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

* Re: CVS HEAD fails compile in eshell/em-xtra.el
  2008-10-12 13:51   ` Chong Yidong
@ 2008-10-12 15:22     ` Garfileo
  0 siblings, 0 replies; 5+ messages in thread
From: Garfileo @ 2008-10-12 15:22 UTC (permalink / raw)
  To: Emacs-devel



Chong Yidong wrote:
> 
> I just checked in a fix.  Could you try again?
> 

Great! It works very well.
-- 
View this message in context: http://www.nabble.com/CVS-HEAD-fails-compile-in-eshell-em-xtra.el-tp19937112p19942596.html
Sent from the Emacs - Dev mailing list archive at Nabble.com.





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

end of thread, other threads:[~2008-10-12 15:22 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-11 22:37 CVS HEAD fails compile in eshell/em-xtra.el Randal L. Schwartz
2008-10-12 11:22 ` Garfileo
2008-10-12 12:08 ` Stephen Leake
2008-10-12 13:51   ` Chong Yidong
2008-10-12 15:22     ` Garfileo

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.