all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* lexbind build fix
@ 2010-04-27 17:48 Tom Tromey
  0 siblings, 0 replies; only message in thread
From: Tom Tromey @ 2010-04-27 17:48 UTC (permalink / raw)
  To: Emacs discussions

I ran into an error while trying to build the lexbind branch.
This patch fixes it.

The build still fails, I haven't investigated this:

Compiling /space/tromey/EmacsBzr/emacs-mt/lexbind/lisp/vc-rcs.el
>>Error occurred processing /space/tromey/EmacsBzr/emacs-mt/lexbind/lisp/vc-rcs.el: error (("Lisp nesting exceeds `max-lisp-eval-depth'"))

Tom

=== modified file 'lisp/ChangeLog.lexbind'
*** lisp/ChangeLog.lexbind	2006-12-04 12:31:18 +0000
--- lisp/ChangeLog.lexbind	2010-04-27 16:34:20 +0000
***************
*** 1,3 ****
--- 1,8 ----
+ 2010-04-27  Tom Tromey  <tromey@redhat.com>
+ 
+ 	* emacs-lisp/bytecomp.el (byte-compile-check-variable): Use
+ 	byte-compile-not-obsolete-vars.
+ 
  2006-12-04  Miles Bader  <miles@gnu.org>
  
  	* Makefile.in (COMPILE_FIRST_STACK_DEPTH): New variable.

=== modified file 'lisp/emacs-lisp/bytecomp.el'
*** lisp/emacs-lisp/bytecomp.el	2009-12-11 11:04:56 +0000
--- lisp/emacs-lisp/bytecomp.el	2010-04-27 16:28:38 +0000
***************
*** 1,7 ****
  ;;; bytecomp.el --- compilation of Lisp code into byte code
  
  ;; Copyright (C) 1985, 1986, 1987, 1992, 1994, 1998, 2000, 2001, 2002,
! ;;   2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
  
  ;; Author: Jamie Zawinski <jwz@lucid.com>
  ;;	Hallvard Furuseth <hbf@ulrik.uio.no>
--- 1,7 ----
  ;;; bytecomp.el --- compilation of Lisp code into byte code
  
  ;; Copyright (C) 1985, 1986, 1987, 1992, 1994, 1998, 2000, 2001, 2002,
! ;;   2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
  
  ;; Author: Jamie Zawinski <jwz@lucid.com>
  ;;	Hallvard Furuseth <hbf@ulrik.uio.no>
***************
*** 3038,3044 ****
  			      (if (symbolp var) "constant" "nonvariable")
  			      (prin1-to-string var))))
  	((and (get var 'byte-obsolete-variable)
! 	      (not (eq var byte-compile-not-obsolete-var)))
  	 (byte-compile-warn-obsolete var))))
  
  (defsubst byte-compile-dynamic-variable-op (base-op var)
--- 3038,3044 ----
  			      (if (symbolp var) "constant" "nonvariable")
  			      (prin1-to-string var))))
  	((and (get var 'byte-obsolete-variable)
! 	      (not (memq var byte-compile-not-obsolete-vars)))
  	 (byte-compile-warn-obsolete var))))
  
  (defsubst byte-compile-dynamic-variable-op (base-op var)





^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2010-04-27 17:48 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-04-27 17:48 lexbind build fix Tom Tromey

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.