about summary refs log tree commit diff stats
path: root/about.c
diff options
context:
space:
mode:
authorMarco Peereboom <marco@conformal.com>2012-01-04 13:34:55 -0600
committerMarco Peereboom <marco@conformal.com>2012-01-04 13:34:55 -0600
commit9f0f6cf393e501fc2a3b9985b80011cca8d26334 (patch)
treed0a509d42eeddcf72dcd214e3375493948ca1bc6 /about.c
parent00d0d9a8a48c3e4329f64898419344299f73d3e7 (diff)
downloadxombrero-9f0f6cf393e501fc2a3b9985b80011cca8d26334.tar.gz
fix page titles starting with a #, from raphael
Diffstat (limited to 'about.c')
-rw-r--r--about.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/about.c b/about.c
index b4ece8d..530e661 100644
--- a/about.c
+++ b/about.c
@@ -971,7 +971,7 @@ xtp_page_fl(struct tab *t, struct karg *args)
 	for (i = 1;;) {
 		if ((title = fparseln(f, &len, &lineno, delim, 0)) == NULL)
 			break;
-		if (strlen(title) == 0 || title[0] == '#') {
+		if (strlen(title) == 0) {
 			free(title);
 			title = NULL;
 			continue;