From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Martin Stjernholm Newsgroups: gmane.emacs.devel Subject: Re: CC Mode 5.30 Date: Fri, 04 Jul 2003 13:05:16 +0200 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: <5bfzlmmu1f.fsf@lister.roxen.com> References: <3F051DDD.3090903@wanadoo.fr> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1057318364 13498 80.91.224.249 (4 Jul 2003 11:32:44 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Fri, 4 Jul 2003 11:32:44 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Fri Jul 04 13:32:42 2003 Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19YOny-0003VL-00 for ; Fri, 04 Jul 2003 13:32:42 +0200 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 19YOwL-0007JU-00 for ; Fri, 04 Jul 2003 13:41:21 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.20) id 19YOnD-0006Ap-JE for emacs-devel@quimby.gnus.org; Fri, 04 Jul 2003 07:31:55 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.20) id 19YOZk-00019z-13 for emacs-devel@gnu.org; Fri, 04 Jul 2003 07:18:00 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.20) id 19YOVp-0000bt-9N for emacs-devel@gnu.org; Fri, 04 Jul 2003 07:13:57 -0400 Original-Received: from godzilla.roxen.com ([194.52.182.190] helo=mail.roxen.com) by monty-python.gnu.org with esmtp (Exim 4.20) id 19YONX-00085h-Ml for emacs-devel@gnu.org; Fri, 04 Jul 2003 07:05:23 -0400 Original-Received: by mail.roxen.com (Postfix, from userid 52) id C637D9A01; Fri, 4 Jul 2003 13:05:15 +0200 (MEST) Original-Received: from lister.roxen.com (unknown [194.52.182.147]) by mail.roxen.com (Postfix) with ESMTP id B8EEF99B3; Fri, 4 Jul 2003 13:05:13 +0200 (MEST) Original-Received: from mast by lister.roxen.com with local (Exim 3.36 #1 (Debian)) id 19YONR-0007Z3-00; Fri, 04 Jul 2003 13:05:17 +0200 Original-To: David Ponce In-Reply-To: <3F051DDD.3090903@wanadoo.fr> (David Ponce's message of "Fri, 04 Jul 2003 08:25:33 +0200") User-Agent: Gnus/5.090016 (Oort Gnus v0.16) Emacs/20.7 (gnu/linux) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Emacs development discussions. List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:15369 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:15369 David Ponce wrote: > It seems that `c-emacs-features' was an auto-loaded definition in > previous version of cc-vars.el (1.29). True. That was removed since several functions in CC Mode now is used to compute the value of that variable, so the initialization can't be copied into loaddefs.el. I've instead removed the dependency on c-emacs-features in generic-x.el. It was only used to detect whether a syntax table should be populated in the Emacs or the XEmacs way, which is obvious anyway in this case. If other packages use it (a grep-find through the Emacs tree didn't reveal any), they have to do (require 'cc-vars) first.