aboutsummaryrefslogtreecommitdiffhomepage
path: root/coq/coq-compile-common.el
diff options
context:
space:
mode:
Diffstat (limited to 'coq/coq-compile-common.el')
-rw-r--r--coq/coq-compile-common.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/coq/coq-compile-common.el b/coq/coq-compile-common.el
index 4c24a28b..1f31c1d3 100644
--- a/coq/coq-compile-common.el
+++ b/coq/coq-compile-common.el
@@ -508,15 +508,15 @@ compiled with ``-quick'' or not."
(eq (compare-strings coq-library-directory 0 nil
lib-obj-file 0 (length coq-library-directory))
t)
- (if coq--debug-auto-compilation
- (message "Ignore lib file %s" lib-obj-file))
+ (when coq--debug-auto-compilation
+ (message "Ignore lib file %s" lib-obj-file))
t)
(if (some
(lambda (dir-regexp) (string-match dir-regexp lib-obj-file))
coq-compile-ignored-directories)
(progn
- (if coq--debug-auto-compilation
- (message "Ignore %s" lib-obj-file))
+ (when coq--debug-auto-compilation
+ (message "Ignore %s" lib-obj-file))
t)
nil)))