From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: Installing cond* in core Date: Tue, 30 Jan 2024 15:04:42 +0200 Message-ID: <86h6iv2cr9.fsf@gnu.org> References: Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="10944"; mail-complaints-to="usenet@ciao.gmane.io" Cc: stefankangas@gmail.com, emacs-devel@gnu.org To: rms@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Tue Jan 30 14:05:39 2024 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1rUno2-0002Xb-UG for ged-emacs-devel@m.gmane-mx.org; Tue, 30 Jan 2024 14:05:39 +0100 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1rUnnX-0005I3-KE; Tue, 30 Jan 2024 08:05:07 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1rUnnQ-0005Ew-71 for emacs-devel@gnu.org; Tue, 30 Jan 2024 08:05:03 -0500 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1rUnnP-0008V9-UT; Tue, 30 Jan 2024 08:04:59 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=vEAVHjF4XuQbn3w9ACON0Sq2LqCBFMX3RupqdB/7cig=; b=NYZXpN1R9iXe U+iYuNXLXwU5OcrcWjS7c/xeKTP1JnYCvMbxj9AXe/oyjrbSDmF/VyN+jYxCJJDAnXYhXmmaGqY55 6Lp9hqhv1I/5Rs94Dk1FWcJGH53kqn5ddxgKztxPV80Nz1Nx8c1gegX0zYkgtJQ82EneEZ1g1lSaa uJNfNSUFH7KJBQG7AVBy2Jbjqo6+3F/Kb5wtkTmvd8UiMs7usbTT4O9oYQgBEwoCiB/+kC+D2uBwC PGcSoJWC97pt+QvdOxQkjMmSXuPJOlldGrlJrgC5go4JzCzwphDaTiv7eXRSNqkYwmVilWILkBp9S GSz3Wg5V4TxTyW+b0oI/yQ==; In-Reply-To: (message from Richard Stallman on Mon, 29 Jan 2024 22:58:34 -0500) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.devel:315638 Archived-At: > From: Richard Stallman > Cc: emacs-devel@gnu.org > Date: Mon, 29 Jan 2024 22:58:34 -0500 > > There should be no need to preload cond* because it defines no > run-time support. All its work is done at macroexpand time. Which is why we should try to make sure all preloaded files require cond* only with eval-when-compile. > Perhaps there will be an issue about using it in *non-compiled* files > that are loaded early. Is any such file complex enough to want to use > constructs such as cond* or pcase? I don't think we have such files, at least not now.