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
9a91dbd7
...
9a91dbd7bb0775dc9f5bef19c5df1a8ca1fd9d5a
authored
2001-10-14 08:03:07 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Handle ~x escape properly.
1 parent
9ee63092
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
mail/send.c
mail/send.c
View file @
9a91dbd
...
...
@@ -197,6 +197,11 @@ mail_send0 (struct send_environ *env, int save_to)
fprintf
(
env
->
file
,
"%s
\n
"
,
buf
+
1
);
else
if
(
buf
[
1
]
==
'.'
)
done
=
1
;
else
if
(
buf
[
1
]
==
'x'
)
{
int_cnt
=
2
;
done
=
1
;
}
else
{
int
argc
;
...
...
Please
register
or
sign in
to post a comment