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
08d8bd1b
...
08d8bd1bf9226a2c1384acee80e74059da828285
authored
2017-06-08 00:07:41 +0300
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Bugfix in mh_whatnow
1 parent
4e7f5b5c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletions
mh/mh_whatnow.c
mh/mh_whatnow.c
View file @
08d8bd1
...
...
@@ -420,10 +420,12 @@ edit (struct mh_whatnow_env *wh, int argc, char **argv, int *whs)
{
struct
mu_wordsplit
ws
;
extern
char
**
environ
;
ws
.
ws_env
=
(
char
const
**
)
environ
;
if
(
mu_wordsplit
(
ed
,
&
ws
,
MU_WRDSF_QUOTE
|
MU_WRDSF_SQUEEZE_DELIMS
|
MU_WRDSF_ENV
))
|
MU_WRDSF_ENV
|
MU_WRDSF_NOCMD
))
{
mu_error
(
_
(
"cannot split line `%s': %s"
),
ed
,
mu_wordsplit_strerror
(
&
ws
));
...
...
Please
register
or
sign in
to post a comment