Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change _CoqProject separator settings #784

Merged
merged 2 commits into from
Sep 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions coq/coq-indent.el
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion coq/coq-system.el
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
Loading