Merge branch 'jh/context-lines'

Conflicts:
	cgit.c
	cgit.h
This commit is contained in:
Lars Hjemli
2010-06-22 16:16:12 +02:00
7 changed files with 34 additions and 8 deletions

2
cgit.c
View File

@ -258,6 +258,8 @@ static void querystring_cb(const char *name, const char *value)
ctx.qry.ssdiff = atoi(value);
} else if (!strcmp(name, "all")) {
ctx.qry.show_all = atoi(value);
} else if (!strcmp(name, "context")) {
ctx.qry.context = atoi(value);
}
}