Fixed quote initials with extra space in it

This commit is contained in:
Michiel Broek
2001-12-12 21:46:55 +00:00
parent 358424d169
commit 2e2208bb97
3 changed files with 7 additions and 2 deletions

View File

@@ -756,7 +756,7 @@ void Reply_Email(int IsReply)
x = TRUE;
j = 0;
for (i = 0; i < strlen(to); i++) {
if (x) {
if (x && isalpha(to[i])) {
qin[j] = to[i];
j++;
x = FALSE;

View File

@@ -1317,7 +1317,7 @@ void Reply_Msg(int IsReply)
x = TRUE;
j = 0;
for (i = 0; i < strlen(to); i++) {
if (x) {
if (x && isalpha(to[i])) {
qin[j] = to[i];
j++;
x = FALSE;