From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: Text properties gone from edit menu Date: Wed, 02 Feb 2022 16:48:50 +0200 Message-ID: <8335l17299.fsf@gnu.org> References: <878rut9y8n.fsf.ref@yahoo.com> <878rut9y8n.fsf@yahoo.com> Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="1548"; mail-complaints-to="usenet@ciao.gmane.io" Cc: emacs-devel@gnu.org To: Po Lu Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Wed Feb 02 18:03:30 2022 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1nFJ2Y-0000CL-3W for ged-emacs-devel@m.gmane-mx.org; Wed, 02 Feb 2022 18:03:30 +0100 Original-Received: from localhost ([::1]:46274 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1nFJ2W-0004wR-AY for ged-emacs-devel@m.gmane-mx.org; Wed, 02 Feb 2022 12:03:28 -0500 Original-Received: from eggs.gnu.org ([209.51.188.92]:37640) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nFGwE-0004UI-AS for emacs-devel@gnu.org; Wed, 02 Feb 2022 09:48:50 -0500 Original-Received: from [2001:470:142:3::e] (port=34722 helo=fencepost.gnu.org) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nFGwC-0001xf-V7; Wed, 02 Feb 2022 09:48:50 -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=Nx9P1rHmR3Ilj0FaoTZq3H49npxPhbBGMYqQQ9IvJq8=; b=XKfSXKZqt0j+ 9GcDOVRObn+n7PD1tL4uCkQLiywphUmoXpgV0uFONiXj/0Msqyb92NVnfCot61eSTzhFk34HTxLLY bGR8Eo0UlXpzcdl8Sp5hxz5I8LACCbqp0AETee6LxEQh2bHNZdmzD4Xoe0nEGtTJtsgIR7wQh2yEc YBMKAZz3dB+f5p65i5uf7UPl+zMsqnEVnx9PZhdfjeBb9u/Xc5uqKn19EqSgPvA4SAN7oo8FeuQqw 9q7lcCu/8R3IQ98u+BhPRRI6+WqwfphLgK++DFDizRCpSarjVZu6/kjvOyb0I+HOEWeC6WF6YW++9 0TIwvepMVv18fm3/928HXw==; Original-Received: from [87.69.77.57] (port=3936 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 1nFGwB-00080n-Ih; Wed, 02 Feb 2022 09:48:48 -0500 In-Reply-To: <878rut9y8n.fsf@yahoo.com> (message from Po Lu on Wed, 02 Feb 2022 21:47:20 +0800) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.io gmane.emacs.devel:285795 Archived-At: > From: Po Lu > Date: Wed, 02 Feb 2022 21:47:20 +0800 > > The removal of the M-o prefix for facemenu commands seems to have had an > unintended side effect: the Text Properties submenu has disappeared from > the Edit menu. Just "Mix load-library RET facemenu RET", and it re-appears. > Will anyone mind if I fix that? And should I do that on the release > branch, since it's a regression from 27.2? What would that menu say? All of its items aren't actionable until facemenu is loaded. This is not a regression, this is a deliberate removal of functionality that was deemed not important enough. It took us a lot of heated discussions to get there, and I wouldn't want to restart those discussions. If you don't like the removal and its side effects, just add this to your init file: (when (>= emacs-major-version 28) (require 'facemenu) (define-key global-map "\M-o" 'facemenu-keymap) (define-key facemenu-keymap "\es" 'center-line) (define-key facemenu-keymap "\eS" 'center-paragraph)) That's what I did.