diff --git a/coq/coq-indent.el b/coq/coq-indent.el index e4f72c036..b1e3e0425 100644 --- a/coq/coq-indent.el +++ b/coq/coq-indent.el @@ -264,11 +264,6 @@ if found, to (point-max) otherwise. Return t if found, nil otherwise." (setq nbopen (- nbopen 1)))) (= nbopen 0)))) -(defun coq-looking-at-comment () - "Return non-nil if point is inside a comment." - (or (proof-inside-comment (point)) - (proof-inside-comment (+ 1 (point))))) - (defun coq-find-comment-start () "Go to the current comment start. If inside nested comments, go to the start of the outer most comment. diff --git a/coq/coq-system.el b/coq/coq-system.el index 28c9dce4f..ad65cc4bc 100644 --- a/coq/coq-system.el +++ b/coq/coq-system.el @@ -550,7 +550,7 @@ alreadyopen is t if buffer already existed." (find-file-noselect projectfile t t)))) (list projectbuffer projectbufferalreadyopen)))))) -(defconst coq--project-file-separator "[\r\n[:space:]]+") +(defconst coq--project-file-separator "[\r\t\n[:space:]]+") (defconst coq--makefile-switch-arities '(("-R" . 2)