From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Juanma Barranquero Newsgroups: gmane.emacs.devel Subject: Re: defvar'ing constants Date: Sat, 25 Jun 2005 15:05:47 +0200 Message-ID: References: <87slz7844t.fsf@vh213602.truman.edu> Reply-To: Juanma Barranquero NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: sea.gmane.org 1119705750 21643 80.91.229.2 (25 Jun 2005 13:22:30 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 25 Jun 2005 13:22:30 +0000 (UTC) Cc: rms@gnu.org, emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Jun 25 15:22:28 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DmAc1-0006zQ-DK for ged-emacs-devel@m.gmane.org; Sat, 25 Jun 2005 15:22:21 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DmAjG-0001Px-5Z for ged-emacs-devel@m.gmane.org; Sat, 25 Jun 2005 09:29:50 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DmAg4-0008JK-0v for emacs-devel@gnu.org; Sat, 25 Jun 2005 09:26:32 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DmAfv-0008EQ-JG for emacs-devel@gnu.org; Sat, 25 Jun 2005 09:26:25 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DmAft-00087g-CZ for emacs-devel@gnu.org; Sat, 25 Jun 2005 09:26:21 -0400 Original-Received: from [64.233.182.199] (helo=nproxy.gmail.com) by monty-python.gnu.org with esmtp (Exim 4.34) id 1DmAPl-0002WB-5L for emacs-devel@gnu.org; Sat, 25 Jun 2005 09:09:41 -0400 Original-Received: by nproxy.gmail.com with SMTP id i2so112926nfe for ; Sat, 25 Jun 2005 06:05:47 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=jYkw+KYlBySQDRTmWe4QJh5jJONP7HxqVJS03ylW0E0lmUIvMnpK9w/MdPJLmUVm+7bm4sMp0mWwgKWBzApOWto4y8kbIN0Ws3KagioiG1WzWZa3j9hnMu5Bnhb8SwbiBTO8s9vBef5Klf4moOHthvjV8k4MWjjZy9dSnzOkLBM= Original-Received: by 10.48.249.6 with SMTP id w6mr75624nfh; Sat, 25 Jun 2005 06:05:47 -0700 (PDT) Original-Received: by 10.48.250.5 with HTTP; Sat, 25 Jun 2005 06:05:47 -0700 (PDT) Original-To: belanger@truman.edu In-Reply-To: <87slz7844t.fsf@vh213602.truman.edu> Content-Disposition: inline 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:39493 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:39493 > If a constant is defined in one file but used in a second, is there > then a way of quieting the compiler when the second file is compiled? "Constants", in the sense used in this thread, are not defconsts (which are really mutable), but keywords, and symbols defined in C which are marked as constant (for example, `enable-multibyte-characters'). --=20 /L/e/k/t/u