From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.ciao.gmane.io!not-for-mail From: Jorge P. de Morais Neto Newsgroups: gmane.emacs.help Subject: Re: The function =?utf-8?Q?=E2=80=98cl-set-difference=E2=80=99?= might not be defined at runtime Date: Wed, 15 Apr 2020 09:52:06 -0300 Message-ID: <87sgh429op.fsf@disroot.org> References: <877dyi2btk.fsf@disroot.org> <87zhbe7x87.fsf@gmail.com> <874ktl3oxb.fsf@disroot.org> <87v9m19a63.fsf@gmail.com> <871rop3mj0.fsf@disroot.org> <87r1wp95u3.fsf@gmail.com> <87y2qx237b.fsf@disroot.org> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="ciao.gmane.io:159.69.161.202"; logging-data="31498"; mail-complaints-to="usenet@ciao.gmane.io" To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Wed Apr 15 14:52:48 2020 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 1jOhX5-00085R-VG for geh-help-gnu-emacs@m.gmane-mx.org; Wed, 15 Apr 2020 14:52:47 +0200 Original-Received: from localhost ([::1]:49394 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jOhX5-0001fc-0o for geh-help-gnu-emacs@m.gmane-mx.org; Wed, 15 Apr 2020 08:52:47 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:60569) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jOhWl-0001fJ-Kt for help-gnu-emacs@gnu.org; Wed, 15 Apr 2020 08:52:28 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jOhWk-0007pM-FB for help-gnu-emacs@gnu.org; Wed, 15 Apr 2020 08:52:27 -0400 Original-Received: from knopi.disroot.org ([178.21.23.139]:41782) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1jOhWk-0007oc-1H for help-gnu-emacs@gnu.org; Wed, 15 Apr 2020 08:52:26 -0400 Original-Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 52DB7232A6 for ; Wed, 15 Apr 2020 14:52:24 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at disroot.org Original-Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 5YEUj2rMBSRN for ; Wed, 15 Apr 2020 14:52:23 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1586955142; bh=1/SWOSYn524DCFzVykVnV1VP/ipBIp5aao9FMV7wrwA=; h=From:To:Subject:In-Reply-To:References:Date; b=Iq6+banzMRFRy8NX1YJJiFfxdWVubeBZPx8z/z5I+zfs6UbGD7XQwOd4uwNifXsMt 7UedxbT8EUH7u9N7QlNwr0Z65p6F/K4+Q2eT0J9umb6DgotLnnCcL/FMbfY8hEwEwf 3YYf6yo5EtkqlARak2Uk/ScM8AUCa69jIGMYehNiX+al2JH5O9YMxSRxrLGSKmFG5B 8gi2RgLNboPPU713/d65bQUsfynZZ2MS6MGhDpGomPiO15826RJhPhVmKe3vaXkUnF Iebui2i8jE1cemn6ZoSs+ekAN+c5NkIKGqNPGtcKuCdQg69XHed5q5WdCnanewK6YY vXcbUeQ6U/LAQ== In-Reply-To: Mail-Followup-To: help-gnu-emacs@gnu.org X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 178.21.23.139 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:122827 Archived-At: Em [2020-04-15 qua 00:01:38-0400], Stefan Monnier escreveu: >> To placate Flycheck regarding the use of cl-assert, I required >> 'cl-macs when compiling. So I had: > > Bad idea. `cl-assert` might be in `cl-macs` but might not. > The library that provides `cl-assert` is `cl-lib`. Which parts of > `cl-lib` are actually in `cl-macs` or `cl-seq` or `cl-extra` or ... is > an internal detail that can change at any point. Thank you for the information. I have fixed my code. There still remains the oddity that `(eval-when-compile (require 'cl-lib))` must come before the declare-function of cl-set-difference or else Flycheck complains. However, at least now I can fix it by reorganizing the code -- and, now that I think, the `(eval-when-compile (require 'cl-lib))` fits nicely at the beginning of the file. Regards -- - - I am Brazilian. I hope my English is correct and I welcome feedback. - Please adopt free/libre formats like PDF, ODF, Org, LaTeX, Opus, WebM and 7z. - Free/libre software for Replicant, LineageOS and Android: https://f-droid.org - [[https://www.gnu.org/philosophy/free-sw.html][What is free software?]]