aboutsummaryrefslogtreecommitdiff
diff refs
from: back
to: back
| flip
diff options
context:
space:
mode:
-rw-r--r--cgit.c2
-rw-r--r--cgit.h1
-rw-r--r--ui-atom.c4
3 files changed, 1 insertions, 6 deletions
diff --git a/cgit.c b/cgit.c
index ed2be64..9305d0a 100644
--- a/cgit.c
+++ b/cgit.c
@@ -250,8 +250,6 @@ static void querystring_cb(const char *name, const char *value)
ctx.qry.period = xstrdup(value);
} else if (!strcmp(name, "ss")) {
ctx.qry.ssdiff = atoi(value);
- } else if (!strcmp(name, "all")) {
- ctx.qry.show_all = atoi(value);
}
}
diff --git a/cgit.h b/cgit.h
index 478aebb..cd4af72 100644
--- a/cgit.h
+++ b/cgit.h
@@ -145,7 +145,6 @@ struct cgit_query {
char *sort;
int showmsg;
int ssdiff;
- int show_all;
};
struct cgit_config {
diff --git a/ui-atom.c b/ui-atom.c
index 9f049ae..808b2d0 100644
--- a/ui-atom.c
+++ b/ui-atom.c
@@ -85,9 +85,7 @@ void cgit_print_atom(char *tip, char *path, int max_count)
struct rev_info rev;
int argc = 2;
- if (ctx.qry.show_all)
- argv[1] = "--all";
- else if (!tip)
+ if (!tip)
argv[1] = ctx.qry.head;
if (path) {