Merge pull request #4567 from NixOS/make-auto-call-error-eval-error

Make missing auto-call arguments throw an eval error
This commit is contained in:
Eelco Dolstra 2021-02-22 16:35:52 +01:00 committed by GitHub
commit 8043bc6c8d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -17,7 +17,7 @@ MakeError(ThrownError, AssertionError);
MakeError(Abort, EvalError);
MakeError(TypeError, EvalError);
MakeError(UndefinedVarError, Error);
MakeError(MissingArgumentError, Error);
MakeError(MissingArgumentError, EvalError);
MakeError(RestrictedPathError, Error);