summary refs log tree commit diff stats
path: root/compiler/configuration.nim
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/configuration.nim')
-rw-r--r--compiler/configuration.nim3
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/configuration.nim b/compiler/configuration.nim
index e84579fdb..f9f0e623c 100644
--- a/compiler/configuration.nim
+++ b/compiler/configuration.nim
@@ -181,6 +181,7 @@ const
 
 const
   errXMustBeCompileTime* = "'$1' can only be used in compile-time context"
+  errArgsNeedRunOption* = "arguments can only be given if the '--run' option is selected"
 
 #[
 errStringLiteralExpected: "string literal expected",
@@ -210,7 +211,7 @@ errUnknownCcompiler: "unknown C compiler: '$1'",
 errOnOrOffExpectedButXFound: "'on' or 'off' expected, but '$1' found",
 errOnOffOrListExpectedButXFound: "'on', 'off' or 'list' expected, but '$1' found",
 errGenOutExpectedButXFound: "'c', 'c++' or 'yaml' expected, but '$1' found",
-errArgsNeedRunOption: "arguments can only be given if the '--run' option is selected",
+,
 errInvalidMultipleAsgn: "multiple assignment is not allowed",
 errColonOrEqualsExpected: "':' or '=' expected, but found '$1'",
 errUndeclaredField: "undeclared field: '$1'",