From unknown Sat Aug 09 04:58:03 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#70262 <70262@debbugs.gnu.org> To: bug#70262 <70262@debbugs.gnu.org> Subject: Status: 30.0.50; [PATCH] align.el: Delete unnecessary :group keywords Reply-To: bug#70262 <70262@debbugs.gnu.org> Date: Sat, 09 Aug 2025 11:58:03 +0000 retitle 70262 30.0.50; [PATCH] align.el: Delete unnecessary :group keywords reassign 70262 emacs submitter 70262 Arash Esbati severity 70262 normal tag 70262 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Sun Apr 07 15:19:09 2024 Received: (at submit) by debbugs.gnu.org; 7 Apr 2024 19:19:10 +0000 Received: from localhost ([127.0.0.1]:44669 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rtY2n-0002YC-6g for submit@debbugs.gnu.org; Sun, 07 Apr 2024 15:19:09 -0400 Received: from lists.gnu.org ([2001:470:142::17]:36938) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rtY2j-0002Ws-Hf for submit@debbugs.gnu.org; Sun, 07 Apr 2024 15:19:07 -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 1rtY2W-00068u-Ie for bug-gnu-emacs@gnu.org; Sun, 07 Apr 2024 15:18:52 -0400 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 1rtY2W-0000Tv-AM for bug-gnu-emacs@gnu.org; Sun, 07 Apr 2024 15:18:52 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:Subject:To:From:in-reply-to: references; bh=zvQhKb9iD4ukvpSOTUcvxRCAcABUTWGIcs5ontNLD3U=; b=gBOuqUDNMOyVv9 yHcS+LhrP2/bp3jRD0E7LpW7fQk79IVpvzBBJL1LBD2uGezrtOr/MWFgYgpxXjP0NaY2q2gTEcWJ2 6Y7uFQRkGySJw5drHB38cS7c/Y4WfWMQrqYgkVnyCC4+TtXZNXQRgCPOeKgLmzAVrjjMN/sTeZnVE Ncs5v4h4frAIM8LUWbBZErQ1NJiL92BUpm9myw3wJ1GKgLPhfaRQthxK3xh8ljJHbj7rE30ZV9lLw 29q221Ae/6DeJ3GAxDDykXvcA5OVba3SOaYkZ64aZoP9VdauO4rHTYYa+RlhATHKazZo35pIOklFz Rbb7e+OVZ9f/5DSM/3JA==; From: Arash Esbati To: "emacs-bugs" Subject: 30.0.50; [PATCH] align.el: Delete unnecessary :group keywords Date: Sun, 07 Apr 2024 21:18:48 +0200 Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Spam-Score: -0.0 (/) 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: -1.0 (-) --=-=-= Content-Type: text/plain Hi all, this is a trivial patch removing all ":group 'align" entries from the custom forms. Best, Arash --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-lisp-align.el-Remove-unnecessary-group-keywords.patch >From 61c8e73551b39cf768ab3b8866f0ac932ed2b9c8 Mon Sep 17 00:00:00 2001 From: Arash Esbati Date: Sun, 7 Apr 2024 21:12:05 +0200 Subject: [PATCH] ; * lisp/align.el: Remove unnecessary :group keywords. --- lisp/align.el | 62 +++++++++++++++++---------------------------------- 1 file changed, 21 insertions(+), 41 deletions(-) diff --git a/lisp/align.el b/lisp/align.el index 0e77a857585..6c393f7ee26 100644 --- a/lisp/align.el +++ b/lisp/align.el @@ -126,15 +126,13 @@ align (defcustom align-load-hook nil "Hook that gets run after the aligner has been loaded." - :type 'hook - :group 'align) + :type 'hook) (make-obsolete-variable 'align-load-hook "use `with-eval-after-load' instead." "28.1") (defcustom align-indent-before-aligning nil "If non-nil, indent the marked region before aligning it." - :type 'boolean - :group 'align) + :type 'boolean) (defcustom align-default-spacing 1 "An integer that represents the default amount of padding to use. @@ -142,14 +140,12 @@ align-default-spacing tab stops to use for alignment, rather than the number of spaces. Each alignment rule can optionally override both this variable and `align-to-tab-stop'. See `align-rules-list'." - :type 'integer - :group 'align) + :type 'integer) (defcustom align-to-tab-stop 'indent-tabs-mode "If non-nil, alignments will always fall on a tab boundary. It may also be a symbol, whose value will be taken." - :type '(choice (const nil) symbol) - :group 'align) + :type '(choice (const nil) symbol)) (defcustom align-region-heuristic 500 "If non-nil, used as a heuristic by `align-current'. @@ -160,66 +156,55 @@ align-region-heuristic values can mean slower performance in large files, although smaller values may cause unexpected behavior at times." :type '(choice (const :tag "Don't use heuristic when aligning a region" nil) - integer) - :group 'align) + integer)) (defcustom align-highlight-change-face 'highlight "The face to highlight with if changes are necessary. Used by the `align-highlight-rule' command." - :type 'face - :group 'align) + :type 'face) (defcustom align-highlight-nochange-face 'secondary-selection "The face to highlight with if no changes are necessary. Used by the `align-highlight-rule' command." - :type 'face - :group 'align) + :type 'face) (defcustom align-large-region 10000 "If an integer, defines what constitutes a \"large\" region. If nil, then no messages will ever be printed to the minibuffer." - :type '(choice (const :tag "Align a large region silently" nil) integer) - :group 'align) + :type '(choice (const :tag "Align a large region silently" nil) integer)) (defcustom align-c++-modes '( c++-mode c-mode java-mode) "A list of modes whose syntax resembles C/C++." - :type '(repeat symbol) - :group 'align) + :type '(repeat symbol)) (defcustom align-perl-modes '(perl-mode) "A list of modes where Perl syntax is to be seen." - :type '(repeat symbol) - :group 'align) + :type '(repeat symbol)) (defcustom align-lisp-modes '(emacs-lisp-mode lisp-interaction-mode lisp-mode scheme-mode) "A list of modes whose syntax resembles Lisp." - :type '(repeat symbol) - :group 'align) + :type '(repeat symbol)) (defcustom align-tex-modes '(tex-mode plain-tex-mode latex-mode slitex-mode) "A list of modes whose syntax resembles TeX (and family)." - :type '(repeat symbol) - :group 'align) + :type '(repeat symbol)) (defcustom align-text-modes '(text-mode outline-mode) "A list of modes whose content is plain text." - :type '(repeat symbol) - :group 'align) + :type '(repeat symbol)) (defcustom align-dq-string-modes (append align-lisp-modes align-c++-modes align-perl-modes '(python-base-mode vhdl-mode)) "A list of modes where double quoted strings should be excluded." - :type '(repeat symbol) - :group 'align) + :type '(repeat symbol)) (defcustom align-sq-string-modes (append align-perl-modes '(python-base-mode)) "A list of modes where single quoted strings should be excluded." - :type '(repeat symbol) - :group 'align) + :type '(repeat symbol)) (defcustom align-open-comment-modes (append align-lisp-modes align-c++-modes align-perl-modes @@ -227,8 +212,7 @@ align-open-comment-modes "A list of modes with a single-line comment syntax. These are comments as in Lisp, which have a beginning, but end with the line (i.e., `comment-end' is an empty string)." - :type '(repeat symbol) - :group 'align) + :type '(repeat symbol)) (defcustom align-region-separate "^\\s-*[{}]?\\s-*$" "Select the method by which alignment sections will be separated. @@ -317,11 +301,10 @@ align-region-separate :type '(choice (const :tag "Entire region is one section" entire) (const :tag "Align by contiguous groups" group) -; (const largest) + ;; (const largest) (regexp :tag "Regexp defines section boundaries") (function :tag "Function defines section boundaries")) - :risky t - :group 'align) + :risky t) (defvar align-rules-list-type '(repeat @@ -714,8 +697,7 @@ align-rules-list (see the documentation of that variable for possible values), and any separation argument passed to `align'." :type align-rules-list-type - :risky t - :group 'align) + :risky t) (defvar align-exclude-rules-list-type '(repeat @@ -784,8 +766,7 @@ align-exclude-rules-list "A list describing text that should be excluded from alignment. See the documentation for `align-rules-list' for more info." :type align-exclude-rules-list-type - :risky t - :group 'align) + :risky t) ;;; Internal Variables: @@ -836,8 +817,7 @@ align-vhdl-rules-list (regexp . "\\(\\s-+\\)use\\s-+entity"))) "Alignment rules for `vhdl-mode'. See `align-rules-list' for more info." :type align-rules-list-type - :risky t - :group 'align) + :risky t) (make-obsolete-variable 'align-vhdl-rules-list "no longer used." "27.1") (defun align-set-vhdl-rules () -- 2.44.0 --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Mon Apr 08 07:11:18 2024 Received: (at 70262) by debbugs.gnu.org; 8 Apr 2024 11:11:18 +0000 Received: from localhost ([127.0.0.1]:45376 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rtmuD-0001aS-OQ for submit@debbugs.gnu.org; Mon, 08 Apr 2024 07:11:17 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:44868) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rtmuC-0001Zz-52 for 70262@debbugs.gnu.org; Mon, 08 Apr 2024 07:11:16 -0400 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 1rtmtz-0003X7-EJ for 70262@debbugs.gnu.org; Mon, 08 Apr 2024 07:11:03 -0400 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=NxmvzjRn1Ui1KcH3fFSvYlkB401gu+nvri/CzsX5EMw=; b=GbTyDn3p4x6L btWcVbOTMmzB6a6u68npbOLbC7V8nWfeERwaeMrrM+Biv20VSaI+VcB/aRxmgLcUVNWiCmFuDWiuD w+qj20eijDy69YEq1UEEnj75IaY/C5hX4hcW+ThKWy/D37txrXrLAwKo/URpm4k4am1/kAUIW7KBC KryXs1I35HAbfOUil5R0oHFNT/M1kTC08NOmbj74GwNpwFwAE5hYbiUwCeTnixKrI7SrTChJ25KGs ALNKfqf6EVVAVGsqFX1khG3E6BW61bkdLVqbyswfM9VcEHV17JIPA8UnZsrHD6GAIT+4Ie2ljA3Ga hXXJLjSDQ5fqmkZRkfWiRg==; Date: Mon, 08 Apr 2024 14:10:59 +0300 Message-Id: <86edbgyurg.fsf@gnu.org> From: Eli Zaretskii To: Arash Esbati In-Reply-To: (message from Arash Esbati on Sun, 07 Apr 2024 21:18:48 +0200) Subject: Re: bug#70262: 30.0.50; [PATCH] align.el: Delete unnecessary :group keywords References: X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 70262 Cc: 70262@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: -3.3 (---) > From: Arash Esbati > Date: Sun, 07 Apr 2024 21:18:48 +0200 > > this is a trivial patch removing all ":group 'align" entries from the > custom forms. Thanks, feel free to install on the master branch. From debbugs-submit-bounces@debbugs.gnu.org Mon Apr 08 08:33:02 2024 Received: (at 70262-done) by debbugs.gnu.org; 8 Apr 2024 12:33:02 +0000 Received: from localhost ([127.0.0.1]:45535 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rtoBK-0007hj-II for submit@debbugs.gnu.org; Mon, 08 Apr 2024 08:33:02 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:49432) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rtoBI-0007h3-FL for 70262-done@debbugs.gnu.org; Mon, 08 Apr 2024 08:33:01 -0400 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 1rtoB5-0000it-PN for 70262-done@debbugs.gnu.org; Mon, 08 Apr 2024 08:32:47 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:References:In-Reply-To:Subject:To: From; bh=yp4AirzkUiQcrdV/arqmCgZKfNWswbTBWISUqY1wKM4=; b=N8EIUCH/qoKGLud24pVz 6F1KQC58kx3UHTNfJFbp0DYBFMBxY0pbM/728CZSukH2Ioj0vRcTgnvOqafAPDodmI1bJsXaiHHwM k69TzxYtsZhJMrSV4BUOZain0Ytk7y1TMnBZSFspVmW9Gu2Qi1iw1p/EkGy236QGeCfsXxAKpklG5 +dB3C10THYcReVjlXG/Pa7ia/cUVv5ZKeXgJ0xSFyPamB4DPXQOdaU/zNSRR6aO6JApezheEwxyQl h6UK5qYbYeWC6vJPJSgzNxEbL/HwRDdw5FeN3RQbSiVhuxQnRx5qvjIA7k9Wt7F778pae0UfhUEiR OXzrMirNih0S9g==; From: Arash Esbati To: Eli Zaretskii Subject: Re: bug#70262: 30.0.50; [PATCH] align.el: Delete unnecessary :group keywords In-Reply-To: <86edbgyurg.fsf@gnu.org> (Eli Zaretskii's message of "Mon, 08 Apr 2024 14:10:59 +0300") References: <86edbgyurg.fsf@gnu.org> Date: Mon, 08 Apr 2024 14:32:44 +0200 Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 70262-done Cc: 70262-done@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: -3.3 (---) Eli Zaretskii writes: > Thanks, feel free to install on the master branch. Thanks, pushed and closing. Best, Arash From unknown Sat Aug 09 04:58:03 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, 07 May 2024 11:24:09 +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