Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
e8afa273
...
e8afa2739cb95c3821f9c92fb89f24e6b9f9f584
authored
2003-01-31 15:02:38 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
New command line option --debug.
1 parent
0aa6344c
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletions
mh/fmtcheck.c
mh/fmtcheck.c
View file @
e8afa27
...
...
@@ -29,7 +29,7 @@ static struct argp_option options[] = {
{
"form"
,
'F'
,
N_
(
"FILE"
),
0
,
N_
(
"Read format from given file"
)},
{
"format"
,
't'
,
N_
(
"FORMAT"
),
0
,
N_
(
"Use this format string"
)},
{
"dump"
,
'd'
,
NULL
,
0
,
N_
(
"Dump the listing of compiled format code"
)},
{
"debug"
,
'D'
,
NULL
,
0
,
N_
(
"Enable parser debugging output"
),},
{
0
}
};
...
...
@@ -76,6 +76,10 @@ opt_handler (int key, char *arg, void *unused)
action
=
action_dump
;
break
;
case
'D'
:
mh_format_debug
(
1
);
break
;
default:
return
1
;
}
...
...
Please
register
or
sign in
to post a comment