Updates from 0.2.1 into 0.2.1-inu-1.5

This commit is contained in:
Akinori Ito
2001-11-09 04:59:17 +00:00
parent 68a07bf03b
commit 6c63633545
246 changed files with 32763 additions and 21814 deletions

View File

@@ -14,7 +14,7 @@ historyBuffer(Hist * hist)
Strcat_charp(src, "<ol>\n");
if (hist && hist->list) {
for (item = hist->list->last; item; item = item->prev) {
q = htmlquote_str((char *)item->ptr);
q = html_quote((char *)item->ptr);
Strcat_charp(src, "<li><a href=\"");
Strcat_charp(src, q);
Strcat_charp(src, "\">");
@@ -44,7 +44,7 @@ loadHistory(Hist * hist)
Strremovetrailingspaces(line);
if (line->length == 0)
continue;
pushHist(hist, line->ptr);
pushHist(hist, url_quote(line->ptr));
}
fclose(f);
}