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
d2572413
...
d2572413734c291a2bf8cabb7b633ca0145f0bd9
authored
2002-09-27 13:27:24 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Fixed args_doc string. Use new mh_msgset_parse() syntax.
1 parent
6768eee7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
mh/rmm.c
mh/rmm.c
View file @
d257241
...
...
@@ -21,7 +21,7 @@
const
char
*
argp_program_version
=
"rmm ("
PACKAGE_STRING
")"
;
static
char
doc
[]
=
"GNU MH rmm"
;
static
char
args_doc
[]
=
"[+folder]
[message
s]"
;
static
char
args_doc
[]
=
"[+folder]
[msg
s]"
;
/* GNU options */
static
struct
argp_option
options
[]
=
{
...
...
@@ -73,7 +73,7 @@ main (int argc, char **argv)
mbox
=
mh_open_folder
(
current_folder
,
0
);
mh_msgset_parse
(
mbox
,
&
msgset
,
argc
-
index
,
argv
+
index
);
mh_msgset_parse
(
mbox
,
&
msgset
,
argc
-
index
,
argv
+
index
,
"cur"
);
status
=
mh_iterate
(
mbox
,
&
msgset
,
rmm
,
NULL
);
...
...
Please
register
or
sign in
to post a comment