From 261bed7a522c34b77a47143725ae1f16f548abd4 Mon Sep 17 00:00:00 2001 From: Kyle Meyer Date: Sun, 16 Aug 2020 21:33:42 -0400 Subject: b4: Use a clearer variable name Message-Id: <20200817013343.15615-5-kyle@kyleam.com> --- piem-b4.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/piem-b4.el b/piem-b4.el index 3381b01..537abed 100644 --- a/piem-b4.el +++ b/piem-b4.el @@ -56,17 +56,17 @@ (make-temp-file "piem-b4-" t))) (root (concat outdir "m")) (mbox-thread (concat root "-piem")) - (custom-p nil)) + (local-mbox-p nil)) (when-let ((fn (run-hook-with-args-until-success 'piem-mid-to-thread-functions mid))) (with-temp-file mbox-thread (funcall fn) (unless (= (point-max) 1) - (setq custom-p t)))) + (setq local-mbox-p t)))) ;; Move to the coderepo so that we pick up any b4 configuration ;; from there. (apply #'piem-process-call coderepo piem-b4-b4-executable "am" - (and custom-p + (and local-mbox-p (concat "--use-local-mbox=" mbox-thread)) (concat "--outdir=" outdir) (concat "--mbox-name=m") -- cgit v1.2.3