From unknown Fri Jun 20 07:19:57 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#14764 <14764@debbugs.gnu.org> To: bug#14764 <14764@debbugs.gnu.org> Subject: Status: 24.3.50; width control for pretty printing Reply-To: bug#14764 <14764@debbugs.gnu.org> Date: Fri, 20 Jun 2025 14:19:57 +0000 retitle 14764 24.3.50; width control for pretty printing reassign 14764 emacs submitter 14764 Drew Adams severity 14764 wishlist thanks From debbugs-submit-bounces@debbugs.gnu.org Mon Jul 01 18:01:17 2013 Received: (at submit) by debbugs.gnu.org; 1 Jul 2013 22:01:17 +0000 Received: from localhost ([127.0.0.1]:51142 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1Utm9t-0005C1-22 for submit@debbugs.gnu.org; Mon, 01 Jul 2013 18:01:17 -0400 Received: from eggs.gnu.org ([208.118.235.92]:42754) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1Utm9r-0005Bm-Dv for submit@debbugs.gnu.org; Mon, 01 Jul 2013 18:01:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Utm9l-00071g-7Y for submit@debbugs.gnu.org; Mon, 01 Jul 2013 18:01:10 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-99.2 required=5.0 tests=BAYES_50,USER_IN_WHITELIST autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:58527) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Utm9l-00071c-4T for submit@debbugs.gnu.org; Mon, 01 Jul 2013 18:01:09 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:44469) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Utm9k-00011P-1M for bug-gnu-emacs@gnu.org; Mon, 01 Jul 2013 18:01:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Utm9i-0006zq-Pv for bug-gnu-emacs@gnu.org; Mon, 01 Jul 2013 18:01:07 -0400 Received: from userp1040.oracle.com ([156.151.31.81]:38271) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Utm9i-0006xl-J2 for bug-gnu-emacs@gnu.org; Mon, 01 Jul 2013 18:01:06 -0400 Received: from ucsinet21.oracle.com (ucsinet21.oracle.com [156.151.31.93]) by userp1040.oracle.com (Sentrion-MTA-4.3.1/Sentrion-MTA-4.3.1) with ESMTP id r61LsjsL017905 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 1 Jul 2013 21:54:45 GMT Received: from aserz7022.oracle.com (aserz7022.oracle.com [141.146.126.231]) by ucsinet21.oracle.com (8.14.4+Sun/8.14.4) with ESMTP id r61M13Zc004417 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Mon, 1 Jul 2013 22:01:04 GMT Received: from abhmt101.oracle.com (abhmt101.oracle.com [141.146.116.53]) by aserz7022.oracle.com (8.14.4+Sun/8.14.4) with ESMTP id r61M13Kt025428 for ; Mon, 1 Jul 2013 22:01:03 GMT MIME-Version: 1.0 Message-ID: <07a367bb-81ff-431d-938a-eecf2d5b3de6@default> Date: Mon, 1 Jul 2013 15:01:03 -0700 (PDT) From: Drew Adams To: bug-gnu-emacs@gnu.org Subject: 24.3.50; width control for pretty printing X-Priority: 3 X-Mailer: Oracle Beehive Extensions for Outlook 2.0.1.7 (607090) [OL 12.0.6668.5000 (x86)] Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable X-Source-IP: ucsinet21.oracle.com [156.151.31.93] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4.x-2.6.x [generic] X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -4.0 (----) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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: -4.0 (----) Enhancement Emacs Lisp pretty printing to offer the equivalent of Common Lisp's width-controlling features. This would be useful for fixing bug #14754, for instance. >From Common Lisp the Language, 2nd Edition, section 27.2, Pretty Printing Control Variables: [Variable] *print-right-margin* A primary goal of pretty printing is to keep the output between a pair of margins. The left margin is set at the column where the output begins. If this cannot be determined, the left margin is set to zero. When *print-right-margin* is not nil, it specifies the right margin to use when making layout decisions. When *print-right-margin* is nil (the initial value), the right margin is set at the maximum line length that can be displayed by the output stream without wraparound or truncation. If this cannot be determined, the right margin is set to an implementation-dependent value. To allow for the possibility of variable-width fonts, *print-right-margin* is in units of ems-the width of an ``m'' in the font being used to display characters on the relevant output stream at the moment when the variables are consulted. [Variable] *print-miser-width* If *print-miser-width* is not nil, the pretty printer switches to a compact style of output (called miser style) whenever the width available for printing a substructure is less than or equal to *print-miser-width* ems. The initial value of *print-miser-width* is implementation-dependent. Note: "A PRIMARY GOAL OF PRETTY PRINTING is to keep the output between a pair of margins." That's the point of this enhancement request. Once pretty printing has this control, please incorporate it into common commands, such as `C-M-q', via a prefix arg for example. In GNU Emacs 24.3.50.1 (i686-pc-mingw32) of 2013-06-27 on ODIEONE Bzr revision: 113205 dgutov@yandex.ru-20130627095155-f1lv1c7xf99g1sss Windowing system distributor `Microsoft Corp.', version 6.1.7601 Configured using: `configure --prefix=3D/c/Devel/emacs/binary --enable-checking=3Dyes,glyphs CFLAGS=3D-O0 -g3 LDFLAGS=3D-Lc:/Devel/emacs/lib CPPFLAGS=3D-Ic:/Devel/emacs/include' From debbugs-submit-bounces@debbugs.gnu.org Thu Apr 28 20:01:39 2016 Received: (at control) by debbugs.gnu.org; 29 Apr 2016 00:01:39 +0000 Received: from localhost ([127.0.0.1]:53757 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1avvsJ-0006qX-7f for submit@debbugs.gnu.org; Thu, 28 Apr 2016 20:01:39 -0400 Received: from hermes.netfonds.no ([80.91.224.195]:39420) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1avvsH-0006oQ-CH for control@debbugs.gnu.org; Thu, 28 Apr 2016 20:01:37 -0400 Received: from cm-84.215.1.64.getinternet.no ([84.215.1.64] helo=mouse) by hermes.netfonds.no with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.84_2) (envelope-from ) id 1avvsF-000220-AW for control@debbugs.gnu.org; Fri, 29 Apr 2016 02:01:36 +0200 Date: Fri, 29 Apr 2016 02:01:35 +0200 Message-Id: <87y47xz3j4.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #14764 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: 0.0 (/) forcemerge 14764 11934 From debbugs-submit-bounces@debbugs.gnu.org Fri Nov 05 10:27:36 2021 Received: (at control) by debbugs.gnu.org; 5 Nov 2021 14:27:36 +0000 Received: from localhost ([127.0.0.1]:46762 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mj0Bs-0007yn-3d for submit@debbugs.gnu.org; Fri, 05 Nov 2021 10:27:36 -0400 Received: from quimby.gnus.org ([95.216.78.240]:40030) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mj0Bq-0007yN-3f for control@debbugs.gnu.org; Fri, 05 Nov 2021 10:27:34 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Subject:From:To:Message-Id:Date:Sender:Reply-To:Cc: MIME-Version:Content-Type:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=7XBeoyR7v5TfbncFMHhaQO0k+8q4doFUc0sgSjC96zI=; b=fdUrlXUDmr+sjMjRcdfczAn3YD k1W1JOydY0SiT/OPzKVdoIo5J2H2D9s2nvIJIlZ1mzNXNNjO8AVffeJ4hX61W2nK2XWMQDD4+8neJ Dl3mxxfEUiQORWMySI9P3I8Ck5162XzhXDQ2ZsCkQaA/WAHuAsU4/vSLgKuvg5mkqexg=; Received: from [84.212.220.105] (helo=elva) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1mj0Bh-0005VO-R0 for control@debbugs.gnu.org; Fri, 05 Nov 2021 15:27:28 +0100 Date: Fri, 05 Nov 2021 15:27:25 +0100 Message-Id: <87h7cqk78y.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #11934 X-Spam-Report: Spam detection software, running on the system "quimby.gnus.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 @@CONTACT_ADDRESS@@ for details. Content preview: close 11934 29.1 quit Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: -2.3 (--) 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: -3.3 (---) close 11934 29.1 quit From unknown Fri Jun 20 07:19:57 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sat, 04 Dec 2021 12:24:07 +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 From debbugs-submit-bounces@debbugs.gnu.org Thu Jun 09 12:27:11 2022 Received: (at control) by debbugs.gnu.org; 9 Jun 2022 16:27:11 +0000 Received: from localhost ([127.0.0.1]:47520 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nzL03-0002fa-5p for submit@debbugs.gnu.org; Thu, 09 Jun 2022 12:27:11 -0400 Received: from mx0a-00069f02.pphosted.com ([205.220.165.32]:59774) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nzL00-0002fR-Ba for control@debbugs.gnu.org; Thu, 09 Jun 2022 12:27:10 -0400 Received: from pps.filterd (m0246617.ppops.net [127.0.0.1]) by mx0b-00069f02.pphosted.com (8.17.1.5/8.17.1.5) with ESMTP id 259FTEgq028426 for ; Thu, 9 Jun 2022 16:27:07 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=oracle.com; h=from : to : subject : date : message-id : content-type : content-transfer-encoding : mime-version; s=corp-2021-07-09; bh=a4ZHaTi8kaHxnxsBnf87aWyIvV0DelaphrsqiiGOXp4=; b=NQkHGyaJeo4Q3cNRRKz/bK6UIa6adILj4TVPMnVIhfPtmg+E0Hz8LUDTvFwwNHtvSeWW +nGnrN2K2k+pVFcLV7Rg7RIONBG7buANRgsKZxXGm4xSFITSS+RhadwrGAblGpsllHmX m/Unc9YofwD9SavJ8WZmaVHQV3zK31PZsEH18j4MQ3aXJKYf0R1eLUnln5WMaonjvqhR pzOzuIpU+sLRl21540WvpDiZbbZ6/WjIOdyZMoekogZfQJknIug/lcWbwihpOL1aBkSk CyJwK9C2PaX3BgngNoaYyEehNIJ5pi+Q8tf8KC25/EuS7Dw4a/Muhhp3LEIi8fdM6REG 6g== Received: from phxpaimrmta02.imrmtpd1.prodappphxaev1.oraclevcn.com (phxpaimrmta02.appoci.oracle.com [147.154.114.232]) by mx0b-00069f02.pphosted.com (PPS) with ESMTPS id 3gfyxskw6y-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK) for ; Thu, 09 Jun 2022 16:27:07 +0000 Received: from pps.filterd (phxpaimrmta02.imrmtpd1.prodappphxaev1.oraclevcn.com [127.0.0.1]) by phxpaimrmta02.imrmtpd1.prodappphxaev1.oraclevcn.com (8.16.1.2/8.16.1.2) with SMTP id 259GQdOt017858 for ; Thu, 9 Jun 2022 16:27:06 GMT Received: from nam04-mw2-obe.outbound.protection.outlook.com (mail-mw2nam04lp2169.outbound.protection.outlook.com [104.47.73.169]) by phxpaimrmta02.imrmtpd1.prodappphxaev1.oraclevcn.com with ESMTP id 3gfwu4ugv9-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK) for ; Thu, 09 Jun 2022 16:27:06 +0000 ARC-Seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=n90WoDeRRlDT16PgGAjzF6cRJhsOCm6yM5lll4bhJyFVebmJ+kST0kPV4vzNxJKuAnHctI71Azi1GE52NARIJ83+qdVbGJBMN+/sMhgOPMXCCBrqfGZmam/WhW+txILcbsXK9UCHmyT0A+/go0lQ1stwR1ZKWdDFJENZBZ0cI0eG/dygbiBk3sroMxs0u7arCYArOQH0ubV/k3x89B3owl8hF+9ZQXK9qgiwJURXbSaZk7BEw//ajGpaTfJ12dN21dF36j4tl8XkIgvw/mRXGW0iK7V+JKSLq8wKddCHKWAwD2GPoO/JTy2w3f+Q2fOSL8w8L58fikQ2o23vS5mpJw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-AntiSpam-MessageData-ChunkCount:X-MS-Exchange-AntiSpam-MessageData-0:X-MS-Exchange-AntiSpam-MessageData-1; bh=a4ZHaTi8kaHxnxsBnf87aWyIvV0DelaphrsqiiGOXp4=; b=l3rGMtAMHdr6FpjaTW8oW7uoB+QqLKDTxX+U1QhJC1Z3QGE2XOb+KMRUrVjdzaT/wGHnMQlOk4oJpQUp50+1Gpz2SvOjwdGH1Ww7Mx8VRpGGlgrwrSmSwTcpPu8crP7jKvwujJXkro5u8InvffTif5dWJtqjJb4AJWD6liw39JFD9Ui40kDMO/Slpc/4ltL/9F5sCaSYkHQI+1OmsWLEZwtKLW+lBaOtSj6FX5DpxUttxgRr/8jh26JzE65yYnTYMkdsIstSZLv8xdVTrn/a7Qp1TeLaIyN/Xmub968EIXx5DQWobcEO7+be5JBjLB2L+Tkceks9ALECme9rwvs1JQ== ARC-Authentication-Results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=oracle.com; dmarc=pass action=none header.from=oracle.com; dkim=pass header.d=oracle.com; arc=none DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=oracle.onmicrosoft.com; s=selector2-oracle-onmicrosoft-com; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-SenderADCheck; bh=a4ZHaTi8kaHxnxsBnf87aWyIvV0DelaphrsqiiGOXp4=; b=DXU1VV07rDcEcmKJer/o6861HQ+BgaU3zgAYW6N2QZxP+UyP77jtjUhDFLUeckQ4uQ/gf4K8O/yZZ6AcqIA0Fjtfw06y3mtIDBmpNf0oQ89sG20lHbXQYs3/38r2XxlFw1qEDF+nyLYHOWXawkc2RFikrVpLvwRwMaX6doUYOjE= Received: from SJ0PR10MB5488.namprd10.prod.outlook.com (2603:10b6:a03:37e::19) by BN6PR10MB1572.namprd10.prod.outlook.com (2603:10b6:404:3d::18) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.20.5332.12; Thu, 9 Jun 2022 16:27:04 +0000 Received: from SJ0PR10MB5488.namprd10.prod.outlook.com ([fe80::818c:10bf:c1b5:e224]) by SJ0PR10MB5488.namprd10.prod.outlook.com ([fe80::818c:10bf:c1b5:e224%4]) with mapi id 15.20.5332.013; Thu, 9 Jun 2022 16:27:04 +0000 From: Drew Adams To: "control@debbugs.gnu.org" Subject: unarchive 14754 Thread-Topic: unarchive 14754 Thread-Index: Adh8Hb0dvmTkOibCQPOnmRD4OeZ9EQ== Date: Thu, 9 Jun 2022 16:27:03 +0000 Message-ID: Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-ms-publictraffictype: Email x-ms-office365-filtering-correlation-id: d04ac7d1-a5c8-41a8-d290-08da4a34e379 x-ms-traffictypediagnostic: BN6PR10MB1572:EE_ x-microsoft-antispam-prvs: x-ms-exchange-senderadcheck: 1 x-ms-exchange-antispam-relay: 0 x-microsoft-antispam: BCL:0; x-microsoft-antispam-message-info: W2cF3V5j5CJ4tQGol82R7XdWnQGSE3V6kppGbJAc/RKVBXQTnsg82183z5xfvRrht1JZy6CoWAtL8KdRqsO2VkpsVbcZBBuO+mfbLilVBT0yLfUykl8rIYGhYv6uzWdxu/REdzFHQ2SKPqkCcEJN0Pi+8jamEC2626ocKkll/RHcl5m0ty0yNFEfNjPiTtvI818TFRDJTFkdojW8FbSiU/0flrv80V1NmLQ5NHqm7wZPSMDQVwO5JYfqhbf5dn7/Wwh+cfGqDvLMy49VhoeMLfQPeTHQ7XGf4xxCoAiZQ8Lh91tt3hdcF9DiS71PlSu4pTLiJEJFbeKTHARfWU2MUAm8LlHZwSzx05fuZ2Q77+jEnpARBpo4y8WwTHtlj069+kM4susdAhOp97JWlsJpa1j4F4I8sdGu5G2vDOLSA9n1N5LKoc9tO+S88KbvYB2f+k/mZfV+TwhJjdaQjoteKVZFfWPmtlu308bZ19I9piqXShRvLvASkylzfcsSeSOp8PeblPOJgAL6ckEqWisjZiqF5DZtzrlV3O8BwKzMARKumemsJPtYVK/W0s1MEP7t0c59ufrJe9V/iplzCWnWnCGpk9Xr6uHEHKLi/jIUhi8SVuQAXtK6u0iMH5mAK0rcwYI6pU4kQQA61wtN0rxWAGEeyfA5xrVyLL//uJPW7YF5Q/1yTsXO8E8xBuqTw9C2FItiyd+a/HqSgfsRYGh0XQ== x-forefront-antispam-report: CIP:255.255.255.255; CTRY:; LANG:en; SCL:1; SRV:; IPV:NLI; SFV:NSPM; H:SJ0PR10MB5488.namprd10.prod.outlook.com; PTR:; CAT:NONE; SFS:(13230001)(366004)(52536014)(8936002)(508600001)(5660300002)(38100700002)(55016003)(122000001)(558084003)(6506007)(7116003)(9686003)(186003)(71200400001)(2906002)(26005)(86362001)(33656002)(7696005)(38070700005)(44832011)(6916009)(66476007)(8676002)(64756008)(66446008)(66946007)(66556008)(76116006)(316002); DIR:OUT; SFP:1101; x-ms-exchange-antispam-messagedata-chunkcount: 1 x-ms-exchange-antispam-messagedata-0: =?us-ascii?Q?ECFXvcIVUGgnIVQSVj4xLsf2/KqblRI3khH4D8VXUvIDZ5RX+MQcHy0iNSgZ?= =?us-ascii?Q?T5IYG9sW66hftDtpH6M73MR/MXtLunFGL9gc60VGcTs8qzLlY6nSb1vkhdyp?= =?us-ascii?Q?ZRT2M4vzb0RUKDGNLSLnkME6xs81n0m/UHE4ZLLKoGbg9cV6Z7H7ycFAXSaF?= =?us-ascii?Q?uYx81hzuAtGU0SVhhrrjYUmeJPk8MeE/fIzmYSNUea2cPWZPuYrAentYz3zX?= =?us-ascii?Q?Hg59I00BAedJqb1spunhsLRyUCj9FWmrXFJ/23Kj1i4kpowmKG1rEEKNMfuj?= =?us-ascii?Q?eyfBtpi0kluT4uH7avha5X6j0v5j9/O8ZlkbXZVJqJmga0p62C+p+Nk+kwuK?= =?us-ascii?Q?cvzUqb6WIdXhUKu9M8LFW/a5k880iXYBhJxEECgBteDCvI7FkxCXwnT2OeOj?= =?us-ascii?Q?4YGmIct3QIMOkmfh3gKwI0bITC+ANIeY2QCzcDOD2vFQkMwUfxwj25usBAfk?= =?us-ascii?Q?EGYR3+teOo3REvrgQRgbzbC3xuc5cEX4fYRiV5nlBtvRmQjL2BGNg353Fj+J?= =?us-ascii?Q?bnTFcU5HRfa52Z+HuGqryC5lx+Ftmc6H7GmmyWZW7GySWUL3LrtTgeY1weiz?= =?us-ascii?Q?ijNOkjmYuuUwBiacaeFU1dNU5aUaXF65VhyK/bhHgV+bHNwCgPDQ6OZxiooF?= =?us-ascii?Q?pgw0bMiv7w5Kx5fqf7hCQNZnmeoY7IQQ8OyBkGS+keuYt+qr7fTdixRjgdNv?= =?us-ascii?Q?hV1YZSM61c+ZsvfGrPxzUsZqf8tqalxv6JYJ8rJyjwEiNDKBhzN3E8lr6CYI?= =?us-ascii?Q?ATWnkVeA8nk7plpbH1aeeZay9xTWeBk0uzbjUdIinOOv9q2C4sAOO/nqUrdo?= =?us-ascii?Q?SePzF43wtPpNDizARGzlAqlExtCeihp00QuYN0E4EZFHXB90aSs4OfHjUg+r?= =?us-ascii?Q?JLfivzZ696WjpSF3AuhFhr+kEChfBwlckujH+rde5PTN99WEvGgNdtOC2bN7?= =?us-ascii?Q?YXzIX872jyMNvsiwlXjRruDNOjoIfgA4qeyNwdIWViyi2QP75h1DrYHf4Cis?= =?us-ascii?Q?iWw8A9fPihQ0gZNdZTm08rn2+9fdSdMh2GF7u/wO+czqB5/kCAodvWXMkSze?= =?us-ascii?Q?fcf8M7dow3yd9YueaM+m5ehTnErlIfS2BNJme8Z7jDcoM6clgA4o+Urd5IXP?= =?us-ascii?Q?ScdEloX32SDdyRx0PR1jEKE35CGXEyVUzY7TLr4hsGUHW3LGJb9DNsNRXCXz?= =?us-ascii?Q?4kAg7U+f9/xnNdtyC1ONl46QZrSFh39PacLpAyoVjA7uocXN/Ub7FhDJbpb3?= =?us-ascii?Q?cI/Y3OYRDgXn4OsnoORPaYC1nZeRWP6Q4uazkI2evM9W3WXa8oDGYHq3UwCT?= =?us-ascii?Q?iBkzxGbZjhWHHw4+uwrNQGKVqQ1n0Cj2aSN20tXDdainj21q7/gr3O72mbLD?= =?us-ascii?Q?CyeaSmfsx7eornu5h20kcE+DfXk6dpaewlhhy3XwldPw8ihtL/HLYDQN/Vfw?= =?us-ascii?Q?b/zWmCdPvfcC+UZDQv8be3+joQfry8tbvseJjj+2AvNyUlwFiUHQOTmBd+Os?= =?us-ascii?Q?Nt3FpIfbixv9l0PFHX0mDGZV+Prk+lkJbqrJwbP2ENQOhZSH3ArjzNX7yYlE?= =?us-ascii?Q?tVmeU/PX34nOHBaCrpyV6dJV14v/SE4viPiGcgKESi7PM3wHEYSNpI8HEcl5?= =?us-ascii?Q?iHSPKAM5urM8xDP1+pOEkDlYwZYmxNtF3x5zMyEj4xk0rjY3xqEdTE4qvWvm?= =?us-ascii?Q?JHoFNiQ4UV3qplU2S1R5XCVAKCxOthZt7t2imnb44GLpZRyTMj06Cegy2t7H?= =?us-ascii?Q?PDOki/3xZg=3D=3D?= Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-OriginatorOrg: oracle.com X-MS-Exchange-CrossTenant-AuthAs: Internal X-MS-Exchange-CrossTenant-AuthSource: SJ0PR10MB5488.namprd10.prod.outlook.com X-MS-Exchange-CrossTenant-Network-Message-Id: d04ac7d1-a5c8-41a8-d290-08da4a34e379 X-MS-Exchange-CrossTenant-originalarrivaltime: 09 Jun 2022 16:27:04.1357 (UTC) X-MS-Exchange-CrossTenant-fromentityheader: Hosted X-MS-Exchange-CrossTenant-id: 4e2c6054-71cb-48f1-bd6c-3a9705aca71b X-MS-Exchange-CrossTenant-mailboxtype: HOSTED X-MS-Exchange-CrossTenant-userprincipalname: d246zOLDQA1r5OeKWk++b7TMq3/nn3ANnL71nErYRAxycz3PuGHlHyFldoS05msN7DjqMBgbI2CP4ZpOZhzrdw== X-MS-Exchange-Transport-CrossTenantHeadersStamped: BN6PR10MB1572 X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.517, 18.0.874 definitions=2022-06-09_12:2022-06-09, 2022-06-09 signatures=0 X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 mlxlogscore=523 spamscore=0 adultscore=0 suspectscore=0 malwarescore=0 phishscore=0 bulkscore=0 mlxscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.12.0-2204290000 definitions=main-2206090063 X-Proofpoint-ORIG-GUID: JVc6Cmz3fxpzsmfT5pR2M_10dkkSvBfv X-Proofpoint-GUID: JVc6Cmz3fxpzsmfT5pR2M_10dkkSvBfv X-Spam-Score: -0.7 (/) 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.7 (-) unarchive 14754 thanks From unknown Fri Jun 20 07:19:57 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Fri, 08 Jul 2022 11:24:05 +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