From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Richard Stallman Newsgroups: gmane.emacs.devel Subject: Re: Current CVS doesn't bootstrap Date: Tue, 15 Feb 2005 12:27:46 -0500 Message-ID: References: Reply-To: rms@gnu.org NNTP-Posting-Host: deer.gmane.org X-Trace: sea.gmane.org 1108489928 30192 80.91.229.6 (15 Feb 2005 17:52:08 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 15 Feb 2005 17:52:08 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Feb 15 18:52:02 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1D16ri-0005G6-00 for ; Tue, 15 Feb 2005 18:52:02 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1D177V-0004EX-3X for ged-emacs-devel@m.gmane.org; Tue, 15 Feb 2005 13:08:21 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1D16vx-0008Rt-Lf for emacs-devel@gnu.org; Tue, 15 Feb 2005 12:56:25 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1D16vw-0008RQ-VX for emacs-devel@gnu.org; Tue, 15 Feb 2005 12:56:25 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1D16uP-0007qc-Q9 for emacs-devel@gnu.org; Tue, 15 Feb 2005 12:54:49 -0500 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1D16YM-0001EQ-3b for emacs-devel@gnu.org; Tue, 15 Feb 2005 12:32:02 -0500 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.34) id 1D16UE-0008Sg-7E; Tue, 15 Feb 2005 12:27:46 -0500 Original-To: Andreas Schwab In-reply-to: (message from Andreas Schwab on Mon, 14 Feb 2005 12:12:14 +0100) 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: main.gmane.org gmane.emacs.devel:33487 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:33487 Shouldn't it use default-boundp? *** cus-start.el 15 Feb 2005 01:22:16 -0500 1.67 --- cus-start.el 15 Feb 2005 02:36:28 -0500 *************** *** 312,318 **** ;; use the current value as the standard value. standard (if (nthcdr 4 this) (nth 4 this) ! (when (boundp symbol) (funcall quoter (default-value symbol)))) ;; Don't complain about missing variables which are ;; irrelevant to this platform. --- 312,318 ---- ;; use the current value as the standard value. standard (if (nthcdr 4 this) (nth 4 this) ! (when (default-boundp symbol) (funcall quoter (default-value symbol)))) ;; Don't complain about missing variables which are ;; irrelevant to this platform.