From unknown Tue Jun 17 20:16:38 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#60741 <60741@debbugs.gnu.org> To: bug#60741 <60741@debbugs.gnu.org> Subject: Status: 29.0.60; 'M-c' shadowed in the minibuffer Reply-To: bug#60741 <60741@debbugs.gnu.org> Date: Wed, 18 Jun 2025 03:16:38 +0000 retitle 60741 29.0.60; 'M-c' shadowed in the minibuffer reassign 60741 emacs submitter 60741 Juri Linkov severity 60741 normal thanks From debbugs-submit-bounces@debbugs.gnu.org Wed Jan 11 14:57:20 2023 Received: (at submit) by debbugs.gnu.org; 11 Jan 2023 19:57:20 +0000 Received: from localhost ([127.0.0.1]:43942 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pFhDr-00064v-Qc for submit@debbugs.gnu.org; Wed, 11 Jan 2023 14:57:20 -0500 Received: from lists.gnu.org ([209.51.188.17]:57806) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pFhDq-00064n-Gu for submit@debbugs.gnu.org; Wed, 11 Jan 2023 14:57:18 -0500 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 1pFhDp-0008Nk-8J for bug-gnu-emacs@gnu.org; Wed, 11 Jan 2023 14:57:17 -0500 Received: from relay11.mail.gandi.net ([2001:4b98:dc4:8::231]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pFhDl-0007zn-Ot for bug-gnu-emacs@gnu.org; Wed, 11 Jan 2023 14:57:17 -0500 Received: (Authenticated sender: juri@linkov.net) by mail.gandi.net (Postfix) with ESMTPSA id 98737100002 for ; Wed, 11 Jan 2023 19:57:09 +0000 (UTC) From: Juri Linkov To: bug-gnu-emacs@gnu.org Subject: 29.0.60; 'M-c' shadowed in the minibuffer Organization: LINKOV.NET Date: Wed, 11 Jan 2023 21:54:48 +0200 Message-ID: <86zgaosv7b.fsf@mail.linkov.net> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/30.0.50 (x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain Received-SPF: pass client-ip=2001:4b98:dc4:8::231; envelope-from=juri@linkov.net; helo=relay11.mail.gandi.net 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, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.6 (-) 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: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.6 (--) etc/NEWS: +++ ** 'M-c' in 'read-regexp' now toggles case folding. 'M-c' is bound globally to 'capitalize-word', but this keybinding is shadowed in the minibuffer, thus making it impossible to capitalize words. Isearch had this problem for a long time but now it's already solved with: (put 'isearch-toggle-case-fold :advertised-binding "\M-sc") where 'M-s c' is used to toggle search case-sensitivity. So to avoid the problem the same could be done in 'read-regexp': ``` diff --git a/lisp/replace.el b/lisp/replace.el index 2f063bbf66b..9471435bda3 100644 --- a/lisp/replace.el +++ b/lisp/replace.el @@ -824,7 +830,7 @@ read-regexp-suggestions (defvar-keymap read-regexp-map :parent minibuffer-local-map - "M-c" #'read-regexp-toggle-case-folding) + "M-s c" #'read-regexp-toggle-case-folding) (defvar read-regexp--case-fold nil) ``` From debbugs-submit-bounces@debbugs.gnu.org Wed Jan 18 13:06:29 2023 Received: (at 60741) by debbugs.gnu.org; 18 Jan 2023 18:06:29 +0000 Received: from localhost ([127.0.0.1]:41752 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pICpR-0003M6-IZ for submit@debbugs.gnu.org; Wed, 18 Jan 2023 13:06:29 -0500 Received: from relay7-d.mail.gandi.net ([217.70.183.200]:54357) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pICpP-0003Ll-Gu; Wed, 18 Jan 2023 13:06:28 -0500 Received: (Authenticated sender: juri@linkov.net) by mail.gandi.net (Postfix) with ESMTPSA id 3779420002; Wed, 18 Jan 2023 18:06:19 +0000 (UTC) From: Juri Linkov To: 60741@debbugs.gnu.org Subject: Re: bug#60741: 29.0.60; 'M-c' shadowed in the minibuffer In-Reply-To: <86zgaosv7b.fsf@mail.linkov.net> (Juri Linkov's message of "Wed, 11 Jan 2023 21:54:48 +0200") Organization: LINKOV.NET References: <86zgaosv7b.fsf@mail.linkov.net> Date: Wed, 18 Jan 2023 20:06:00 +0200 Message-ID: <86edrr3egn.fsf@mail.linkov.net> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/30.0.50 (x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 60741 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 (-) close 60741 29.0.60 quit > 'M-c' is bound globally to 'capitalize-word', but this keybinding > is shadowed in the minibuffer, thus making it impossible to > capitalize words. > > Isearch had this problem for a long time but now it's already solved with: > > (put 'isearch-toggle-case-fold :advertised-binding "\M-sc") > > where 'M-s c' is used to toggle search case-sensitivity. > > So to avoid the problem the same could be done in 'read-regexp': Pushed to make compatible with the search map currently discussed in bug#60815 where it will be unified in master among other M-s keys under the general setting search-key. From debbugs-submit-bounces@debbugs.gnu.org Wed Jan 18 13:46:58 2023 Received: (at 60741) by debbugs.gnu.org; 18 Jan 2023 18:46:58 +0000 Received: from localhost ([127.0.0.1]:41827 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pIDSb-0000ga-N2 for submit@debbugs.gnu.org; Wed, 18 Jan 2023 13:46:57 -0500 Received: from mx0a-00069f02.pphosted.com ([205.220.165.32]:30022) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pIDSY-0000gO-Nc for 60741@debbugs.gnu.org; Wed, 18 Jan 2023 13:46:56 -0500 Received: from pps.filterd (m0246627.ppops.net [127.0.0.1]) by mx0b-00069f02.pphosted.com (8.17.1.19/8.17.1.19) with ESMTP id 30II4gMj010504; Wed, 18 Jan 2023 18:46:53 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=oracle.com; h=from : to : subject : date : message-id : references : in-reply-to : content-type : content-transfer-encoding : mime-version; s=corp-2022-7-12; bh=4t0FaEi9l1SDCg3IVYCb7nEo+yXwkICAgJs+hWOqCfs=; b=EX/bWaHkwSSK830fRssmCcTDmxeSc6mP1/ShlaD4cKywQYa8pHSvcibOFlgsNMGefpuy kARVQDV3XZpeNFBcNmPXKd41ivd8Z1uITK+gFBOrFCHiReaerQ8udQ20MNv4I81CFpjl D3HPc6rdELslP5V44l7Ig2+SKpgo58IeHszYF5RqiKGv7IXOflmzOao62fczpjljCVyP LucARk6S35BYFH/3Bl2AMzH35A6ZKZ3/ml6DaYCPubBA6/mIeuwYv4Z5tzf3ARKSB9Vd obVYfFTgVVF6QsK4S4NEcUenxT2bJfEvHNb3cCnt0xQEvENpaD12Jj49byc6LfYHGeJD +w== Received: from iadpaimrmta01.imrmtpd1.prodappiadaev1.oraclevcn.com (iadpaimrmta01.appoci.oracle.com [130.35.100.223]) by mx0b-00069f02.pphosted.com (PPS) with ESMTPS id 3n3k010e72-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK); Wed, 18 Jan 2023 18:46:53 +0000 Received: from pps.filterd (iadpaimrmta01.imrmtpd1.prodappiadaev1.oraclevcn.com [127.0.0.1]) by iadpaimrmta01.imrmtpd1.prodappiadaev1.oraclevcn.com (8.17.1.5/8.17.1.5) with ESMTP id 30II98ag005356; Wed, 18 Jan 2023 18:46:52 GMT Received: from nam11-bn8-obe.outbound.protection.outlook.com (mail-bn8nam11lp2169.outbound.protection.outlook.com [104.47.58.169]) by iadpaimrmta01.imrmtpd1.prodappiadaev1.oraclevcn.com (PPS) with ESMTPS id 3n6nt0hpcv-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK); Wed, 18 Jan 2023 18:46:51 +0000 ARC-Seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=hkfuNeWwqiNXRFaULsZGhB30tNoZbSYfqGm1OyiFnZ+dbZFkhoHbwZ91PeRIeopTYAxUQWNGq9YhM26a6Iucq75zQNs+36laRYkkC64B9KHrbmK1gFx4ngYPfxVZlvQcEDkNRw+BjR20nzxbupYiClkQ/WXaVMAt+eLuio2d1JNBxRiqfBKuALnC8xMgjLRYLRgM5Scf7MvozQS76gcPA/mTe2r0N/NHaoyCvP62rKFLFcrZ28w8dsOrV1V/HtqsroLF7AKiwrUb2Jc6CBigDVIUTZ2H4NokJa+S/yEhSBgLBmHOn/ZCsBIWT/W09YsZYuXvhIUaGlpxzQEOaA9H0g== 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=4t0FaEi9l1SDCg3IVYCb7nEo+yXwkICAgJs+hWOqCfs=; b=DaJcvNvyUg3czLhYoNUgt2qjyBVVac8DSNe+qjIxnStEWqWYijWrOpnZnY31mioNS1dyssmtxv46/LG0YhKHZW9swIXvayaLBx7Ndlt1SCPGMA38FQmcQ0C92YoqGf1mrM/DXvk/VOq1mNNXUVQQLejiwrvNx7jeN2UTl7EIGsgUkDS4LFl19XVHvn7uUij+eisDC+Pqvd/8lGiC7Jya4w9HgUuWqvEbCtJTXm6P+kJqAvFRPzlcDFcjkBxrYflyrvQaCgF2mqjXCk6tVujA1CwLHsjSOaF8v8W3cawl3heeqZwIWd4+CGkxqj+Otl67DyKDNd735XhsDQ4VHqpe8A== 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=4t0FaEi9l1SDCg3IVYCb7nEo+yXwkICAgJs+hWOqCfs=; b=L3w5LIPmC0ej3z9RcxdR55FRiEHF9F+8OTpBXVeAJVFGb8qbsAZ5IBAZs0qjrtwpAr9XCiXPDwyhzK/HdStMpGA24iGI3eKd88Y2WJ3e+p0m8EE9Tx2LxpCF293PzT2jozRh8/Kn7x4ykQXbko3MnX1DiZBNnc0ysAp9vuU2Yfc= Received: from SJ0PR10MB5488.namprd10.prod.outlook.com (2603:10b6:a03:37e::19) by SA2PR10MB4524.namprd10.prod.outlook.com (2603:10b6:806:118::8) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.20.6002.13; Wed, 18 Jan 2023 18:46:50 +0000 Received: from SJ0PR10MB5488.namprd10.prod.outlook.com ([fe80::7c3c:e53d:5276:ef29]) by SJ0PR10MB5488.namprd10.prod.outlook.com ([fe80::7c3c:e53d:5276:ef29%8]) with mapi id 15.20.6002.024; Wed, 18 Jan 2023 18:46:50 +0000 From: Drew Adams To: Juri Linkov , "60741@debbugs.gnu.org" <60741@debbugs.gnu.org> Subject: RE: [External] : bug#60741: 29.0.60; 'M-c' shadowed in the minibuffer Thread-Topic: [External] : bug#60741: 29.0.60; 'M-c' shadowed in the minibuffer Thread-Index: AQHZK2e9yARu+kYLfkGIVJxpL9T6Qa6kgszw Date: Wed, 18 Jan 2023 18:46:50 +0000 Message-ID: References: <86zgaosv7b.fsf@mail.linkov.net> <86edrr3egn.fsf@mail.linkov.net> In-Reply-To: <86edrr3egn.fsf@mail.linkov.net> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-ms-publictraffictype: Email x-ms-traffictypediagnostic: SJ0PR10MB5488:EE_|SA2PR10MB4524:EE_ x-ms-office365-filtering-correlation-id: b171098c-2676-40a0-5e09-08daf9845c3a x-ms-exchange-senderadcheck: 1 x-ms-exchange-antispam-relay: 0 x-microsoft-antispam: BCL:0; x-microsoft-antispam-message-info: gV8sRKpOuEh5u0vMnkZkt7+twOccHdsrcKG/EzuOqYqgYX3XvEJ9ggkGh7I0tXWGcnyLppMMC1MplGa3IiZGpyz+WL8Ijgo7VrsgnW049kGyDiTADpoDFaJA0FN+xQaPFiLtFkjFsruN+dyvHqSmv/5GrV6bz8DyYxrpc4DLojkSLAxmfQ/bGXs7giecvbnt5doWGwU7/bhXBEe08XOJ0R31C/HHVaEWW+tcFTVz3EaalGOZHVcJ0ir2ne9Q146piolS8cMAbpCLzmuWLxC2jMrAIkUaWeWsNQVrgSQeEuEvMq2tChUmWSKREfSEdrERy8tVZRKz7HykrTib3fZ6B8Z/ZnXhVpGjAg4jRxdWIKPHT0tDuYFwv7vGDbzLoeJXyFq89geFFJHKN5haPmMMjKRM0wK5ce0CP6bMyKYmlFhxmt66v8XjXrI2lsr2fxWEyBrrfrXhD9pqM3NwbVNMbDpDRxiaI66wur37ArdbMvotkdklJ87P4NEJMptWDZBn2URxus8LvSRU0BCU7a+lUIpU++lgv48lFn7dnIWtrURlsnJew8hDY2/2/XFxLRG6YEr7Erkq4n2Tn9RPJ+WRuAlfky00PezpWOfordmpn85wfht75KXF8JT/inCm42AT5LmlypXGgqMwTxdejxNrGQgrrZ2xoZLdrljiIHfW9m/c0ZRwMGdeLrqtpbCMNZ5BG6MEryX2p6k5atQlYS3OIQ== 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:(13230022)(346002)(39860400002)(396003)(136003)(376002)(366004)(451199015)(6506007)(5660300002)(2906002)(76116006)(8676002)(52536014)(8936002)(122000001)(44832011)(4744005)(64756008)(9686003)(38100700002)(66446008)(33656002)(26005)(478600001)(41300700001)(38070700005)(66476007)(55016003)(7696005)(66946007)(66556008)(86362001)(71200400001)(186003)(316002)(110136005); DIR:OUT; SFP:1101; x-ms-exchange-antispam-messagedata-chunkcount: 1 x-ms-exchange-antispam-messagedata-0: =?us-ascii?Q?GaR3JWqZeslixBwgG7pRa9UXtf1JOVdMfBBkgTq0vHNFAmWN+KPYwiXljlus?= =?us-ascii?Q?dVRqv31faJdRXqGl7+ULPHh2EGQ5WkbK3UKXwMt8wzvedttvsXKQLBYX0rKe?= =?us-ascii?Q?P5NzmOoeZNiiH5iMZAyEM79aMARYdvt3uofhCpDcFEGx9RPySI1nhOzB75G1?= =?us-ascii?Q?QG2C0Y9bgrTVKtliB2ARhkziUc8XranEONELGJvgmHBtz/rSv9zoa8evBvXx?= =?us-ascii?Q?H2CrZT2K67TQ8zpe3pgTFFAmvK78fcy2oVU0k+oCwcQV8FhnJ3HQE8k0f3ut?= =?us-ascii?Q?Kq7+GmsGbqZpIfJ33YhDy4/TfM/PDPQJqw+G/zrCLnD1uym0eIgiyP03csDS?= =?us-ascii?Q?KPuSy7WDkJr9V0kqvwPVXH0Q9qdOdKlRU/MY7NvcdVCd1S6zh8uypWFrSJaw?= =?us-ascii?Q?gODph6ccEZ+iaThydrUm8FUUHJ5fobd5Cgqc6lQEhnW3qg/kVC8tIzlW9+gK?= =?us-ascii?Q?Ryb3ysmxoqW0PmWBjyE27we9z6/MnmUXFpZsCZ4t48rp7UovfUXesNnz7yVe?= =?us-ascii?Q?CWkSovsbx4eOHEJFrEKjmLHL315Xeff3V+ZcVMq4IV/vWlDFjMlhzh3seQS0?= =?us-ascii?Q?RF0VAszyQ2LZg7sibq/1rHnAdcCOmOBzRTRP0V31pArUAhRJx9zLsX7wG3bj?= =?us-ascii?Q?Kp/9ApUb9L+FXHJCHF63hdQPeubmu8JVhQHI4Q/alG8OEnys1njmwMfNGCcq?= =?us-ascii?Q?hWOPFeU8uFe0V6dcUGtWhKwP5/G8VETrkOlyXG5PqpK71hnJQQkHFngLUCLx?= =?us-ascii?Q?sioUc/uz/2vOGF1FEU06iQcshSGtCDi4trziQLbRIKAvb/thbzlPjw2kNc8J?= =?us-ascii?Q?w8/E6UiqhFtfRd28IqQ8RajKOZJlwPSRmB1Doe/TrJudgygJlvUMlj/b7qU5?= =?us-ascii?Q?RhAJU/OTYuIQl8hrkLLMiptXXyUnxNgZuSPiLvlyK8gmnm1+jHxUTI+UxCC5?= =?us-ascii?Q?rSW28kr4/YFcoA1E3zGhQb4sUcpKpIl8Pv1voMXopR1zhISP6TOoYVq1nGAo?= =?us-ascii?Q?So5E6xku/NVAoVQcOTE8M/mbuKzTavTrFAw+dVrv7QM3pIzfqGMWCX3YDOB7?= =?us-ascii?Q?oGy/Wa4As7Z8wSalMNRX/stSGucT4AjWYvtnw8pg7oEz/PlCuICpVQu5DTr3?= =?us-ascii?Q?Pocj3/cnfSz8MTRx1uo0HwRdia9cxfuA6ZW3sG5/oRne4RlxvHkQ+Sl+OQex?= =?us-ascii?Q?FDs6bKZcYR0NUcMeIvdnTrSm3HfFz7tYzSJNj/vAtr6qu7ia9Joq09+sdqLn?= =?us-ascii?Q?pd4BuhPZtfWWDMm/8QtEoAai02gr11IqmUKoSQIOV7oZjcGJK+vW30TZWqGq?= =?us-ascii?Q?Hpscf2Un6tF7VXreZIJYddWoIQR5qGeZOM8rWdbnuS5rZK1cOdE73vDePrX9?= =?us-ascii?Q?ozMH+tcV6/Ygg4QkS0kD7IAlztD15wm2okWn1mnWlEq0GWyAb38fiOImYV8K?= =?us-ascii?Q?xoDSHoYjAMOvzv0mPMaPhiHP6MTCAXM5lpR+Ja1ARqPG/yYDBj0sajDogWIy?= =?us-ascii?Q?N1QBdtNTLhYuLjIH4Pu7+NRbV1y7fUWdDN33KPC3qOXb0GYOFKjXOyLYdxb6?= =?us-ascii?Q?8qT06vd3GqcQz9KI7TXMTyIfv7EzKjXNWnML+aQf?= Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-MS-Exchange-AntiSpam-ExternalHop-MessageData-ChunkCount: 1 X-MS-Exchange-AntiSpam-ExternalHop-MessageData-0: 8JlWGS1c25b12b/LxxN8ptJm3/wU3fXpuve7DpJYl2nr/A2gpGNOq9PbFVlOBanjfUwaoMG5B4g5dDq2Ir+039TbtVF7DG9ItXkm63yHueeE6GLJmS9SAyRNDHU4mHq7ikd4C9VpSfGNfeMVvCpEwl4reJh0dU/2n4nB0CG7i+bpsddUgPm+NT36TONOkYatm328CLq4KXUqUgIVKLcfOQG8ZzzDEJ0cAeXGdHeeEKE9PguwAYDa2VmaH9k3XPD9D7yB2ouEfVRm/Q2RU3h2fTHqqvhn/RkNz1EyM0O0gMrLcmQovywfzmUtnSqh77WRLdEpOaMRpV515RyW4qG6CoYUMxLqwHheUSYI5Ulhtb84roOtlUMfMIFuINEqPwrZRDro9Vx12ECbKRA2W4FlGzjV4M7kF5Rlyvve1PHIV5iaVOsjy0aDe1SNwjLOPXtR8KBG2ad1Y4C0NJqmwY13er2YCWCys6TftPk3k/9rkFz80lwrNrYTjLFfK5xnXIqKgmhavoUxDQktwg4C0ENwqo6O0UZK2loawooey40ztitZXg98EEUVb8uz+yYHjWqTw3k6o31zmce/o6OC537cIJXV1q3l3G/yF3h7+1Qwt+PIJ24VpHJNCpOk93c+yvH2ZeFdw9DqmlqCCvvwIvddUgGexnYxeNfYhypetSmTmzZf/poAnxq/TOVsX4sAF9qm5Fa9E+cT/j6pTMMm/GYGu0XLtF5/U8Ri7PTIYKChy5BPDTcqTV9bADHtDEo+C25CnWI7HeLfSydGqgXgYGxv4FwJZ+11jShsZVYZy6eUMr4= 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: b171098c-2676-40a0-5e09-08daf9845c3a X-MS-Exchange-CrossTenant-originalarrivaltime: 18 Jan 2023 18:46:50.4049 (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: dMv5nNudkOvJ/1Ojhc5+3AJUw6TaTAUPXiHBw2i886gLFMj9S8LrWQkKiQazRXBDRLzUud5vmuSdXTX/IqZHNw== X-MS-Exchange-Transport-CrossTenantHeadersStamped: SA2PR10MB4524 X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.219,Aquarius:18.0.923,Hydra:6.0.562,FMLib:17.11.122.1 definitions=2023-01-18_05,2023-01-18_01,2022-06-22_01 X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 bulkscore=0 malwarescore=0 mlxlogscore=514 phishscore=0 spamscore=0 suspectscore=0 mlxscore=0 adultscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.12.0-2212070000 definitions=main-2301180158 X-Proofpoint-GUID: IraDEszFXoHnkiDug1qQecB60fEiXr4I X-Proofpoint-ORIG-GUID: IraDEszFXoHnkiDug1qQecB60fEiXr4I X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 60741 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 (-) > > 'M-c' is bound globally to 'capitalize-word', but this keybinding > > is shadowed in the minibuffer, thus making it impossible to > > capitalize words. Is this something new in Emacs 29? I don't see it in previous versions (I don't have 29). What is `M-c' bound to now in the minibuffer keymaps? Why should we lose this longstanding, useful key binding? Users should be able to use most normal editing keys in the minibuffer - it's first and foremost an editing buffer. From debbugs-submit-bounces@debbugs.gnu.org Wed Jan 18 13:52:51 2023 Received: (at 60741) by debbugs.gnu.org; 18 Jan 2023 18:52:51 +0000 Received: from localhost ([127.0.0.1]:41842 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pIDYE-0000vJ-JA for submit@debbugs.gnu.org; Wed, 18 Jan 2023 13:52:51 -0500 Received: from relay8-d.mail.gandi.net ([217.70.183.201]:49733) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pIDYB-0000uv-SZ for 60741@debbugs.gnu.org; Wed, 18 Jan 2023 13:52:44 -0500 Received: (Authenticated sender: juri@linkov.net) by mail.gandi.net (Postfix) with ESMTPSA id 4D7BB1BF205; Wed, 18 Jan 2023 18:52:35 +0000 (UTC) From: Juri Linkov To: Drew Adams Subject: Re: [External] : bug#60741: 29.0.60; 'M-c' shadowed in the minibuffer In-Reply-To: (Drew Adams's message of "Wed, 18 Jan 2023 18:46:50 +0000") Organization: LINKOV.NET References: <86zgaosv7b.fsf@mail.linkov.net> <86edrr3egn.fsf@mail.linkov.net> Date: Wed, 18 Jan 2023 20:52:18 +0200 Message-ID: <86tu0n1xr1.fsf@mail.linkov.net> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/30.0.50 (x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 60741 Cc: "60741@debbugs.gnu.org" <60741@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.7 (-) >> > 'M-c' is bound globally to 'capitalize-word', but this keybinding >> > is shadowed in the minibuffer, thus making it impossible to >> > capitalize words. > > Is this something new in Emacs 29? Yes, it's new. > I don't see it in previous versions (I don't have 29). > What is `M-c' bound to now in the minibuffer keymaps? It was bound to `read-regexp-toggle-case-folding'. > Why should we lose this longstanding, useful key > binding? Users should be able to use most normal > editing keys in the minibuffer - it's first and > foremost an editing buffer. Now normal editing keys are available again. From debbugs-submit-bounces@debbugs.gnu.org Wed Jan 18 13:59:37 2023 Received: (at 60741) by debbugs.gnu.org; 18 Jan 2023 18:59:37 +0000 Received: from localhost ([127.0.0.1]:41852 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pIDer-00018C-Gu for submit@debbugs.gnu.org; Wed, 18 Jan 2023 13:59:37 -0500 Received: from mx0a-00069f02.pphosted.com ([205.220.165.32]:59608) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pIDen-000183-R2 for 60741@debbugs.gnu.org; Wed, 18 Jan 2023 13:59:35 -0500 Received: from pps.filterd (m0246627.ppops.net [127.0.0.1]) by mx0b-00069f02.pphosted.com (8.17.1.19/8.17.1.19) with ESMTP id 30II4Qdb010225; Wed, 18 Jan 2023 18:59:32 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=oracle.com; h=from : to : cc : subject : date : message-id : references : in-reply-to : content-type : content-transfer-encoding : mime-version; s=corp-2022-7-12; bh=1EKfVH8Yt9BgeyHJYoU0NMpPHXWI/WEEdzyE73zesrk=; b=CXym1oYgJcXsfOQdh8f0FHiLma4T4UVGe8V2TQuK9FoR0QI+qCVC2LO32MCGhjCY1xcw tB4A1oFZzKwOwFS/DQLFJ/3zITdeP7ZOKUOb4ojwM6NIwJOlV4x9zyZK+FcCOONAo0C6 GGtTsELpk/Q6tN1H24sStyWUvd6KUQu+MSTB7RupYUP76rAgBhd9mUxJSQQmcooOmwJW JYcuBn6Q+23oNrw1/dkEe7Hx5TYMIJSBCQH+KBZhWSwpeDwPFK1aCI8dJqAnxHXpduBq DHKD0k/+5LRdE8dyk8a4kqn9FAyLrLrCR7s5UrEEgYKxV5XYdk/KtPUyn5Fd/knumGk5 8Q== Received: from iadpaimrmta01.imrmtpd1.prodappiadaev1.oraclevcn.com (iadpaimrmta01.appoci.oracle.com [130.35.100.223]) by mx0b-00069f02.pphosted.com (PPS) with ESMTPS id 3n3k010f2n-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK); Wed, 18 Jan 2023 18:59:32 +0000 Received: from pps.filterd (iadpaimrmta01.imrmtpd1.prodappiadaev1.oraclevcn.com [127.0.0.1]) by iadpaimrmta01.imrmtpd1.prodappiadaev1.oraclevcn.com (8.17.1.5/8.17.1.5) with ESMTP id 30II9CaE005530; Wed, 18 Jan 2023 18:59:31 GMT Received: from nam12-mw2-obe.outbound.protection.outlook.com (mail-mw2nam12lp2045.outbound.protection.outlook.com [104.47.66.45]) by iadpaimrmta01.imrmtpd1.prodappiadaev1.oraclevcn.com (PPS) with ESMTPS id 3n6nt0j6db-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK); Wed, 18 Jan 2023 18:59:31 +0000 ARC-Seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=VGnV3cdIP0Yu8fZzVIpumEBDhjIXF6I4DTZQkVbho9gwLzZdopqOwZB3bLQx5mlYuUOGeIvQE81dGWqBs6T8xuCAnXlqoP4wi6jNSbmedoKigIN1xkGgOnBKDRXpoydCe7bm8LLgD1mh2n4NFmbOP2lNLT+wcRzC7bigN8aZhoj3Ng06Dj7MhT9eOxfT/1JJoa9HnI6mUzUMJ28rQbzkFBF2iGMn/gbn9MNQrq4il6vPFDGXxZ6sL9CT7Iqtn0lQa+2q/RiMXlwj53f1XCP0AbSGXQc8m4IAbtxrFeZhQ2y+ZzISsw5jgfv6MN/WkASHqLNAAu14tu+NbBqDJrPYgQ== 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=1EKfVH8Yt9BgeyHJYoU0NMpPHXWI/WEEdzyE73zesrk=; b=S8eEc45Yk9pdT1ZLo7HHC7bJm09zp2eFhNtGEHvQv5dHKgZAX74X0wMa/pRk1k6PlZVCXN+9cienCt1s9qFJVIb5pa7AEKKbff4RwYFPwqADo0r6iuqG4kWq7bg7z5zTcuu/QoHf0L7XDEa+b2g8FSEWzkvT3Dgiy/V+ql4Gk51HUnALAFmJ05V7fKTeUgo1AmnDdlakYZ6x5pY77TGMCFlII0sHw/Wc0XreITzrzwDxkIU+G/1hPEnB+uHziniB4QHiMYKz2sSHmblAccASJdC+p9jRELdiJ8pJocS0YkywRcQlMkUe/vYprrSzHXuofLpHWv5Z/mdYzCzNyiBr0Q== 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=1EKfVH8Yt9BgeyHJYoU0NMpPHXWI/WEEdzyE73zesrk=; b=sXXuZAWUi9Zmpa6V2/TlPXNl3QERxbNBrsoAaws7wzMfMqYuAVaXabxqmAFvBb5L9PVRKEE+djf1Bgv4aX2uWhIskWP0LhcY2wVwJpv1vSMpwt0Jug1ilqj1xR6KkQ0eVZt0Jt2Il3lr2+p4b7CnWvCnxs9t/XxVaVLGD5mI+8g= Received: from SJ0PR10MB5488.namprd10.prod.outlook.com (2603:10b6:a03:37e::19) by CH0PR10MB5050.namprd10.prod.outlook.com (2603:10b6:610:c3::21) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.20.6002.13; Wed, 18 Jan 2023 18:59:28 +0000 Received: from SJ0PR10MB5488.namprd10.prod.outlook.com ([fe80::7c3c:e53d:5276:ef29]) by SJ0PR10MB5488.namprd10.prod.outlook.com ([fe80::7c3c:e53d:5276:ef29%8]) with mapi id 15.20.6002.024; Wed, 18 Jan 2023 18:59:28 +0000 From: Drew Adams To: Juri Linkov Subject: RE: [External] : bug#60741: 29.0.60; 'M-c' shadowed in the minibuffer Thread-Topic: [External] : bug#60741: 29.0.60; 'M-c' shadowed in the minibuffer Thread-Index: AQHZK24O9h95wAagoUq23AI8jLvRB66khvWg Date: Wed, 18 Jan 2023 18:59:28 +0000 Message-ID: References: <86zgaosv7b.fsf@mail.linkov.net> <86edrr3egn.fsf@mail.linkov.net> <86tu0n1xr1.fsf@mail.linkov.net> In-Reply-To: <86tu0n1xr1.fsf@mail.linkov.net> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-ms-publictraffictype: Email x-ms-traffictypediagnostic: SJ0PR10MB5488:EE_|CH0PR10MB5050:EE_ x-ms-office365-filtering-correlation-id: c1531261-3842-4f91-92e4-08daf9862026 x-ms-exchange-senderadcheck: 1 x-ms-exchange-antispam-relay: 0 x-microsoft-antispam: BCL:0; x-microsoft-antispam-message-info: ZsDlimUXXwPEKOHSgb9rbTj8tBJ+rOZhIK65KJpMXmEUbXePTSzopHxUQZvfqzp8qHptnIKXcg0muU6H1O7swf4td3/oRjQKm/KXnSjF/9xNIuoJdyb4VBT+XeJ34XyMZZbYReAtrMLaBYu2tvjpp2BMAtby2Kok8XWgN2jBQI7cld/gTw2egJbponfbTNggTYQY9Z3cee1Zru0sr4fdFASNXzttZVdy+3RCz+VARSM5V0/IHtJK39ZIXc5j4qe5vKtKZtOOGSrKica8iCxJksD6Vny6sMURfuak4Y1Op3m1MdPuv+sgrLHKWCMvdU5lfZJj7PoKRGEGTKhN7wpEcnr0d5TgYGLpy9BXAnSzggbre08t7WbLN6R3M+rd77+6Ei9auFmawm4yYOqCQuDXCx1FhKxBVs7aXMvuwPTVFv/FkCOSHs2r2t7J6SBWh//xE3hWWXU0P7CN4gDcVUxucWFP+X41D5736u0BBS3VD01O9XGGNtJx0FMcp+PHyvDLPKH1NcyJDt/dgGK5ItRlu+BcXGoBpk9678NrNisTI0RVEuFz74dktPT19vL3GRE69QUcRC3pyLPMy/x9LsHoQCe7uPP2Oto37YZlbmfYOMzze/pN5iPjGhvjRd9n/9TFk7t0OLV+Up6Y4RDnRRJCysy9SKzXe8VIMvRVhh2dA/phYB4mIWVt/NEiCF+zlhY3oWZ3y6PrIafuUP5ozGI9hw== 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:(13230022)(366004)(39860400002)(346002)(376002)(136003)(396003)(451199015)(5660300002)(8936002)(44832011)(41300700001)(52536014)(8676002)(4326008)(6916009)(66446008)(76116006)(64756008)(66946007)(122000001)(33656002)(558084003)(86362001)(2906002)(66476007)(66556008)(38070700005)(38100700002)(55016003)(7696005)(71200400001)(6506007)(478600001)(9686003)(26005)(186003)(316002); DIR:OUT; SFP:1101; x-ms-exchange-antispam-messagedata-chunkcount: 1 x-ms-exchange-antispam-messagedata-0: =?us-ascii?Q?+0ByTagisl64Y0x31nL1zjZPOEQH2teYPMkiF304glHXYnTJ+gwV6zLvlbtL?= =?us-ascii?Q?/8uZSb3O1k2WERvIA0Kz/LJlSGfn+SdZcPpi+9JEbNSQdZ0ILrRJAB7YCHwT?= =?us-ascii?Q?Qpl6q2PqYmB6TpmxxioiAD7XGOsVYw7aIZlPiKFl1KXCbKXeO687497M/R+R?= =?us-ascii?Q?3PI5xmdDULhSoH2dpHHypGkl3AoSTsUZx6ZIGwpYvITQiO3i2He7e5onMWRN?= =?us-ascii?Q?NEwlhZ/TAKV5dVhhI/u2lZ0tOHhE1Wuokg9Z/NzFyMwP9eiA1AXN+T4OYzvl?= =?us-ascii?Q?2okK6I9amKtY8KgpiSq1rF+IKksVqr2TUJL4Zs1ZVG/7zEnTTLh/UN9zUl3/?= =?us-ascii?Q?GS7TjJqlKA253TAQjtq+XAFKgktxVTsqLnZ/JYy4h1Zui0LQWKEjuKirbdVQ?= =?us-ascii?Q?1hyO6CdMXr+/1i1tYH/1Bn5uVEHR/cAsrI7oiLa3UzHIGawZS6mGzvg154t/?= =?us-ascii?Q?T4nTVRnSRrhApwJvqOfO7PFHDgjzDjqxwHdIT+LLSNtRNsxj6EcANK34BYj6?= =?us-ascii?Q?lsHgvX1naM/ZkerR2sM8HhUx/oqJ3Aee6nrWspxIGdDDphAt+dE7xj2stJ45?= =?us-ascii?Q?6wVDMfxXhXQ1IWn9tejxuB4/uOltM4i6mOQXllUGMngfN/T0XKzql1Ejf9uh?= =?us-ascii?Q?cgR2ZUxEKU+rCsgKxO+2/OWABO8r442HGmv9lG28t7SYyWT4+eeUzNaeg7gk?= =?us-ascii?Q?oTl2w7PKHk+sXBYkOBSpa5VMKyH0cjve/0xPUxTKdXLCI4W1AuHx8vw6I5h1?= =?us-ascii?Q?ZuY2HelpcLrFxf3+xyRlPhg15YezPM8us/BBL63SrksTc/Dfk9qCu6i87EE7?= =?us-ascii?Q?IAjz0g4Ir1KkSSE1cMUjXAw4ybDviudZh2QErby5+v9PGkwFKa80IcYiBoKO?= =?us-ascii?Q?BjnNydn8WXb3NClf+nr/qoEkaiYt6z7hSFk040VNhcyG6AtGKysmQUVPA+Ve?= =?us-ascii?Q?yctsewZttYasWuEwJgNW5vHkC8r8waxiOsYlfAmqMiA/C8dkGQua8Tac+hoC?= =?us-ascii?Q?jDJZSNuBbplvmGQvTNUnYbBfceuZrQPG9K/uTF461n2PEtlwWUpOjmMBJLqO?= =?us-ascii?Q?SXIFUEL7qnphvu4+eBYYY54RFye+RGh4k6jZ4hEElRNXvgUOWozqcGkz+RxW?= =?us-ascii?Q?FjTx4sWw3TOxQhEimWQU/lvvSjaAkEaVgEIUC8l1lu6EjW1cjgnN94yQUGbW?= =?us-ascii?Q?k3tqIP7t6ZkVNqh5RByGJSaVW8CZcTJyDKLDxKF00V1ixfkduhC36/4N/znT?= =?us-ascii?Q?XqJSDdlaCGNPzlaVScbR06Plz+gbXxbYOIr7Aex8HrRDEAKfcAzobD0yVoRP?= =?us-ascii?Q?eyv37rUmRCJWyoK2wV9fOI1R0LfBQ8nQzTYgVA8ZSL4Jd1KfypcpXKO+R7ce?= =?us-ascii?Q?1NC0XkJ1Rbfg3rknN1hoNnKpA2c4Rd/1WXlw+aEtBkG7U70tpEN+ZhasD/5Y?= =?us-ascii?Q?zikNTLxoDOvF6da+/GOT9xN1P2qJk6auEzNKaP2Gfwy4UM0gsI9qcyOTSxtN?= =?us-ascii?Q?oCkZZSON/e1btyK3oxvKbZ1vRdPG7LwguFJ4cnI1hAW4EHZ1vyvNPkHxd2Vn?= =?us-ascii?Q?Cs85ouP8OwcFdy7YEy2DUxaw71nWnqQP0DoD+GmY?= Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-MS-Exchange-AntiSpam-ExternalHop-MessageData-ChunkCount: 1 X-MS-Exchange-AntiSpam-ExternalHop-MessageData-0: O1UbazmUqu6B6M1o/VaScZ3AEgwfwaml/jOPIHMo1Ue0+TqAY36+1EuQL+PrptrV3W2bsuMtkN2f9vcIslyguGhKxEtfSOZi/IfzWNBmfXRm7kdzbIwbuAvaZ7mpcoUoKibBY+iehh5Owp/uezgBTV5wngQqJxp8aspBFXaPO/tHxg4zw33x9Gym4FgcvlgOJHzvLjMiQsd8KPseK30KnfCq5s9n7kgTelT6OUtG0ILJtekDlCwSTrrERAIjhbDSkUSgKhWtm/METf4oXDJOpI5R7wBX8CUKRd4h77WHbnUfQJHygXHaXiHVQSU3UfIPJO3Aq6J6yuyuUgsdBVlh7meTJe5b5bMQDOeEq8Z6zHdFXGLr50PgZvRXktWK7qKuWBtdlAXN/sDwS4ZiqrgAoAk06W9O/gdorbyhe6Lc6nhB5yuBK/PWQJLA4G4ycmgUTeIdVIZmvMjWYSXj+RVAwTXQVkv7sKOBZ3ZUsVCcImCr2Gdq0JpzxAYTdtpdS6ivCl1sS8uYxtB3j/XrsMOYqVEubNk8bEUwf1045czm6ZnEoyPuw6GSbGFqlC584nbHobI0jShcAC9yX1q0qhwpbdQVlIf4NCdK18i6aEGJn6tIfELRLxGQclNmtRd4aqqIFfMChnwe4ELJVE5xJn6oVjdKFfdo8xiXbYQC/hT9TYFsmnj2Al3J6/4A8AptnxRi9UewflnelwvxZ4TublbPEP0qGcw1sydFcPqZ6ImHP1SQBOOWL/Ju+yJ8YaVLqeu8jxtmKaEYnVGBgEM3kvj2CV1DNRObxdZg9GROow9HEng= 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: c1531261-3842-4f91-92e4-08daf9862026 X-MS-Exchange-CrossTenant-originalarrivaltime: 18 Jan 2023 18:59:28.6054 (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: zLkG10Fl2VOo91DrfF9efWiz0xpc+CPKQ7LfqQnbZZCwfJcHRcG2rGZILf1AYUBc68799nth64kK3yLSgDGVDA== X-MS-Exchange-Transport-CrossTenantHeadersStamped: CH0PR10MB5050 X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.219,Aquarius:18.0.923,Hydra:6.0.562,FMLib:17.11.122.1 definitions=2023-01-18_05,2023-01-18_01,2022-06-22_01 X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 bulkscore=0 malwarescore=0 mlxlogscore=612 phishscore=0 spamscore=0 suspectscore=0 mlxscore=0 adultscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.12.0-2212070000 definitions=main-2301180160 X-Proofpoint-GUID: P_4J14s5mRX6K7D9WNZbwWTJndqQWLEJ X-Proofpoint-ORIG-GUID: P_4J14s5mRX6K7D9WNZbwWTJndqQWLEJ X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 60741 Cc: "60741@debbugs.gnu.org" <60741@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.7 (-) > Now normal editing keys are available again. Thx. From debbugs-submit-bounces@debbugs.gnu.org Thu Jan 19 01:11:39 2023 Received: (at 60741) by debbugs.gnu.org; 19 Jan 2023 06:11:39 +0000 Received: from localhost ([127.0.0.1]:42354 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pIO9D-0004q8-9J for submit@debbugs.gnu.org; Thu, 19 Jan 2023 01:11:39 -0500 Received: from stw1.rcdrun.com ([217.170.207.13]:42151) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pIO9B-0004nk-5C for 60741@debbugs.gnu.org; Thu, 19 Jan 2023 01:11:38 -0500 Received: from localhost ([::ffff:197.239.7.243]) (AUTH: PLAIN admin, TLS: TLS1.3,256bits,ECDHE_RSA_AES_256_GCM_SHA384) by stw1.rcdrun.com with ESMTPSA id 000000000010394D.0000000063C8DF1A.00007B47; Wed, 18 Jan 2023 23:11:38 -0700 Date: Thu, 19 Jan 2023 08:34:05 +0300 From: Jean Louis To: Drew Adams Subject: Re: bug#60741: 29.0.60; 'M-c' shadowed in the minibuffer Message-ID: References: <86zgaosv7b.fsf@mail.linkov.net> <86edrr3egn.fsf@mail.linkov.net> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline In-Reply-To: User-Agent: Mutt/2.2.9+54 (af2080d) (2022-11-21) X-Spam-Score: 2.6 (++) 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: * Drew Adams [2023-01-18 21:48]: > > > 'M-c' is bound globally to 'capitalize-word', but this keybinding > > > is shadowed in the minibuffer, thus making it impossible to > > > [...] Content analysis details: (2.6 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 2.6 RCVD_IN_SBL RBL: Received via a relay in Spamhaus SBL [197.239.7.243 listed in zen.spamhaus.org] -0.0 SPF_HELO_PASS SPF: HELO matches SPF record -0.0 SPF_PASS SPF: sender matches SPF record X-Debbugs-Envelope-To: 60741 Cc: "60741@debbugs.gnu.org" <60741@debbugs.gnu.org>, Juri Linkov 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.6 (+) 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: * Drew Adams [2023-01-18 21:48]: > > > 'M-c' is bound globally to 'capitalize-word', but this keybinding > > > is shadowed in the minibuffer, thus making it impossible to > > > [...] Content analysis details: (1.6 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 2.6 RCVD_IN_SBL RBL: Received via a relay in Spamhaus SBL [197.239.7.243 listed in zen.spamhaus.org] -0.0 SPF_HELO_PASS SPF: HELO matches SPF record -0.0 SPF_PASS SPF: sender matches SPF record -1.0 MAILING_LIST_MULTI Multiple indicators imply a widely-seen list manager * Drew Adams [2023-01-18 21:48]: > > > 'M-c' is bound globally to 'capitalize-word', but this keybinding > > > is shadowed in the minibuffer, thus making it impossible to > > > capitalize words. > > Is this something new in Emacs 29? I don't see it > in previous versions (I don't have 29). What is > `M-c' bound to now in the minibuffer keymaps? > > Why should we lose this longstanding, useful key > binding? Users should be able to use most normal > editing keys in the minibuffer - it's first and > foremost an editing buffer. I use that key all the time in the minibuffer, and can't without it. I give you the practical example: - PDF book in Dired is called: 21252030 agenda for sustainable development web.pdf - I click and wish to index the book, so initial prompt for the title will be: 21252030 agenda for sustainable development web.pdf - I delete 21252030 with M-d and use M-c to get following: Agenda For Sustainable Development - then I press RET to record information Without M-c in minibuffer I would need to re-assign key binding. But it works, I did not know something changed. -- Jean Take action in Free Software Foundation campaigns: https://www.fsf.org/campaigns In support of Richard M. Stallman https://stallmansupport.org/ From debbugs-submit-bounces@debbugs.gnu.org Thu Jan 19 02:25:26 2023 Received: (at 60741) by debbugs.gnu.org; 19 Jan 2023 07:25:26 +0000 Received: from localhost ([127.0.0.1]:42419 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pIPIc-0006mk-9z for submit@debbugs.gnu.org; Thu, 19 Jan 2023 02:25:26 -0500 Received: from eggs.gnu.org ([209.51.188.92]:49898) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pIPIZ-0006mP-Jr for 60741@debbugs.gnu.org; Thu, 19 Jan 2023 02:25:25 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pIPIL-0003vT-SU; Thu, 19 Jan 2023 02:25:16 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=XhcAXlrpNcUNyHl4jNBLx1gxO7172ivGSvEzabr2KTI=; b=bpyr6BgFy7YQ A/0uvb6RRbr9YPEFs2NWBw20HI5L10JzHxmC5oIYOkC6obCTp2Api+ki8EYizcOsLptEInT+xm5GI ZfPJ26ci/t+gRUcwWTC2af2xVRugD9cBN+0oh2P2K5py6MqoGqIkhqc7tQ0fQYDzN1GFjxxeNtTdV 6TM+L8x2mCxUvASJ2CMTEzKHRs93Mfi/GlCTEGkZgTlL0aMuayOSoju1tumudYlf1qg1zOy3dr7w9 RSRk2ANNCaTZNrVEoMNuZOeuJWN66uUL7v63hrKXl3PCJ/kjZ458YZXx9aPdqrqUL18ZEtKBHgIdI XDJahvY3d8E9c1YfA1oxWw==; Received: from [87.69.77.57] (helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pIPIL-0001DN-7x; Thu, 19 Jan 2023 02:25:09 -0500 Date: Thu, 19 Jan 2023 09:25:23 +0200 Message-Id: <83v8l3yoik.fsf@gnu.org> From: Eli Zaretskii To: Jean Louis In-Reply-To: (message from Jean Louis on Thu, 19 Jan 2023 08:34:05 +0300) Subject: Re: bug#60741: 29.0.60; 'M-c' shadowed in the minibuffer References: <86zgaosv7b.fsf@mail.linkov.net> <86edrr3egn.fsf@mail.linkov.net> X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 60741 Cc: 60741@debbugs.gnu.org, drew.adams@oracle.com, juri@linkov.net 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 (---) > Cc: "60741@debbugs.gnu.org" <60741@debbugs.gnu.org>, > Juri Linkov > Date: Thu, 19 Jan 2023 08:34:05 +0300 > From: Jean Louis > > * Drew Adams [2023-01-18 21:48]: > > > > 'M-c' is bound globally to 'capitalize-word', but this keybinding > > > > is shadowed in the minibuffer, thus making it impossible to > > > > capitalize words. > > > > Is this something new in Emacs 29? I don't see it > > in previous versions (I don't have 29). What is > > `M-c' bound to now in the minibuffer keymaps? > > > > Why should we lose this longstanding, useful key > > binding? Users should be able to use most normal > > editing keys in the minibuffer - it's first and > > foremost an editing buffer. > > I use that key all the time in the minibuffer, and can't without > it. I give you the practical example: > > - PDF book in Dired is called: > 21252030 agenda for sustainable development web.pdf > > - I click and wish to index the book, so initial prompt for the title > will be: > 21252030 agenda for sustainable development web.pdf > > - I delete 21252030 with M-d and use M-c to get following: > Agenda For Sustainable Development > > - then I press RET to record information > > Without M-c in minibuffer I would need to re-assign key binding. > > But it works, I did not know something changed. You are barking up the wrong tree: Juri has _fixed_ this, didn't _break_ this. Please review the changeset before posting opinions about it. From unknown Tue Jun 17 20:16:38 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Thu, 16 Feb 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