Skip to content

Commit

Permalink
make CoqProject parsing failure noticeable
Browse files Browse the repository at this point in the history
(maybe an 'error' would be even better?)
  • Loading branch information
gasche committed Oct 3, 2023
1 parent 11c1a5f commit d2d2e8a
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 @@ -553,7 +553,7 @@ If ARITY is nil, return SWITCH."
(cond
((not arity) switch)
((< (length raw-args) arity)
(warn "Invalid _CoqProject: not enough arguments for %S" switch)
(message "Invalid _CoqProject: not enough arguments for %S" switch)
switch)
(t
(let ((arguments (cl-subseq raw-args 0 arity)))
Expand Down

0 comments on commit d2d2e8a

Please sign in to comment.