diff options
author | Arun Isaac | 2022-06-29 15:29:06 +0530 |
---|---|---|
committer | Arun Isaac | 2022-06-29 15:30:26 +0530 |
commit | 2741ad828111a0bd13e6e970f4d414ceae7ec0fb (patch) | |
tree | 38a6153531f2b93f527996bc66367a441543e35e /bin | |
parent | d9c130eb1119153874abdcdc7d4e8e84580b40ca (diff) | |
download | tissue-2741ad828111a0bd13e6e970f4d414ceae7ec0fb.tar.gz tissue-2741ad828111a0bd13e6e970f4d414ceae7ec0fb.tar.lz tissue-2741ad828111a0bd13e6e970f4d414ceae7ec0fb.zip |
search: Return all results by default.
* tissue/search.scm (search-fold, search-map): Set default value of
#:maximum-items argument to all documents.
* bin/tissue (tissue-search): Do not pass #:maximum-items to
search-map.
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/tissue | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -88,10 +88,7 @@ Search issues using SEARCH-QUERY. (lambda (db) (call-with-output-pipe (lambda (port) - (search-map (cut print <> <> port) - db - (string-join args) - #:maximum-items (database-document-count db))) + (search-map (cut print <> <> port) db (string-join args))) (or (getenv "PAGER") "less") "--raw")))))) |