aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHendrik Tews2011-02-28 10:15:07 +0000
committerHendrik Tews2011-02-28 10:15:07 +0000
commita3e4178ee1690e5f5b8d417877463b98c8186220 (patch)
tree19cb6dfec4755aa76774bf2b29632d504e171851
parent6a9d3058e006dd826203262105adc604091326b8 (diff)
- fixed XXX'es in coq.el
-rw-r--r--coq/coq.el11
1 files changed, 7 insertions, 4 deletions
diff --git a/coq/coq.el b/coq/coq.el
index 68243bb0..6c59bda7 100644
--- a/coq/coq.el
+++ b/coq/coq.el
@@ -959,7 +959,6 @@ This is specific to `coq-mode'."
;; - Bug: coq not running for the first comment after switching
;; - modify behavior of locked ancestors, see proof-span-read-only
;; - fix problem with partial library names
-;; - fix places marked with XXX
;; user options and variables
@@ -1240,12 +1239,16 @@ is up-to-date."
(eq (compare-strings coq-library-directory 0 nil
lib-obj-file 0 (length coq-library-directory))
t)
- (message "Ignore lib file %s" lib-obj-file) ; XXX
+ (if 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)
- (message "Ignore %s" lib-obj-file) ;XXX
+ (progn
+ (if coq-debug-auto-compilation
+ (message "Ignore %s" lib-obj-file))
+ t)
nil)))
(defun coq-library-src-of-obj-file (lib-obj-file)
@@ -1452,7 +1455,7 @@ function."
(message "Checked %s already" lib-obj-file))
result)
;; lib-obj-file has not been check -- do it now
- (message "Check %s" lib-obj-file) ;XXX
+ (message "Check %s" lib-obj-file)
(if (coq-compile-ignore-file lib-obj-file)
;; return minimal time for ignored files
(setq result '(0 0))