Commit 9a91dbd7 9a91dbd7bb0775dc9f5bef19c5df1a8ca1fd9d5a by Sergey Poznyakoff

Handle ~x escape properly.

1 parent 9ee63092
......@@ -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;
......