diff options
author | Kyle Meyer <kyle@kyleam.com> | 2020-08-16 21:33:42 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2020-08-17 20:23:21 -0400 |
commit | 261bed7a522c34b77a47143725ae1f16f548abd4 (patch) | |
tree | a01abbfc34b05cd945cf4b8a5acacb1e0f558a2b | |
parent | 8f81b7705afbec27264b0fe45e585619af3f9fd6 (diff) | |
download | piem-261bed7a522c34b77a47143725ae1f16f548abd4.tar.gz |
b4: Use a clearer variable name
Message-Id: <20200817013343.15615-5-kyle@kyleam.com>
-rw-r--r-- | piem-b4.el | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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") |