1
0
mirror of https://github.com/rkd77/elinks.git synced 2025-02-02 15:09:23 -05:00

Revert "[head] addcrlf". Refs #281

This reverts commit 90d4f17031b20dcac4e04541e09c07dd70e7efb4.
This commit is contained in:
Witold Filipczyk 2024-01-06 09:33:40 +01:00
parent 0b7cdab108
commit 389df54184

View File

@ -1291,7 +1291,6 @@ xsp:
if (he) {
add_to_string(head, "Charset: ");
add_to_string(head, he);
add_crlf_to_string(head);
mem_free(he);
}
@ -1301,7 +1300,6 @@ xsp:
if (!he) goto se;
add_to_string(head, he);
add_crlf_to_string(head);
mem_free(he);
/* FIXME (bug 784): cp is the terminal charset;
@ -1310,10 +1308,10 @@ xsp:
if (c) {
add_to_string(head, ": ");
add_to_string(head, c);
add_crlf_to_string(head);
mem_free(c);
mem_free(c);
}
add_crlf_to_string(head);
goto se;
}