Skip to content

Commit fcd6940

Browse files
committed
changed the dafault state of print-definition and print-pattern of the parser to False
1 parent 89aa5ec commit fcd6940

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

kore/app/parser/Main.hs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -102,11 +102,11 @@ commandLineParser =
102102
<> help "The name of the main module in the Kore definition"
103103
<> value "" )
104104
<*> enableDisableFlag "print-definition"
105-
True False True
106-
"printing parsed definition to stdout [default enabled]"
105+
True False False
106+
"printing parsed definition to stdout [default disabled]"
107107
<*> enableDisableFlag "print-pattern"
108-
True False True
109-
"printing parsed pattern to stdout [default enabled]"
108+
True False False
109+
"printing parsed pattern to stdout [default disabled]"
110110
<*> enableDisableFlag "verify"
111111
True False True
112112
"Verify well-formedness of parsed definition [default enabled]"

0 commit comments

Comments
 (0)