aboutsummaryrefslogtreecommitdiffstats
path: root/cgit.c
diff options
context:
space:
mode:
authorLars Hjemli <hjemli@gmail.com>2010-07-18 15:03:30 +0200
committerLars Hjemli <hjemli@gmail.com>2010-07-18 15:03:30 +0200
commit6821d8ea4a64d15b8f284d1af01ab184ef1e76c3 (patch)
treee9d2ea0555f801653cc9caa382e33afc7c5d804d /cgit.c
parentMerge branch 'lh/macros' (diff)
parentui-diff: Add link to ignore/show whitespace changes in diffs (diff)
downloadcgit-6821d8ea4a64d15b8f284d1af01ab184ef1e76c3.tar.xz
cgit-6821d8ea4a64d15b8f284d1af01ab184ef1e76c3.zip
Merge branch 'jh/ignorews'
Diffstat (limited to 'cgit.c')
-rw-r--r--cgit.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/cgit.c b/cgit.c
index fde0757..c263872 100644
--- a/cgit.c
+++ b/cgit.c
@@ -260,6 +260,8 @@ static void querystring_cb(const char *name, const char *value)
ctx.qry.show_all = atoi(value);
} else if (!strcmp(name, "context")) {
ctx.qry.context = atoi(value);
+ } else if (!strcmp(name, "ignorews")) {
+ ctx.qry.ignorews = atoi(value);
}
}