Possibly fixed a bug in magiedit

This commit is contained in:
Andrew Pamment 2016-12-07 17:41:57 +10:00
parent 5c2bdceba0
commit f4c234073a

View File

@ -509,7 +509,7 @@ char *message_editor() {
} }
} }
} else { } else if (ch.chKeyPress != '\n') {
if (position_x >= strlen(line)) { if (position_x >= strlen(line)) {
strncat(line, &ch.chKeyPress, 1); strncat(line, &ch.chKeyPress, 1);
} else { } else {
@ -705,7 +705,7 @@ int main(int argc, char **argv)
} }
quote_line_count = 0; quote_line_count = 0;
if (!noquote) { if (!noquote) {
fgets(buffer, 74, fptr); fgets(buffer, 73, fptr);
while (!feof(fptr)) { while (!feof(fptr)) {
for (i=strlen(buffer) - 1; i > 0; i--) { for (i=strlen(buffer) - 1; i > 0; i--) {
if (buffer[i] != '\r' && buffer[i] != '\n') { if (buffer[i] != '\r' && buffer[i] != '\n') {
@ -727,7 +727,7 @@ int main(int argc, char **argv)
quote_line_count++; quote_line_count++;
fgets(buffer, 74, fptr); fgets(buffer, 73, fptr);
} }
fclose(fptr); fclose(fptr);
unlink(msgtmp); unlink(msgtmp);