Closed Columbus240 closed 2 months ago
According to the code of coq_makefile, ~\r is not considered white-space in _CoqProject. But \t is.~ \t is considered white-space. Source: https://github.com/coq/coq/blob/a7f51315db5d70888af3b96a579eb799a2b45ca9/lib/coqProject_file.ml#L84
\r
\t
The second commit of this PR removes a duplicate function definition.
\r seems to be treated the same as \t and in that code?
Oh! I'm sorry for the mistake. Maybe just add \t then?
According to the code of coq_makefile, ~
\r
is not considered white-space in _CoqProject. But\t
is.~\t
is considered white-space. Source: https://github.com/coq/coq/blob/a7f51315db5d70888af3b96a579eb799a2b45ca9/lib/coqProject_file.ml#L84The second commit of this PR removes a duplicate function definition.