From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Richard M. Stallman" Newsgroups: gmane.emacs.devel Subject: Re: defvar'ing constants Date: Fri, 24 Jun 2005 20:31:44 -0400 Message-ID: References: Reply-To: rms@gnu.org NNTP-Posting-Host: main.gmane.org X-Trace: sea.gmane.org 1119661440 29872 80.91.229.2 (25 Jun 2005 01:04:00 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 25 Jun 2005 01:04:00 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Jun 25 03:03:59 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1Dlz5P-00033o-DW for ged-emacs-devel@m.gmane.org; Sat, 25 Jun 2005 03:03:55 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DlzCX-0002Yc-QW for ged-emacs-devel@m.gmane.org; Fri, 24 Jun 2005 21:11:17 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Dlz7y-0008W8-B4 for emacs-devel@gnu.org; Fri, 24 Jun 2005 21:06:34 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Dlz5a-0007P3-2Y for emacs-devel@gnu.org; Fri, 24 Jun 2005 21:04:06 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Dlz5V-0007HK-Nf for emacs-devel@gnu.org; Fri, 24 Jun 2005 21:04:01 -0400 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1Dlyf0-0007k3-1N for emacs-devel@gnu.org; Fri, 24 Jun 2005 20:36:38 -0400 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.34) id 1DlyaG-000481-MB; Fri, 24 Jun 2005 20:31:44 -0400 Original-To: Juanma Barranquero In-reply-to: (message from Juanma Barranquero on Fri, 24 Jun 2005 05:54:41 +0200) 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:39479 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:39479 For consistency: (defvar CONSTANT) ; should work (defvar CONSTANT ITS-VALUE) ; should work (defvar CONSTANT OTHER-VALUE) ; should fail I think it is more consistent to make them all errors. defvar should not be used on these symbols.