From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: globals.h Date: Wed, 26 Jan 2011 14:02:11 -0500 Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1296068639 14957 80.91.229.12 (26 Jan 2011 19:03:59 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Wed, 26 Jan 2011 19:03:59 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Jan 26 20:03:52 2011 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 1PiAem-0006XQ-3P for ged-emacs-devel@m.gmane.org; Wed, 26 Jan 2011 20:03:52 +0100 Original-Received: from localhost ([127.0.0.1]:41799 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PiAel-0002EF-Dc for ged-emacs-devel@m.gmane.org; Wed, 26 Jan 2011 14:03:51 -0500 Original-Received: from [140.186.70.92] (port=44575 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PiAdC-0001BN-6N for emacs-devel@gnu.org; Wed, 26 Jan 2011 14:02:15 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PiAdB-0001RT-3U for emacs-devel@gnu.org; Wed, 26 Jan 2011 14:02:14 -0500 Original-Received: from ironport2-out.teksavvy.com ([206.248.154.181]:13843 helo=ironport2-out.pppoe.ca) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PiAdA-0001RB-W2 for emacs-devel@gnu.org; Wed, 26 Jan 2011 14:02:13 -0500 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AosFALX+P01MCo4O/2dsb2JhbACWWI4fdL0uhU8EhRePaw X-IronPort-AV: E=Sophos;i="4.60,381,1291611600"; d="scan'208";a="89331394" Original-Received: from 76-10-142-14.dsl.teksavvy.com (HELO ceviche.home) ([76.10.142.14]) by ironport2-out.pppoe.ca with ESMTP/TLS/ADH-AES256-SHA; 26 Jan 2011 14:02:11 -0500 Original-Received: by ceviche.home (Postfix, from userid 20848) id 3DFF7660D4; Wed, 26 Jan 2011 14:02:11 -0500 (EST) User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (gnu/linux) 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:135044 Archived-At: The new globals.h is inconvenient as it is: adding o removing a global variable is kind of a pain. Could someone change it so that globals.h is auto-generated, based on macro calls in the C files like: GLOBAL_VAR(Lisp_Object, Vfoo); which would get expanded to nothing, but would tell the scripot about the new Vfoo global var. Stefan