summaryrefslogtreecommitdiffabout
path: root/ui-atom.c
Side-by-side diff
Diffstat (limited to 'ui-atom.c') (more/less context) (ignore whitespace changes)
-rw-r--r--ui-atom.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/ui-atom.c b/ui-atom.c
index 808b2d0..9f049ae 100644
--- a/ui-atom.c
+++ b/ui-atom.c
@@ -82,13 +82,15 @@ void cgit_print_atom(char *tip, char *path, int max_count)
char *host;
const char *argv[] = {NULL, tip, NULL, NULL, NULL};
struct commit *commit;
struct rev_info rev;
int argc = 2;
- if (!tip)
+ if (ctx.qry.show_all)
+ argv[1] = "--all";
+ else if (!tip)
argv[1] = ctx.qry.head;
if (path) {
argv[argc++] = "--";
argv[argc++] = path;
}