[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
lexbind build fix
From: |
Tom Tromey |
Subject: |
lexbind build fix |
Date: |
Tue, 27 Apr 2010 11:48:24 -0600 |
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 <address@hidden>
+
+ * emacs-lisp/bytecomp.el (byte-compile-check-variable): Use
+ byte-compile-not-obsolete-vars.
+
2006-12-04 Miles Bader <address@hidden>
* 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 <address@hidden>
;; Hallvard Furuseth <address@hidden>
--- 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 <address@hidden>
;; Hallvard Furuseth <address@hidden>
***************
*** 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)
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- lexbind build fix,
Tom Tromey <=