From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mp10.migadu.com ([2001:41d0:403:4ea1::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by ms12 with LMTPS id VVafFrS5gWL4FQAAsNZ9tg (envelope-from ); Mon, 16 May 2022 02:40:52 +0000 Received: from out0.migadu.com ([2001:41d0:2:267::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by mp10.migadu.com with LMTPS id iNEVE7S5gWKakAAAG6o9tA (envelope-from ); Mon, 16 May 2022 04:40:52 +0200 X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kyleam.com; s=key1; t=1652668852; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=Oa9a7oeI712MiZ/RY+DvHLUKdhLmZOxPN6TR8qk2XYk=; b=Znus6dV6Nfrz6AqRh6NpaWV1K4uilKRxTVjL29HFvpn1XOFIC52KiHFinwirNU7KhZbLoV j4Y+kYm2Pcltyaq6vhvorE7EWgYFn5vKsJ4Mr/HHWKgQbhRsnnleoUozqAQIEgaXThU+sm RBqs+CzzubmoM2nmzo5thSngzW8VEUQ7i6fwNL847HcEG7fgPLJlumDWDJB5w4PJtbuZel Ly1jILvFJt3GDIUBqoiQH3gQpoWknvnoKOdrk/HOGsq7j3D86r16pnzNMLJyKAi7pXfnKM AZvDtmUjQVuYP39j7bbVzzsutrgjDJcBhVuAWs7MDmuI+0IAnakCqAvHJUN4Tg== From: Kyle Meyer To: piem@inbox.kyleam.com Subject: [PATCH 1/2] piem-b4-am: Move trailer-related options to dedicated section Date: Sun, 15 May 2022 22:40:40 -0400 Message-Id: <20220516024041.205178-2-kyle@kyleam.com> In-Reply-To: <20220516024041.205178-1-kyle@kyleam.com> References: <20220516024041.205178-1-kyle@kyleam.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: kyleam.com X-TUID: Uprblv+Nb8n8 The trailer-related options happen to be grouped together with the alphabetical sorting of the options setting, but the next commit will add a trailer option that breaks this pattern. Add a section to keep them together. --- piem-b4.el | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/piem-b4.el b/piem-b4.el index 5a1c2734..00085a30 100644 --- a/piem-b4.el +++ b/piem-b4.el @@ -233,12 +233,13 @@ (transient-define-prefix piem-b4-am () ;; Hide by default because it hard codes the URL. (7 "-l" "Add a lore.kernel.org/r/ to patches" "--add-link") ("-L" "Do not reroll partial series" "--no-partial-reroll") + (piem-b4-am:--use-version) + (piem-b4-am:--cherry-pick)] + ["Trailer options" ("-s" "Add my signed-off-by" "--add-my-sob") ("-S" "Apply trailers without checking email addresses" "--sloppy-trailers") ("-t" "Apply cover letter trailers" "--apply-cover-trailers") - ("-T" "Do not add trailers" "--no-add-trailers") - (piem-b4-am:--use-version) - (piem-b4-am:--cherry-pick)] + ("-T" "Do not add trailers" "--no-add-trailers")] ["Options for creating am-ready mboxes" ("-3" "Prepare for 3-way merge" "--prep-3way") ("-g" "Try to guess base" "--guess-base") -- 2.36.0