1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-25 01:05:37 +00:00

[head] addcrlf

This commit is contained in:
Witold Filipczyk 2023-07-27 11:20:53 +02:00
parent 0d2b40b72e
commit 90d4f17031

View File

@ -1281,6 +1281,7 @@ xsp:
if (he) {
add_to_string(head, "Charset: ");
add_to_string(head, he);
add_crlf_to_string(head);
mem_free(he);
}
@ -1290,6 +1291,7 @@ 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;
@ -1298,10 +1300,10 @@ xsp:
if (c) {
add_to_string(head, ": ");
add_to_string(head, c);
mem_free(c);
add_crlf_to_string(head);
mem_free(c);
}
add_crlf_to_string(head);
goto se;
}