From 61836cac52fb047a6f376ed985f35615f21e530f Mon Sep 17 00:00:00 2001 From: Morgan Smith Date: Sun, 4 Jun 2023 19:25:39 -0400 Subject: bin: Preserve 0th command line argument when using search alias. There is literally no reason to do this as it's never used but it is technically more correct. * bin/tissue (main): Preserve 0th command line argument when using search alias. Signed-off-by: Arun Isaac --- bin/tissue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/tissue b/bin/tissue index afad9e4..63f3ff7 100755 --- a/bin/tissue +++ b/bin/tissue @@ -548,5 +548,5 @@ Pull latest from upstream repositories. (exit #f))) args)))))) ;; tissue is an alias for `tissue search' - ((_) - (main '("tissue" "search")))))) + ((tissue) + (main (list tissue "search")))))) -- cgit v1.2.3