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) ...@@ -197,6 +197,11 @@ mail_send0 (struct send_environ *env, int save_to)
197 fprintf (env->file, "%s\n", buf+1); 197 fprintf (env->file, "%s\n", buf+1);
198 else if (buf[1] == '.') 198 else if (buf[1] == '.')
199 done = 1; 199 done = 1;
200 else if (buf[1] == 'x')
201 {
202 int_cnt = 2;
203 done = 1;
204 }
200 else 205 else
201 { 206 {
202 int argc; 207 int argc;
......