aboutsummaryrefslogtreecommitdiffhomepage
path: root/coq/coq-seq-compile.el
diff options
context:
space:
mode:
authorGravatar Hendrik Tews <hendrik@askra.de>2016-11-26 14:37:58 +0100
committerGravatar Hendrik Tews <hendrik@askra.de>2016-11-30 22:13:06 +0100
commitfbd995b819f13d3895f8a45476802e2d7172fc52 (patch)
tree5e013acfdfd366439cd1ad74616eacb8033cca72 /coq/coq-seq-compile.el
parenta6dd1c2622f085233b21bebe1ed4c70dedebb182 (diff)
style change: use when for if coq-debug-auto-compilation
Diffstat (limited to 'coq/coq-seq-compile.el')
-rw-r--r--coq/coq-seq-compile.el32
1 files changed, 16 insertions, 16 deletions
diff --git a/coq/coq-seq-compile.el b/coq/coq-seq-compile.el
index 062ef4e1..a1b2d30a 100644
--- a/coq/coq-seq-compile.el
+++ b/coq/coq-seq-compile.el
@@ -77,17 +77,17 @@ break."
(nconc (coq-include-options coq-load-path (file-name-directory lib-src-file) (coq--pre-v85))
(list lib-src-file)))
coqdep-status coqdep-output)
- (if coq--debug-auto-compilation
- (message "call coqdep arg list: %S" coqdep-arguments))
+ (when coq--debug-auto-compilation
+ (message "call coqdep arg list: %S" coqdep-arguments))
(with-temp-buffer
(setq coqdep-status
(apply 'call-process
coq-dependency-analyzer nil (current-buffer) nil
coqdep-arguments))
(setq coqdep-output (buffer-string)))
- (if coq--debug-auto-compilation
- (message "coqdep status %s, output on %s: %s"
- coqdep-status lib-src-file coqdep-output))
+ (when coq--debug-auto-compilation
+ (message "coqdep status %s, output on %s: %s"
+ coqdep-status lib-src-file coqdep-output))
(if (or
(not (eq coqdep-status 0))
(string-match coq-coqdep-error-regexp coqdep-output))
@@ -118,16 +118,16 @@ Display errors in buffer `coq--compile-response-buffer'."
coqc-status)
(coq-init-compile-response-buffer
(mapconcat 'identity (cons coq-compiler coqc-arguments) " "))
- (if coq--debug-auto-compilation
- (message "call coqc arg list: %s" coqc-arguments))
+ (when coq--debug-auto-compilation
+ (message "call coqc arg list: %s" coqc-arguments))
(setq coqc-status
(apply 'call-process
coq-compiler nil coq--compile-response-buffer t coqc-arguments))
- (if coq--debug-auto-compilation
- (message "compilation %s exited with %s, output |%s|"
- src-file coqc-status
- (with-current-buffer coq--compile-response-buffer
- (buffer-string))))
+ (when coq--debug-auto-compilation
+ (message "compilation %s exited with %s, output |%s|"
+ src-file coqc-status
+ (with-current-buffer coq--compile-response-buffer
+ (buffer-string))))
(unless (eq coqc-status 0)
(coq-display-compile-response-buffer)
(let ((terminated-text (if (numberp coqc-status)
@@ -178,8 +178,8 @@ OBJ have identical modification times."
(progn
(coq-seq-compile-library src)
'just-compiled)
- (if coq--debug-auto-compilation
- (message "Skip compilation of %s" src))
+ (when coq--debug-auto-compilation
+ (message "Skip compilation of %s" src))
obj-time))))
(defun coq-seq-make-lib-up-to-date (coq-obj-hash span lib-obj-file)
@@ -202,8 +202,8 @@ function."
(let ((result (gethash lib-obj-file coq-obj-hash)))
(if result
(progn
- (if coq--debug-auto-compilation
- (message "Checked %s already" lib-obj-file))
+ (when coq--debug-auto-compilation
+ (message "Checked %s already" lib-obj-file))
result)
;; lib-obj-file has not been checked -- do it now
(message "Check %s" lib-obj-file)