mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
[head] addcrlf
This commit is contained in:
parent
0d2b40b72e
commit
90d4f17031
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user