aboutsummaryrefslogtreecommitdiff
path: root/piem-b4.el
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2020-08-16 21:33:42 -0400
committerKyle Meyer <kyle@kyleam.com>2020-08-17 20:23:21 -0400
commit261bed7a522c34b77a47143725ae1f16f548abd4 (patch)
treea01abbfc34b05cd945cf4b8a5acacb1e0f558a2b /piem-b4.el
parent8f81b7705afbec27264b0fe45e585619af3f9fd6 (diff)
downloadpiem-261bed7a522c34b77a47143725ae1f16f548abd4.tar.gz
b4: Use a clearer variable name
Diffstat (limited to 'piem-b4.el')
-rw-r--r--piem-b4.el6
1 files 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")