Skip to content

Commit

Permalink
Change _CoqProject separator settings
Browse files Browse the repository at this point in the history
According to the code of coq_makefile, `\r` is not considered
white-space in _CoqProject.
(https://github.com/coq/coq/blob/a7f51315db5d70888af3b96a579eb799a2b45ca9/lib/coqProject_file.ml#L84)
  • Loading branch information
Columbus240 committed Aug 6, 2024
1 parent 05e3dc3 commit 39f967e
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit 39f967e

Please sign in to comment.