Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Fredrik Wieczerkowski
curry-tools
Commits
3b6d4cbb
Commit
3b6d4cbb
authored
Oct 24, 2017
by
Michael Hanus
Browse files
Small bug fix
parent
1e209fc1
Changes
1
Hide whitespace changes
Inline
Side-by-side
cpm/vendor/opt-parse/src/OptParse.curry
View file @
3b6d4cbb
...
...
@@ -321,7 +321,7 @@ renderCommandLine [] = []
renderCommandLine ((Val s):as) = s ++ " " ++ (renderCommandLine as)
renderCommandLine ((FlagWithValue n v):as) =
"--" ++ n ++ "=" ++ v ++ " " ++ (renderCommandLine as)
renderCommandLine ((Flag n):as) = "-" ++ n ++ " " ++ (renderCommandLine as)
renderCommandLine ((Flag n):as) = "-
-
" ++ n ++ " " ++ (renderCommandLine as)
--- Further parses a parsed command line using a parser spec.
---
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment