From debbugs-submit-bounces@debbugs.gnu.org Thu Dec 02 04:15:28 2021 Received: (at submit) by debbugs.gnu.org; 2 Dec 2021 09:15:28 +0000 Received: from localhost ([127.0.0.1]:46566 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1msiBb-0007D4-SF for submit@debbugs.gnu.org; Thu, 02 Dec 2021 04:15:28 -0500 Received: from lists.gnu.org ([209.51.188.17]:37476) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1msiBX-00078Z-LF for submit@debbugs.gnu.org; Thu, 02 Dec 2021 04:15:26 -0500 Received: from eggs.gnu.org ([209.51.188.92]:43074) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1msiBX-0004Dd-G1 for bug-guile@gnu.org; Thu, 02 Dec 2021 04:15:23 -0500 Received: from mail-40136.proton.ch ([185.70.40.136]:49457) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1msiBR-0005C6-G7 for bug-guile@gnu.org; Thu, 02 Dec 2021 04:15:21 -0500 Date: Thu, 02 Dec 2021 09:15:04 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=hyper.dev; s=protonmail; t=1638436506; bh=4z0dHbccjUaacUooZtb3jdnbAh2G9f7p9QDtDRH8EzY=; h=Date:To:From:Reply-To:Subject:From; b=fslAHg8yi01FugODanwsgMi9ZnaKRfqF5cRK2IbM3AvqOkSRxzaybVAWcioL693gv zQg34bIJrlJs1qCWQgQo3ZS3Oie4cLUQ+02zz3yB9rp37Jj/qJs191Pyr5aRvjzEzU ULBgcR3+igT8ojWe5HQmrVM58dLqdEJw/I5UcidLL8dhfixN3BOuPWHUTP/hsti2Rv zLS3hXbmGGN6BWOHbT1U18S7BYwkh5aQ5IO8o/MXov+bFR5PidO6WrG1QTF6sYXz9l koiBiX+ySPeS/IBccBWXpVPCksv8Cz12C7h1K+VKlD+7sFJiuGrOD/qKU86XzjWVua 2TQCSa3mUiH8Q== To: "bug-guile@gnu.org" From: Amirouche Subject: R7RS define-library does not support cond-expand Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Status: No, score=-1.2 required=10.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF shortcircuit=no autolearn=disabled version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on mailout.protonmail.ch Received-SPF: pass client-ip=185.70.40.136; envelope-from=amirouche@hyper.dev; helo=mail-40136.proton.ch X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 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_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Amirouche Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) workaround: #;> find live -type f -exec sh -c "echo \";;; cat {}\"; cat {}" \; ;;; cat live/hello/body.scm (define (hello name) (display "Hello schemer ") (display name) (display "!") (newline)) ;;; cat live/hello.scm (define-library (live hello) (import (scheme base) (scheme write)) (export hello) (include "hello/body.scm")) ;;; cat live/hello.sld (define-library (live hello) (import (scheme base) (scheme write)) (export hello) (cond-expand ((or mit guile chibi gambit gerbil loko) (include "hello/body.scm")) ;; That is the rule picked up by chicken (else (include "live/hello/body.scm")))) ;;; cat live/hello.rkt #!r7rs (define-library (live hello) (export hello) (import (scheme base) (scheme write)) (include "hello/body.scm")) ;;; cat live/hello.chez.sls (library (live hello) (export hello) (import (chezscheme)) (include "hello/body.scm")) #;> The following command guile myprogram.scm will pick `live/hello.scm` as the library `(live hello)` Unlike: guile --r7rs myprogram.scm that will pick `live/hello.sld` that contains a cond-expand, and that is no= t supported by guile. From debbugs-submit-bounces@debbugs.gnu.org Fri Dec 03 05:58:34 2021 Received: (at 52239) by debbugs.gnu.org; 3 Dec 2021 10:58:34 +0000 Received: from localhost ([127.0.0.1]:50089 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mt6Gw-0002Uk-2z for submit@debbugs.gnu.org; Fri, 03 Dec 2021 05:58:34 -0500 Received: from mail-4317.proton.ch ([185.70.43.17]:24730) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mt6Gs-0002UR-BB for 52239@debbugs.gnu.org; Fri, 03 Dec 2021 05:58:32 -0500 Date: Fri, 03 Dec 2021 10:58:22 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=hyper.dev; s=protonmail; t=1638529103; bh=pPr5Ld3m7SH++WFJ49d2HABrMM+gDVsoXJzH61MeI74=; h=Date:To:From:Reply-To:Subject:Message-ID:From:To:Cc; b=sGOGfxh2IuynWwecX4u4u69gfvEuLFJrMzNCEK4Cy9X1UlcI91p7gKTpUkz6Gfvkc iHYDE69aDINKpZzP09EQ0jN7Zuk5/8hH4qY0xx7NkMc2NnhRqonwWOG6r+fX7Y/w25 UH0dJhrFaYYo1zugOwEOn5F4qYRz3EAKbJ/kiHeIZzG1Kw234SyD2PD3f8DCxfqdE4 261BTjMgoiDf+vs7EIykYr9U9DXJ8v7rG3eFBJs2XwEC5DIGdl2ulwAgXms3pr4LmB 9NKcGmnV89nx6/OrIo9genFKHVJ3I2Sm3DqYX+Li5klFUw+N1169SypzqWwrGCxNb8 zSlh3OyncShCw== To: "52239@debbugs.gnu.org" <52239@debbugs.gnu.org> From: Amirouche Subject: (No Subject) Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Status: No, score=-1.2 required=10.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF shortcircuit=no autolearn=disabled version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on mailout.protonmail.ch X-Spam-Score: 2.0 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: I do not reproduce with guile (GNU Guile) 3.0.7.70-6af33 Content analysis details: (2.0 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 2.0 SLIGHTLY_BAD_SUBJECT Subject contains something slightly spammy -0.0 SPF_PASS SPF: sender matches SPF record 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record -0.0 RCVD_IN_MSPIKE_H4 RBL: Very Good reputation (+4) [185.70.43.17 listed in wl.mailspike.net] -0.0 RCVD_IN_MSPIKE_WL Mailspike good senders X-Debbugs-Envelope-To: 52239 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Amirouche Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 1.0 (+) I do not reproduce with guile (GNU Guile) 3.0.7.70-6af33 From debbugs-submit-bounces@debbugs.gnu.org Fri Dec 03 06:11:16 2021 Received: (at 52239) by debbugs.gnu.org; 3 Dec 2021 11:11:16 +0000 Received: from localhost ([127.0.0.1]:50128 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mt6TD-0002rb-WF for submit@debbugs.gnu.org; Fri, 03 Dec 2021 06:11:16 -0500 Received: from mail-4323.proton.ch ([185.70.43.23]:45093) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mt6TA-0002rF-Ks for 52239@debbugs.gnu.org; Fri, 03 Dec 2021 06:11:14 -0500 Date: Fri, 03 Dec 2021 11:11:05 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=hyper.dev; s=protonmail; t=1638529865; bh=gl4ISkcR8UdhSac46mEbdYSH6CrcQgqhzf6FgQfru08=; h=Date:To:From:Reply-To:Subject:Message-ID:In-Reply-To:References: From:To:Cc; b=TsPHDspYOOlMwDV+LDaJYCVD7JUjwMnihKNRLXo1JCBfawTiF4atLc6/CExStZVc4 TeA527QZfSavcDSDQ/VfL+PeFZsCAPfkSpGTA0Pb1Dq5O9HgVgBo741LMBJVj5J72c ErpXjq9fxQe6IJLBeDwaqZjBQJpJjRWY9LMJdw7fR2llUm2VlIjbAUQdb81RkDlazY NziNrnEWw4B4JI8WdwpFcbmzemRktyU0OoUBaZ2t9tdcB4UfYExcp6C0PGC2B9eJUc GkCjzQhf3R3ycj92K3x3QLB31S2n9gxB20fQCoAU//74TVvR44ifpc1Mu9pNzkZpC9 a8Yv16h20vaHQ== To: "52239@debbugs.gnu.org" <52239@debbugs.gnu.org> From: Amirouche Subject: Re: (No Subject) Message-ID: <4L3Cm9x_oVt14Uvic5XDhdLiwlkRWPWtb63rA6csMSIv8xIG1rwGQJ44WSOeYWBlL6GmnwK_B84nd56S_hh4CgOlW-wcK34C89fz1fZzqHY=@hyper.dev> In-Reply-To: References: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Status: No, score=-1.2 required=10.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF shortcircuit=no autolearn=disabled version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on mailout.protonmail.ch X-Spam-Score: 2.0 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: fixed in https://debbugs.gnu.org/cgi/bugreport.cgi?bug=40252 Content analysis details: (2.0 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 2.0 SLIGHTLY_BAD_SUBJECT Subject contains something slightly spammy -0.0 SPF_PASS SPF: sender matches SPF record -0.0 RCVD_IN_MSPIKE_H4 RBL: Very Good reputation (+4) [185.70.43.23 listed in wl.mailspike.net] 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record -0.0 RCVD_IN_MSPIKE_WL Mailspike good senders X-Debbugs-Envelope-To: 52239 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Amirouche Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 1.0 (+) fixed in https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D40252 From debbugs-submit-bounces@debbugs.gnu.org Thu Nov 09 23:30:35 2023 Received: (at 52239) by debbugs.gnu.org; 10 Nov 2023 04:30:35 +0000 Received: from localhost ([127.0.0.1]:49291 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1r1JAA-0000fk-Mh for submit@debbugs.gnu.org; Thu, 09 Nov 2023 23:30:34 -0500 Received: from mail-qv1-xf2d.google.com ([2607:f8b0:4864:20::f2d]:60901) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1r1JA6-0000fT-LG for 52239@debbugs.gnu.org; Thu, 09 Nov 2023 23:30:33 -0500 Received: by mail-qv1-xf2d.google.com with SMTP id 6a1803df08f44-66d09b6d007so10811256d6.1 for <52239@debbugs.gnu.org>; Thu, 09 Nov 2023 20:29:51 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1699590585; x=1700195385; darn=debbugs.gnu.org; h=mime-version:user-agent:message-id:date:references:in-reply-to :subject:cc:to:from:from:to:cc:subject:date:message-id:reply-to; bh=iCTubieffNitqvxycM5yA2Ho9DFVnB+QHsbz4eKKA3Q=; b=N+f5sGtQgmPXA6wgm3vpe1L8V853g7Tjve6B5y1LNA9SQ2NRtBLjNByUlwWC6/xosF wEtBXf29QESUXsdwnMmEXPe7Qvnt2FEDz/xGoa8FQc7zekSmv2nsf0UCxD9IBAm3nhHj dUd1M2dbGN6JGNPBWTERZVIzdJUj801Y+bzu93dDKT7Af1WSRSCIUhOmwx8GPV45L/W+ hbpokJukKpJIOGU0+Lc/dccilChmX88VzfUwWMiRs+3/hkfU+DBsd4wzWM+QCnODWTbN eNwk7gn8elj8WMKiVdmlKm17+aTf5/b5uX+M7LVj427ZAA6ZTuvjabcFagRXL8LvpEXd hnZw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1699590585; x=1700195385; h=mime-version:user-agent:message-id:date:references:in-reply-to :subject:cc:to:from:x-gm-message-state:from:to:cc:subject:date :message-id:reply-to; bh=iCTubieffNitqvxycM5yA2Ho9DFVnB+QHsbz4eKKA3Q=; b=hz9RGkhT82c44nACBmllMSuKevaiqCfBYFGgGUW4xsi/FPvrA5gvhzslICoaMrTJuT Hhyd8UfZQ6O22fp/a4uqSFkfAgPSYGzXf5c5tyDAJNPATlq3tbheXJ/DGTh1LB9IzreW wT3664UF98mWkA6NBAOuRwuoAhbKpoIFwsD2jedrxfpgQYX0pK8mcR3lkXo7wB+CeAiD rSUH3UGUQFlu6TaboK+/LYmDld39iq7ogaUpPsO8Aqb4s1+LzAcKPn94IhPzGGvBMux6 aYem3Yvr2WD3EpfoyVxo/dKtdBXXZuU441XdIKCCuj0n4CCwWRZ5h42WQ0a0GT9bD8zo aUgw== X-Gm-Message-State: AOJu0YxHC8gQ5A/QD5LRl4Dw0y97XURj4RAVm2Q4OuV9ev9VqAx94TtS zzKFnJRxjm+AArf70tIQVScw8Ntxn5s= X-Google-Smtp-Source: AGHT+IHoR7X/4VJfUYXiPAm25b02fpmECBsbGrvHiVEQJO4k4EKpXzhMR6JT2prz5JUPb6z/hlsP0g== X-Received: by 2002:a05:6214:401a:b0:66d:1318:e786 with SMTP id kd26-20020a056214401a00b0066d1318e786mr7594655qvb.59.1699590585143; Thu, 09 Nov 2023 20:29:45 -0800 (PST) Received: from hurd (dsl-10-129-91.b2b2c.ca. [72.10.129.91]) by smtp.gmail.com with ESMTPSA id c10-20020a05621401ea00b0066d04196c3dsm2642406qvu.49.2023.11.09.20.29.44 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 09 Nov 2023 20:29:44 -0800 (PST) From: Maxim Cournoyer To: Amirouche Subject: Re: bug#52239: R7RS define-library does not support cond-expand In-Reply-To: <4L3Cm9x_oVt14Uvic5XDhdLiwlkRWPWtb63rA6csMSIv8xIG1rwGQJ44WSOeYWBlL6GmnwK_B84nd56S_hh4CgOlW-wcK34C89fz1fZzqHY=@hyper.dev> (amirouche@hyper.dev's message of "Fri, 03 Dec 2021 11:11:05 +0000") References: <4L3Cm9x_oVt14Uvic5XDhdLiwlkRWPWtb63rA6csMSIv8xIG1rwGQJ44WSOeYWBlL6GmnwK_B84nd56S_hh4CgOlW-wcK34C89fz1fZzqHY=@hyper.dev> Date: Thu, 09 Nov 2023 23:29:43 -0500 Message-ID: <871qcyfcy0.fsf_-_@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 52239 Cc: "52239@debbugs.gnu.org" <52239@debbugs.gnu.org> X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Hi, Amirouche writes: > fixed in https://debbugs.gnu.org/cgi/bugreport.cgi?bug=40252 Great! Closing, by replying to '52239-done@debbugs.gnu.org'. -- Thanks, Maxim From debbugs-submit-bounces@debbugs.gnu.org Mon Nov 27 22:47:31 2023 Received: (at control) by debbugs.gnu.org; 28 Nov 2023 03:47:31 +0000 Received: from localhost ([127.0.0.1]:45188 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1r7p4N-0002PP-AU for submit@debbugs.gnu.org; Mon, 27 Nov 2023 22:47:31 -0500 Received: from mail-yw1-x112f.google.com ([2607:f8b0:4864:20::112f]:55740) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1r7p4L-0002PD-RE for control@debbugs.gnu.org; Mon, 27 Nov 2023 22:47:30 -0500 Received: by mail-yw1-x112f.google.com with SMTP id 00721157ae682-5cece20f006so28906107b3.3 for ; Mon, 27 Nov 2023 19:47:23 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1701143237; x=1701748037; darn=debbugs.gnu.org; h=subject:from:to:message-id:date:from:to:cc:subject:date:message-id :reply-to; bh=7fP69DDsZZVKuR8PVwYRptfyoBIot0tWvcPqr7M39YY=; b=AV1BP07+MqExU2UdslKRLgJCvliO/mt+/fktPHSUXJ3lc6e8Kop2kbAgo3XIA5JjyE 1oLW0N0FUWq7oIXhKmW/d3CkZqdwuR3YI//tqvvRiXs8l3KTNAcw76y01101qJu5kFG9 /aiq9F8tXo88qI8I4WcVM92FaobkLxT/amZIL8OIcO9elDHbvmog7zHBfj/AcBL/ef4K 5sweQY6Yg1Zz2xWUux5YhfhhF07ssBoxqQD+3Obsi4EYAn3zvLg5laXockxjMqM1wbHZ 3d+kclKtY1TSiRj+pZSIJThrlfpn0gsuCz5AKP/HCs3nYXalt5QB8l55K0uEyXkroj2S DPFA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1701143237; x=1701748037; h=subject:from:to:message-id:date:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=7fP69DDsZZVKuR8PVwYRptfyoBIot0tWvcPqr7M39YY=; b=T7HObv+pmFAxpQkIOIOdkYF/Rvor7jAx+fRYdDDpqf+DFVF5O1pRM7cdQjgklORGj2 HTiVT1W3u3VI77s8W3Ii/xUTIXwbOq3+bI76Nl6jkBz0/Wmx6qbxmAYD/if+xxtduypi Smzpj8xrxsAa0Ye0Ik8mmmpC1yyWxz+8MWbC612E3z4oSE68OU0sU720EZxU98JTi8cT KmZ+jBQMmwaa6vAdDuJW/gtU43QriZb3p6OBgVWCcCj8fsyT4IpdGuY3q5orwfbNxSkf oTANaKTvmmfBjrU1UU7vdFhHN8ViWHG5NLt7x1tT7TBGgNXu/G9WtfqywEhsSop6jw2E q3VQ== X-Gm-Message-State: AOJu0YyXDV8lM1QahIwok6L6VAhH5tofwTcWNZx93H6/IbIRRUWHtYwJ iSuNA0/ir00dlwlMkIJU80nWssT6Lfk= X-Google-Smtp-Source: AGHT+IEgseApCSnTp/FRmF2pz+gNRjsGjPkf8u/dyApthEFvC43T26Y6JZxsvikjlOVIkSxQZGWKFQ== X-Received: by 2002:a0d:cf43:0:b0:5a8:204c:5c9b with SMTP id r64-20020a0dcf43000000b005a8204c5c9bmr13397137ywd.18.1701143236901; Mon, 27 Nov 2023 19:47:16 -0800 (PST) Received: from hurd (dsl-154-146.b2b2c.ca. [66.158.154.146]) by smtp.gmail.com with ESMTPSA id w16-20020a0562140b3000b0067a52a5998esm724454qvj.43.2023.11.27.19.47.16 for (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 27 Nov 2023 19:47:16 -0800 (PST) Date: Mon, 27 Nov 2023 22:47:15 -0500 Message-Id: <87il5m5ykc.fsf@gmail.com> To: control@debbugs.gnu.org From: Maxim Cournoyer Subject: control message for bug #52239 X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) close 52239 quit From unknown Sat Aug 16 10:50:06 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Tue, 26 Dec 2023 12:24:08 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator