From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Tom Tromey Newsgroups: gmane.emacs.devel Subject: lexbind build fix Date: Tue, 27 Apr 2010 11:48:24 -0600 Message-ID: Reply-To: Tom Tromey NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: dough.gmane.org 1272390524 26714 80.91.229.12 (27 Apr 2010 17:48:44 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Tue, 27 Apr 2010 17:48:44 +0000 (UTC) To: Emacs discussions Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Apr 27 19:48:43 2010 connect(): No such file or directory Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1O6otj-0008CP-ER for ged-emacs-devel@m.gmane.org; Tue, 27 Apr 2010 19:48:39 +0200 Original-Received: from localhost ([127.0.0.1]:48185 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1O6oti-0002sQ-MJ for ged-emacs-devel@m.gmane.org; Tue, 27 Apr 2010 13:48:38 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1O6otb-0002s0-9C for emacs-devel@gnu.org; Tue, 27 Apr 2010 13:48:31 -0400 Original-Received: from [140.186.70.92] (port=55029 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1O6ota-0002rf-1J for emacs-devel@gnu.org; Tue, 27 Apr 2010 13:48:30 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1O6otX-0007DI-Fi for emacs-devel@gnu.org; Tue, 27 Apr 2010 13:48:29 -0400 Original-Received: from mx1.redhat.com ([209.132.183.28]:38700) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O6otX-0007Ct-8d for emacs-devel@gnu.org; Tue, 27 Apr 2010 13:48:27 -0400 Original-Received: from int-mx05.intmail.prod.int.phx2.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.18]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o3RHmPHY024914 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 27 Apr 2010 13:48:26 -0400 Original-Received: from ns3.rdu.redhat.com (ns3.rdu.redhat.com [10.11.255.199]) by int-mx05.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id o3RHmPOC028674; Tue, 27 Apr 2010 13:48:25 -0400 Original-Received: from opsy.redhat.com (ovpn01.gateway.prod.ext.phx2.redhat.com [10.5.9.1]) by ns3.rdu.redhat.com (8.13.8/8.13.8) with ESMTP id o3RHmOBb016082; Tue, 27 Apr 2010 13:48:24 -0400 Original-Received: by opsy.redhat.com (Postfix, from userid 500) id 115383785F1; Tue, 27 Apr 2010 11:48:24 -0600 (MDT) X-Attribution: Tom X-Scanned-By: MIMEDefang 2.67 on 10.5.11.18 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:124250 Archived-At: 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 + + * emacs-lisp/bytecomp.el (byte-compile-check-variable): Use + byte-compile-not-obsolete-vars. + 2006-12-04 Miles Bader * 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 ;; Hallvard Furuseth --- 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 ;; Hallvard Furuseth *************** *** 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)