From unknown Sat Jun 21 17:33:16 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#74073 <74073@debbugs.gnu.org> To: bug#74073 <74073@debbugs.gnu.org> Subject: Status: GOOPS - specialized make method upon user defined class 'does not work' Reply-To: bug#74073 <74073@debbugs.gnu.org> Date: Sun, 22 Jun 2025 00:33:16 +0000 retitle 74073 GOOPS - specialized make method upon user defined class 'does= not work' reassign 74073 guile submitter 74073 David Pirotte severity 74073 normal thanks From debbugs-submit-bounces@debbugs.gnu.org Mon Oct 28 19:27:19 2024 Received: (at submit) by debbugs.gnu.org; 28 Oct 2024 23:27:19 +0000 Received: from localhost ([127.0.0.1]:55125 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t5Z8p-0002oL-6P for submit@debbugs.gnu.org; Mon, 28 Oct 2024 19:27:19 -0400 Received: from lists.gnu.org ([209.51.188.17]:53810) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t5Z8n-0002oC-OX for submit@debbugs.gnu.org; Mon, 28 Oct 2024 19:27:18 -0400 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 1t5Z8m-00059t-Kq; Mon, 28 Oct 2024 19:27:16 -0400 Received: from smtp.all2all.org ([79.99.200.14] helo=moses.all2all.org) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1t5Z8k-0004EF-PR; Mon, 28 Oct 2024 19:27:16 -0400 Received: from localhost (localhost [127.0.0.1]) by moses.all2all.org (Postfix) with ESMTP id 2558867C007A; Tue, 29 Oct 2024 00:27:09 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at moses.all2all.org Received: from moses.all2all.org ([127.0.0.1]) by localhost (moses.all2all.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id aMXfz-ZLqnlY; Tue, 29 Oct 2024 00:27:08 +0100 (CET) Received: from tintin (unknown [168.227.184.182]) by moses.all2all.org (Postfix) with ESMTPSA id 8E56267C0074; Tue, 29 Oct 2024 00:27:07 +0100 (CET) Date: Mon, 28 Oct 2024 20:27:00 -0300 From: David Pirotte To: Subject: GOOPS - specialized make method upon user defined class 'does not work' Message-ID: <20241028202700.18fbbdb1@tintin> X-Mailer: Claws Mail 4.3.0 (GTK 3.24.43; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: multipart/signed; boundary="Sig_/9wlQMdeP+jlv5.pw1p7HeMd"; protocol="application/pgp-signature"; micalg=pgp-sha512 Received-SPF: pass client-ip=79.99.200.14; envelope-from=david@altosw.be; helo=moses.all2all.org X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_VALIDITY_RPBL_BLOCKED=0.001, RCVD_IN_VALIDITY_SAFE_BLOCKED=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.4 (-) X-Debbugs-Envelope-To: submit Cc: guile-devel 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: -2.4 (--) --Sig_/9wlQMdeP+jlv5.pw1p7HeMd Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Hello, GOOPS - specialized make method upon user defined class 'does not work': those methods are properly defined and added to the make (make-instance) generic function, but not eligible as applicable methods ... The bug is so easy to reproduce [1] and i did dig a bit into what i think the problem is, though i fail to 'relly fix it'. I would be grateful if those who know GOOPS internals would look at this bug and help me find a proper fix. Many thanks, David [1] a reproducible example, an attempt to explain the cause, but i failed to find a proper fix Consider the following short module ;; a (foo) module (define-module (foo) #:use-module (oop goops) #:duplicates (merge-generics replace warn-override-core warn last) #:export ()) (define-class ()) (define-method (make (c-lass ) . initargs) (let ((callback (get-keyword #:callback initargs #f)) (data (get-keyword #:data initargs #f))) (peek 'make-foo callback data))) ;; enf of (foo) If you drop this file into your-path, then guile (add-to-load-path your-path) ,use (foo) (make #:callback 'callback #:data 'data) =3D> #< 7f0ac4b2b310> so as you can see, it didn't called the specialized method, otherwise it would have peeked ";;; (make-foo callback data", and no instance would have been created, since we 'bypass' the default make-instance method (on purpose, g-golf requires such a 'bypass' in some context). the method is well defined, and part of the make generic-function, as expected: make =3D> #< make-instance (2)> (generic-function-methods make) =3D> (#< ( . ) 7f69f9fa0d80> #< ( . ) 7f69=E2=80=A6>) however, it is (unexpectedly) not part of the applicable methods for (list #:callback 'callback #:data 'data) arguments: (compute-applicable-methods make (list #:callback 'callback #:data 'data)) =3D> (#< ( . ) 7f69f9ea6440>) afaict, this is because compute-applicable-methods, in (oop goops) lines 2007 - 2040, calls (method-applicable? m types), with types bind to (map calls-of args), and within its core, loops over the types, checking if a method is applicable by calling (memq (car specs) (class-precedence-list (car types))) ;; with specs bound to the method specializers given the above defs, it fails upon the first make (method) argument, , because, manually run the above code ourselves, as expected, we get: ;; (car types) (class-of ) =3D> #< 7f69f9e2c380> ;; (memq (car specs) (class-precedence-list (car types))) (memq (class-precedence-list )) =3D> #f I am not sure what a proper fix would be, i naively tried this, in the core of %compute-applicable-methods: ;; instead of ... (let ((n (length args)) ;; by the way n is unused and could be removed (types (map class-of args))) ...) ;; this (let ((n (length args)) (types (map (lambda (arg) (if (is-a? arg ) arg (class-of arg))) args))) ...) but this fails, more precisely: (1) if i patch (oop goops), then make make install guile -q =3D> guile: uncaught exception: No applicable method for #< make-instance (1)> in call (make-instance Error while printing exception. Cannot exit gracefully when init is in progress; aborting. Aborted (core dumped) (2) i leave (oop goops) 'untouched' fire emacs geiser-guile ,use (oop goops) then edit (oop goops) with the above change, C-x e u=E1=B9=95on both %compute-applicable-methods and compute-applicable-meth= ods ,use (oop goops) (add-to-load-path (getcwd)) ,use (foo) (make #:callback 'callback #:data 'data) $5 =3D #< 7ff44ed06020> (compute-applicable-methods make (list #:callback 'callback #:data 'data)) $6 =3D (#< ( . ) 7ff4583a0d80>) it doesn't work because applicable methods are being memoized, i don't know how/where the cache invalidation occurs, _and also_ the compute-applicable-methods result is also 'wrong', because it should return both the specialized method, and the default method defined by oops, in that order - --Sig_/9wlQMdeP+jlv5.pw1p7HeMd Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEhCJlRZtBM3furJHe83T9k6MFetcFAmcgHcQACgkQ83T9k6MF etdYKggAzLad/33jLinraBbAIEJx15Pd7Q7taOdLSHD7MKsMqo47ZGHmFeSlrn1t wa7bSun+wVrFGhcDs2BOVOLIyUUvj/PdaOlzxldin2ozyzuBaXerDdRhC6xo/d44 oWWE3QCzlUqyGVDmrL6etS9Nw/S52OmeB/MfSJqGd69Bs39wWPJs+uijqg+u15NE ivKZKz7VQ7DfxNnm9cNGO25DGbezKinmP2GD+nthd/nqio2BQeXJVTY6vam2SKai +WKxTph3qevXNAW6hjhKRszWwgNKZcKfUq9OwTHR4Gk1LYf6AaMOagqwUSOmU1tZ rOSXv38ZdDNjLhMs1gcn6Wg8jYq3Ag== =dSG5 -----END PGP SIGNATURE----- --Sig_/9wlQMdeP+jlv5.pw1p7HeMd-- From debbugs-submit-bounces@debbugs.gnu.org Tue Oct 29 00:20:55 2024 Received: (at submit) by debbugs.gnu.org; 29 Oct 2024 04:20:55 +0000 Received: from localhost ([127.0.0.1]:55491 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t5dix-0007pm-5w for submit@debbugs.gnu.org; Tue, 29 Oct 2024 00:20:55 -0400 Received: from lists.gnu.org ([209.51.188.17]:58104) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t5div-0007pa-87 for submit@debbugs.gnu.org; Tue, 29 Oct 2024 00:20:53 -0400 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 1t5diu-0007N2-BJ; Tue, 29 Oct 2024 00:20:52 -0400 Received: from mail.all2all.org ([79.99.200.14] helo=moses.all2all.org) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1t5dis-0005Bd-Mr; Tue, 29 Oct 2024 00:20:52 -0400 Received: from localhost (localhost [127.0.0.1]) by moses.all2all.org (Postfix) with ESMTP id C9E4667C007A; Tue, 29 Oct 2024 05:20:45 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at moses.all2all.org Received: from moses.all2all.org ([127.0.0.1]) by localhost (moses.all2all.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Pe-0T5PwSNgh; Tue, 29 Oct 2024 05:20:45 +0100 (CET) Received: from tintin (unknown [168.227.184.182]) by moses.all2all.org (Postfix) with ESMTPSA id 6ADD967C0074; Tue, 29 Oct 2024 05:20:44 +0100 (CET) Date: Tue, 29 Oct 2024 01:20:32 -0300 From: David Pirotte To: Subject: Re: GOOPS - specialized make method upon user defined class 'does not work' Message-ID: <20241029012032.41d1f6d3@tintin> In-Reply-To: <20241028202700.18fbbdb1@tintin> References: <20241028202700.18fbbdb1@tintin> X-Mailer: Claws Mail 4.3.0 (GTK 3.24.43; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: multipart/signed; boundary="Sig_//nsyIm4XIpYv4p.BGoBdJA9"; protocol="application/pgp-signature"; micalg=pgp-sha512 Received-SPF: pass client-ip=79.99.200.14; envelope-from=david@altosw.be; helo=moses.all2all.org X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_VALIDITY_RPBL_BLOCKED=0.001, RCVD_IN_VALIDITY_SAFE_BLOCKED=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.4 (-) X-Debbugs-Envelope-To: submit Cc: guile-devel 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: -2.4 (--) --Sig_//nsyIm4XIpYv4p.BGoBdJA9 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable > GOOPS - specialized make method upon user defined class 'does > not work': those methods are properly defined and added to the > make (make-instance) generic function, but not eligible as > applicable methods ... Actually, as the protocol states (but i somehow forgot and missed it at re-reading ...), specialized make method first arg is (must be) a metaclass. I'll close the bug as soon as I receive its bug number. Sorry for the noise, David --Sig_//nsyIm4XIpYv4p.BGoBdJA9 Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEhCJlRZtBM3furJHe83T9k6MFetcFAmcgYpAACgkQ83T9k6MF etdC7Af9Hjt2EZWDMJIWRWm/zV5aAUVIuhZVcg3d7xVhBerxHw1TjO0OHrSkk3of PO4sPxc/pFt6QtlhsLn+GIsrDf/44OnKdy46mX89qwaIjoTjMZh7XGRFQXtSk5xh arQgNTPx9zXHy0XDdYH9/aziXJVC8FxVjp0O3Bf9goUQBrBjbo88zNdzmap9Kj9F dxI9KzKlD650E9spBG7l82gdGEHBhbkZUryKCdmbXtiDE8fHFByGEF7dNQcFgrlS Gut+53+5TmYq369rv2F+D1+dCIcPr87sQlJGnThp62EcSbCoG8DXF0RY6T+ukqj3 Om+fqRX7jH3hxFylKDcnt80zZjvrEg== =NG3w -----END PGP SIGNATURE----- --Sig_//nsyIm4XIpYv4p.BGoBdJA9-- From debbugs-submit-bounces@debbugs.gnu.org Tue Oct 29 16:23:09 2024 Received: (at 74073) by debbugs.gnu.org; 29 Oct 2024 20:23:09 +0000 Received: from localhost ([127.0.0.1]:58582 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t5sk9-0000tK-FR for submit@debbugs.gnu.org; Tue, 29 Oct 2024 16:23:09 -0400 Received: from pop.all2all.org ([79.99.200.14]:54812 helo=moses.all2all.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t5sk7-0000tC-0D for 74073@debbugs.gnu.org; Tue, 29 Oct 2024 16:23:08 -0400 Received: from localhost (localhost [127.0.0.1]) by moses.all2all.org (Postfix) with ESMTP id 463F167C007A; Tue, 29 Oct 2024 21:23:04 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at moses.all2all.org Received: from moses.all2all.org ([127.0.0.1]) by localhost (moses.all2all.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id rGu4vNl2txDP; Tue, 29 Oct 2024 21:23:04 +0100 (CET) Received: from tintin (unknown [168.227.184.182]) by moses.all2all.org (Postfix) with ESMTPSA id D4ADA67C0074; Tue, 29 Oct 2024 21:23:02 +0100 (CET) Date: Tue, 29 Oct 2024 17:22:55 -0300 From: David Pirotte To: 74073@debbugs.gnu.org Subject: bug#74073: close - not a bug Message-ID: <20241029172255.1bc484cd@tintin> In-Reply-To: <20241029012032.41d1f6d3@tintin> References: <20241028202700.18fbbdb1@tintin> <20241029012032.41d1f6d3@tintin> X-Mailer: Claws Mail 4.3.0 (GTK 3.24.43; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: multipart/signed; boundary="Sig_/Ok7CFfMgwFJQJzZQIMOxANd"; protocol="application/pgp-signature"; micalg=pgp-sha512 X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 74073 Cc: guile-devel 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.7 (-) --Sig_/Ok7CFfMgwFJQJzZQIMOxANd Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable > > GOOPS - specialized make method upon user defined class > > 'does not work': those methods are properly defined and added to the > > make (make-instance) generic function, but not eligible as > > applicable methods ... =20 > Actually, as the protocol states (but i somehow forgot and missed it > at re-reading ...), specialized make method first arg is (must be) a > metaclass. close - not a bug --Sig_/Ok7CFfMgwFJQJzZQIMOxANd Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEhCJlRZtBM3furJHe83T9k6MFetcFAmchRB8ACgkQ83T9k6MF eteE4QgAjFEe8gKQNuTzNT7/M1Vj0Uqm2q+GGEjVOV8TPhNKN08XAcZELohSkofv PU3VwukN6sWlWMUOpNGfDY89YZ57+Ti9ZcFv10aJc5aDgVzu+W/HijaelNw1kBNj GH8RoMrUECTzgzYutDgUH9ZpGQRtr/HIJHNhd5Wha1Z9EmBCaGV+GPjrCnAZRrCl d1ONKMbHhKm0B03AiUh7Sf1Y5K2Iry/8ianoDtxtbjxZh5xX5haY+pu184yMOsSM G6zIDA9Ms4s59EqNcGRWnAJtF/LmcDF+hjfN2K/Xzeuvz8kPK0Ig9AneWqTGbaZY hoDU3sv5uSXkmtd6SOoMdZqGuwtzng== =L8/E -----END PGP SIGNATURE----- --Sig_/Ok7CFfMgwFJQJzZQIMOxANd-- From debbugs-submit-bounces@debbugs.gnu.org Tue Oct 29 16:31:58 2024 Received: (at control) by debbugs.gnu.org; 29 Oct 2024 20:31:58 +0000 Received: from localhost ([127.0.0.1]:58634 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t5ssf-0001Du-U9 for submit@debbugs.gnu.org; Tue, 29 Oct 2024 16:31:58 -0400 Received: from wolfsden.cz ([37.205.8.62]:52834) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <~@wolfsden.cz>) id 1t5ssd-0001Do-It for control@debbugs.gnu.org; Tue, 29 Oct 2024 16:31:56 -0400 Received: by wolfsden.cz (Postfix, from userid 104) id 1CD10343594; Tue, 29 Oct 2024 20:31:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=wolfsden.cz; s=mail; t=1730233914; bh=G9HPG0Ym+hlveIZM7SJWMXF4s+uFRbUazxlLC7Rn3LI=; h=Date:To:From:Subject; b=VczZ3SgtVE/tig3n/tpSF7zfweG8ujmpn1DcErXDfNR6VC55CkIl43NkmWcu1psFR dtaqNgTQMdObeMs+xy+r5hSu+dLyFOt4TsAdByl2oOuuIJjwEqKQ3UOlnPvkWtL6T1 frHi+tD56zh7IRbYBenYbglgFn8eGGCXuNsEp7QaTW6AhiVP3dlpQNeRttLmYFrv4f J8TC/DtY7mZxZSV785sP8X9rTV6clMPir2jPtKsFGiUeMLFtQbbXkfX8DG3aFEkNnk G2r9sew3fMUze27yYHcrPGjI2U0PY1lv21YB7hTd/leTGFytkppoN5wx5Miup+WyMf I4XfxbeCeNK+HH33eIqz/CT1ez/V537vgGF4ZWb7ISQ7IJVWhnZcf3OI1aifWY4Q/g 38N3J+OIypgh614oEqKip6U9NC5/6RamahQsgx0U+MMKhyS3dPM8LfY8I30GvHxNEd cu9pgD+l4bCSylH+QJPUx+KTx4sTQwAsJv5zUJ9Q0/zIZnyeZOSCxDW0aKGX9sFZoL qGmyp/BQm3c55/CMChIbHTaYu6PhlLehHc481hHrCoj+/d1DryxQBmfrEBt3Zi2TQ/ X/F3K6C7XmR57K8jxFx5CgGRbO6wii+wxhv7FnbioziOnX6ZKtBvPDFccofrFgrIVu YdhkaesEYJriU/lGDWKOmR9w= X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on wolfsden X-Spam-Level: X-Spam-Status: No, score=-3.1 required=5.0 tests=ALL_TRUSTED,BAYES_00, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.6 Received: from localhost (unknown [128.0.188.242]) by wolfsden.cz (Postfix) with ESMTPSA id 3C6E8342063 for ; Tue, 29 Oct 2024 20:31:53 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=wolfsden.cz; s=mail; t=1730233913; bh=G9HPG0Ym+hlveIZM7SJWMXF4s+uFRbUazxlLC7Rn3LI=; h=Date:To:From:Subject; b=HieimFWnoT7Im+WC/gVdn3PaiTVRdLDu+AfIJ5oTMEF81FcqgAngMyriyubJX/fAv yz4S/yFedYwqkHciRZ23FkjKowy0G6z1u4KscwtWqOyDFEMoU680OmFSpAo6to8wid RgI4NCA8VcfWJ3+GHsx/TpvHK68DyiQcL9wRatYqka9hjftKYN/ke9UDA0Hj0U5m+t 3DvOPn5D5MsdzWobSyRlR3DtjHVU+h2ERGZVE6ixERJB4NBL8ZnmZrqZkVInoDGi5K RZLJfQ9O2w88W78hn/W1d/Vh3ydBGl0/IoqtI5SIAl0ZFv8LM4oODOfsiTU2wdR+bx 5qi3sQt4rApLfuWcceEQGNM/0nQKns9zwHqWIHpAdxcZ/OQkuQ9tnj1MvmdeYs7idi fBt+K7godAwr2lYZ28eZt7mnEaQGWnmOeevtQPE0vIdc6odp4AEyobwnqRgN9hjSIE ZaVVYSJsLM5VW/xg0Nee4YXKbixO8yeMPJFQSKc3TgHJt9XdOZLpwvXy4WE/YZLF4q u1Ggs9sBYaS6AbhfyXtbcP8+IGKNBqs3ObG8Nnnre1y7jxrUvbq2z0MW8noBYAKX67 ZyVyF2fgWf5yKcmSyJnZCphyV981bfsarc8cKmLzGQ7oMWWhohUonZg31I2qFl16aH 82McfQvuD3LycZn+0yuvaLIs= Date: Tue, 29 Oct 2024 21:31:52 +0100 Message-ID: <94fe03c541dbc9cb1cf076f6f25616cf@wolfsden.cz> To: control@debbugs.gnu.org From: Tomas Volf <~@wolfsden.cz> Subject: control message for bug #74073 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 74073 quit From unknown Sat Jun 21 17:33:16 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Wed, 27 Nov 2024 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