From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Jason Rumney Newsgroups: gmane.emacs.devel Subject: Re: Splitting and moving generic.el. Date: Wed, 20 Apr 2005 12:36:06 +0100 Message-ID: <42663EA6.5080906@gnu.org> References: <42661B71.6010504@gnu.org> <87acntwwlf.fsf@xs4all.nl> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1113997180 3529 80.91.229.2 (20 Apr 2005 11:39:40 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 20 Apr 2005 11:39:40 +0000 (UTC) Cc: Emacs Devel Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Apr 20 13:39:38 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DODXc-00039b-Ac for ged-emacs-devel@m.gmane.org; Wed, 20 Apr 2005 13:38:48 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DODc7-0002ID-Fx for ged-emacs-devel@m.gmane.org; Wed, 20 Apr 2005 07:43:27 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DODXt-0001S6-Ow for emacs-devel@gnu.org; Wed, 20 Apr 2005 07:39:05 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DODXr-0001RM-6o for emacs-devel@gnu.org; Wed, 20 Apr 2005 07:39:04 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DODXq-0001NS-UX for emacs-devel@gnu.org; Wed, 20 Apr 2005 07:39:03 -0400 Original-Received: from [217.207.198.106] (helo=exchange.integrasp.com) by monty-python.gnu.org with esmtp (Exim 4.34) id 1DODXH-0003K2-48 for emacs-devel@gnu.org; Wed, 20 Apr 2005 07:38:27 -0400 Original-Received: from ASSP-nospam (localhost [127.0.0.1]) by exchange.integrasp.com with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2653.13) id 2RRVL8K8; Wed, 20 Apr 2005 12:35:01 +0100 Original-Received: from 217.205.90.2 ([217.205.90.2] helo=[10.10.5.77]) by ASSP-nospam ; 20 Apr 05 11:34:59 -0000 User-Agent: Mozilla Thunderbird 1.0 (Windows/20041206) X-Accept-Language: en-us, en Original-To: Lute Kamstra In-Reply-To: <87acntwwlf.fsf@xs4all.nl> 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:36153 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:36153 Lute Kamstra wrote: > >Doing (require 'generic-x) shouldn't load generic unless generic-x is >loaded from source. Any idea why your lisp/generic-x.el isn't >compiled? > > generic-x.el is in the DONTCOMPILE list in the lisp makefile. >The error suggests that an old version of generic is used (from before >define-generic-mode became a macro, one month ago). Do you have >lisp/emacs-lisp/generic.el, revision 1.1? Is your >lisp/emacs-lisp/generic.elc up to date? Is an old lisp/generic.el{,c} >shadowing lisp/emacs-lisp/generic.el{,c}? > > There was an old generic.elc that didn't get cleaned out by the bootstrap. This is probably the biggest problem caused by moving files around, CVS might delete the old .el file, but the .elc gets left behind. >Can you reproduce your problem when you (do a make bootstrap and) >start Emacs with "emacs -Q" and do (require 'generic-x) manually? > >Lute. > >