From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Chong Yidong Newsgroups: gmane.emacs.devel Subject: Re: C-h v problem on Emacs trunk on Mac OS X Date: Mon, 21 Feb 2011 13:03:04 -0500 Message-ID: <87sjvhxo2v.fsf@stupidchicken.com> References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1298311399 5597 80.91.229.12 (21 Feb 2011 18:03:19 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Mon, 21 Feb 2011 18:03:19 +0000 (UTC) Cc: Emacs-devel@gnu.org To: Ben Key Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Feb 21 19:03:14 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 1Pra6M-0007L1-95 for ged-emacs-devel@m.gmane.org; Mon, 21 Feb 2011 19:03:14 +0100 Original-Received: from localhost ([127.0.0.1]:44884 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Pra6L-000631-KL for ged-emacs-devel@m.gmane.org; Mon, 21 Feb 2011 13:03:13 -0500 Original-Received: from [140.186.70.92] (port=52027 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Pra6H-00062w-Po for Emacs-devel@gnu.org; Mon, 21 Feb 2011 13:03:10 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Pra6F-0005q8-5H for Emacs-devel@gnu.org; Mon, 21 Feb 2011 13:03:09 -0500 Original-Received: from vm-emlprdomr-04.its.yale.edu ([130.132.50.145]:58316) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Pra6F-0005q2-2D for Emacs-devel@gnu.org; Mon, 21 Feb 2011 13:03:07 -0500 Original-Received: from furball (dhcp128036225081.central.yale.edu [128.36.225.81]) (authenticated bits=0) by vm-emlprdomr-04.its.yale.edu (8.14.4/8.14.4) with ESMTP id p1LI34Ad026849 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Mon, 21 Feb 2011 13:03:04 -0500 Original-Received: by furball (Postfix, from userid 1000) id AF0C116054E; Mon, 21 Feb 2011 13:03:04 -0500 (EST) In-Reply-To: (Ben Key's message of "Mon, 21 Feb 2011 04:08:16 -0600") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (gnu/linux) X-Scanned-By: MIMEDefang 2.71 on 130.132.50.145 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 130.132.50.145 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:136330 Archived-At: Ben Key writes: > I have some more information on the cause of this bug. It turns out > that it is an unintended consequence of the recent BVAR and KVAR > changes. The parser used be make-docfile is very simplistic. It > assumes that when it sees a DEFVAR_PER_BUFFER it can start looking for > the documentation after 2 commas. This assumption is no longer valid > because of the added comma in the usage of the BVAR macro. > > The following patch appears to fix this problem. Thanks; committed.