diff options
author | Morgan Smith | 2023-06-04 19:25:39 -0400 |
---|---|---|
committer | Arun Isaac | 2023-06-06 22:58:41 +0100 |
commit | 61836cac52fb047a6f376ed985f35615f21e530f (patch) | |
tree | a763f1ffc862a921e25fcf41f3912cd139d5fd23 /bin | |
parent | d63ba6ff74145b8b9b5b4df73ab1b6bb971b30e9 (diff) | |
download | tissue-61836cac52fb047a6f376ed985f35615f21e530f.tar.gz tissue-61836cac52fb047a6f376ed985f35615f21e530f.tar.lz tissue-61836cac52fb047a6f376ed985f35615f21e530f.zip |
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 <arunisaac@systemreboot.net>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/tissue | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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")))))) |