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
63b6ef8e
...
63b6ef8e260ceafa98b71474226cb85038c0927d
authored
2003-03-11 14:13:23 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(main): Use 'draft' by default
1 parent
40ca6e37
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletions
mh/whatnow.c
mh/whatnow.c
View file @
63b6ef8
...
...
@@ -95,7 +95,13 @@ main (int argc, char **argv)
mh_argp_parse
(
argc
,
argv
,
0
,
options
,
mh_option
,
args_doc
,
doc
,
opt_handler
,
NULL
,
&
index
);
argc
-=
index
;
argv
+=
index
;
if
(
argc
)
wh_env
.
draftfile
=
argv
[
0
];
else
wh_env
.
draftfile
=
mh_draft_name
();
wh_env
.
file
=
wh_env
.
draftfile
;
wh_env
.
msg
=
getenv
(
"mhaltmsg"
);
return
mh_whatnow
(
&
wh_env
,
initial_edit
);
}
...
...
Please
register
or
sign in
to post a comment