From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: "Philip K." Newsgroups: gmane.emacs.help Subject: Re: rx expressions Date: Mon, 01 Feb 2021 10:49:42 +0100 Message-ID: <87h7mw15jd.fsf@posteo.net> References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="25455"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) Cc: Help Gnu Emacs To: steve-humphreys@gmx.com Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Mon Feb 01 10:51:12 2021 Return-path: Envelope-to: geh-help-gnu-emacs@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 1l6VrU-0006WK-IP for geh-help-gnu-emacs@m.gmane-mx.org; Mon, 01 Feb 2021 10:51:12 +0100 Original-Received: from localhost ([::1]:49524 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1l6VrT-0006e8-KX for geh-help-gnu-emacs@m.gmane-mx.org; Mon, 01 Feb 2021 04:51:11 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:54434) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1l6VqB-0006dc-FI for help-gnu-emacs@gnu.org; Mon, 01 Feb 2021 04:49:52 -0500 Original-Received: from mout02.posteo.de ([185.67.36.66]:42147) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1l6Vq8-0005Xn-AT for help-gnu-emacs@gnu.org; Mon, 01 Feb 2021 04:49:51 -0500 Original-Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id 2B10F2400FD for ; Mon, 1 Feb 2021 10:49:45 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1612172985; bh=znTt/lxA9yxUxNk73lAVVUvVrNsyvh/HYxIZc1eGJnY=; h=From:To:Cc:Subject:Date:From; b=bGgn2cy8jXSnqLpSI+N9x1K+5W1CoWdQKrUdyUxgXTzF70Fxi7nGzVqJpAN+XebhG T182ZhBnwMPEX2HPeBFXInsQZi9Ug8tZFuZH/EuQO4bv/EnX1kEDaKNOJstvVVj/mN Y1WCGBKjIUiq7wOXOOoQ8X6/NPs7FjIx8zFiQtn8qjIzv2Bpp/qq9gFt0B2+nRLXHa cHmzzZH89wSOnCsJKLacS+ohyxTden8d+6uXLxXPeKA7YI9AHXUQCYL6MT2GlLxaOP C+5hhCJauwP94QDboVuVDNyaf2hlapDZmysgLWJ7DJFhSJkp3ZLOpT9rZs4q1W3m/b qcDFUgW7vnGYg== Original-Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4DTjpc2jQ6z9rxb; Mon, 1 Feb 2021 10:49:44 +0100 (CET) In-Reply-To: (steve-humphreys@gmx.com's message of "Sun, 31 Jan 2021 16:00:23 +0100") Received-SPF: pass client-ip=185.67.36.66; envelope-from=philipk@posteo.net; helo=mout02.posteo.de X-Spam_score_int: -43 X-Spam_score: -4.4 X-Spam_bar: ---- X-Spam_report: (-4.4 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Original-Sender: "help-gnu-emacs" Xref: news.gmane.io gmane.emacs.help:127513 Archived-At: steve-humphreys@gmx.com writes: > When using rx expressions does one need to call > > (require 'rx) I usually add (eval-when-compile (require 'rx)) so that rx doesn't have to be loaded if it the file is byte-compiled, but otherwise it's autoloaded (C-h o rx): rx is an autoloaded Lisp macro in =E2=80=98rx.el=E2=80=99. --=20 Philip K.