From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED.blaine.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Re: Bootstrap/autoload policy (was Re: regular expressions that match nothing) Date: Wed, 22 May 2019 10:02:15 -0400 Message-ID: References: <7a6b23f52418b093a4cf7a6db4306cf425533249.camel@acm.org> <87a7fnzd3u.fsf@web.de> <128EBFB8-78FF-47C3-8F28-C1EF91BFC4BB@acm.org> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: blaine.gmane.org; posting-host="blaine.gmane.org:195.159.176.226"; logging-data="131862"; mail-complaints-to="usenet@blaine.gmane.org" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (gnu/linux) Cc: Emacs developers To: Mattias =?windows-1252?Q?Engdeg=E5rd?= Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed May 22 16:03:17 2019 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([209.51.188.17]) by blaine.gmane.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:256) (Exim 4.89) (envelope-from ) id 1hTRps-000Y9t-Ko for ged-emacs-devel@m.gmane.org; Wed, 22 May 2019 16:03:16 +0200 Original-Received: from localhost ([127.0.0.1]:43950 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hTRpr-0007dp-CO for ged-emacs-devel@m.gmane.org; Wed, 22 May 2019 10:03:15 -0400 Original-Received: from eggs.gnu.org ([209.51.188.92]:47463) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hTRoy-0007dj-HO for emacs-devel@gnu.org; Wed, 22 May 2019 10:02:25 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hTRox-0002ao-C4 for emacs-devel@gnu.org; Wed, 22 May 2019 10:02:20 -0400 Original-Received: from mailscanner.iro.umontreal.ca ([132.204.25.50]:21006) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hTRox-0002a5-8G for emacs-devel@gnu.org; Wed, 22 May 2019 10:02:19 -0400 Original-Received: from pmg3.iro.umontreal.ca (localhost [127.0.0.1]) by pmg3.iro.umontreal.ca (Proxmox) with ESMTP id 8FD1E44295E; Wed, 22 May 2019 10:02:17 -0400 (EDT) Original-Received: from mail02.iro.umontreal.ca (unknown [172.31.2.1]) by pmg3.iro.umontreal.ca (Proxmox) with ESMTP id 73C5044295C; Wed, 22 May 2019 10:02:16 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=iro.umontreal.ca; s=mail; t=1558533736; bh=COvakBQQVT4sApM7UTpEkCTZ+7MqsRNUJ2MK+NUXGl4=; h=From:To:Cc:Subject:References:Date:In-Reply-To:From; b=CwXktFln298xglS7Q0O84U94Y/aLTwH4E6nKjowA/ssslr0IFXEDflWewGjMz6fWM XydOp9eJI81pz3sPt4V5M4fz/ILX6NOFt3KtD1ARTlCUluOW4tXMNFX5f0P162N9If 8Wx/3Jlz8KWuz1NdohSR9uNz32/2gNySByquaZ4NbmUnzHW6BeDFMQEsf2uQ9i/cB8 Up2MMzoGmiq9kjZsQKTkt/UAvtsEJnOCbfomf7v9nVn6hCa5aI7bap+42kzDyJNasU TaYrw8brk92UJjEiF5kkv8Sa3YwwL/Zhxxm1QOud6sIF4zUQ+02QOMNyvM4hwuk+l1 e0GbL2g1YysOg== Original-Received: from pastel (unknown [216.154.3.168]) by mail02.iro.umontreal.ca (Postfix) with ESMTPSA id 3E554120821; Wed, 22 May 2019 10:02:16 -0400 (EDT) In-Reply-To: ("Mattias \=\?windows-1252\?Q\?Engdeg\=E5rd\=22's\?\= message of "Mon, 20 May 2019 18:26:04 +0200") X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 132.204.25.50 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.21 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.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.org gmane.emacs.devel:236894 Archived-At: > The patch uses `cl-every' in rx.el, and the surface error (now fixed) was > that rx didn't require `cl-extra' where that function is defined, despite it > being autoloaded. cl-every is not autoloaded (in general). It's only autoloaded after you (require 'cl-lib), which is The Right Way to get it defined (as opposed to requiring cl-extra which is wrong because where cl-every is defined is an internal implementation detail of cl-lib). Stefan