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
f8834aef
...
f8834aef0820f19013af3ac91856480452224440
authored
2010-12-24 15:24:09 +0200
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Minor bugfix
* mail/escape.c (run_editor): Fix a typo.
1 parent
8c9829fd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
mail/escape.c
mail/escape.c
View file @
f8834ae
...
...
@@ -325,7 +325,7 @@ run_editor (char *ed, char *arg)
argv
[
0
]
=
ed
;
argv
[
1
]
=
arg
;
argv
[
2
]
=
NULL
;
return
mail_execute
(
1
,
arg
,
2
,
argv
);
return
mail_execute
(
1
,
ed
,
2
,
argv
);
}
static
int
...
...
Please
register
or
sign in
to post a comment