Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Spot
Spot
Commits
f9e2143a
Commit
f9e2143a
authored
Mar 07, 2016
by
Alexandre Duret-Lutz
Browse files
* bin/autfilt.cc: Mention --accepting-word if its argument is bogus.
parent
e0186081
Changes
1
Hide whitespace changes
Inline
Side-by-side
bin/autfilt.cc
View file @
f9e2143a
...
...
@@ -367,8 +367,16 @@ parse_opt(int key, char* arg, struct argp_state*)
opt_accsets
=
parse_range
(
arg
,
0
,
std
::
numeric_limits
<
int
>::
max
());
break
;
case
OPT_ACC_WORD
:
opt
->
acc_words
.
push_back
(
spot
::
parse_word
(
arg
,
opt
->
dict
)
->
as_automaton
());
try
{
opt
->
acc_words
.
push_back
(
spot
::
parse_word
(
arg
,
opt
->
dict
)
->
as_automaton
());
}
catch
(
const
spot
::
parse_error
&
e
)
{
error
(
2
,
0
,
"failed to parse the argument of --accept-word:
\n
%s"
,
e
.
what
());
}
break
;
case
OPT_ARE_ISOMORPHIC
:
opt
->
are_isomorphic
=
read_automaton
(
arg
,
opt
->
dict
);
...
...
@@ -829,14 +837,6 @@ main(int argc, char** argv)
if
(
processor
.
run
())
return
2
;
}
catch
(
const
spot
::
parse_error
&
e
)
{
auto
err
=
e
.
what
();
if
(
strchr
(
err
,
'\n'
))
error
(
2
,
0
,
"
\n
%s"
,
err
);
else
error
(
2
,
0
,
"%s"
,
err
);
}
catch
(
const
std
::
runtime_error
&
e
)
{
error
(
2
,
0
,
"%s"
,
e
.
what
());
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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