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
e32c2d80
...
e32c2d801b1f05fc423b597e6b44c66d4213bbc2
authored
2010-10-03 22:01:30 +0300
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Fix docstrings in mu.
1 parent
8f2e2f1f
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
mu/filter.c
mu/flt2047.c
mu/info.c
mu/query.c
mu/filter.c
View file @
e32c2d8
...
...
@@ -24,7 +24,7 @@
#include "mu.h"
static
char
filter_doc
[]
=
N_
(
"mu filter"
);
static
char
filter_args_doc
[]
=
N_
(
"
[OPTIONS]
NAME"
);
static
char
filter_args_doc
[]
=
N_
(
"NAME"
);
static
struct
argp_option
filter_options
[]
=
{
{
"encode"
,
'e'
,
NULL
,
0
,
N_
(
"encode the input (default)"
)
},
...
...
mu/flt2047.c
View file @
e32c2d8
...
...
@@ -24,7 +24,7 @@
#include "mu.h"
static
char
flt2047_doc
[]
=
N_
(
"mu 2047 - decode/encode message headers"
);
static
char
flt2047_args_doc
[]
=
N_
(
"[
OPTIONS] [
text]"
);
static
char
flt2047_args_doc
[]
=
N_
(
"[text]"
);
static
struct
argp_option
flt2047_options
[]
=
{
{
"encode"
,
'e'
,
NULL
,
0
,
N_
(
"encode the input (default)"
)
},
...
...
mu/info.c
View file @
e32c2d8
...
...
@@ -24,9 +24,9 @@
#include "mu.h"
static
char
info_doc
[]
=
N_
(
"mu info - print a list of configuration\
options used to build mailutils; optional arguments are interpreted\
options used to build mailutils; optional arguments are interpreted\
as a list of configuration options to check for."
);
static
char
info_args_doc
[]
=
N_
(
"[
OPTIONS] [
capa...]"
);
static
char
info_args_doc
[]
=
N_
(
"[capa...]"
);
static
struct
argp_option
info_options
[]
=
{
{
"verbose"
,
'v'
,
NULL
,
0
,
...
...
mu/query.c
View file @
e32c2d8
...
...
@@ -25,7 +25,7 @@
#include "mu.h"
static
char
query_doc
[]
=
N_
(
"mu query - query configuration values."
);
static
char
query_args_doc
[]
=
N_
(
"
[OPTIONS
]"
);
static
char
query_args_doc
[]
=
N_
(
"
keyword [keyword...
]"
);
char
*
file_name
;
int
verbose_option
;
...
...
Please
register
or
sign in
to post a comment