about summary refs log tree commit homepage
path: root/lib/PublicInbox/LeiQuery.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/PublicInbox/LeiQuery.pm')
-rw-r--r--lib/PublicInbox/LeiQuery.pm12
1 files changed, 4 insertions, 8 deletions
diff --git a/lib/PublicInbox/LeiQuery.pm b/lib/PublicInbox/LeiQuery.pm
index 9a6fa718..d637b1ae 100644
--- a/lib/PublicInbox/LeiQuery.pm
+++ b/lib/PublicInbox/LeiQuery.pm
@@ -34,9 +34,10 @@ sub lei_q {
         my @only = @{$opt->{only} // []};
         # --local is enabled by default unless --only is used
         # we'll allow "--only $LOCATION --local"
+        my $sto = $self->_lei_store(1);
+        my $lse = $sto->search;
         if ($opt->{'local'} //= scalar(@only) ? 0 : 1) {
-                my $sto = $self->_lei_store(1);
-                $lxs->prepare_external($sto->search);
+                $lxs->prepare_external($lse);
         }
         if (@only) {
                 for my $loc (@only) {
@@ -107,12 +108,7 @@ no query allowed on command-line with --stdin
                 PublicInbox::InputPipe::consume($self->{0}, \&qstr_add, $self);
                 return;
         }
-        # Consider spaces in argv to be for phrase search in Xapian.
-        # In other words, the users should need only care about
-        # normal shell quotes and not have to learn Xapian quoting.
-        $mset_opt{qstr} = join(' ', map {;
-                /\s/ ? (s/\A(\w+:)// ? qq{$1"$_"} : qq{"$_"}) : $_
-        } @argv);
+        $mset_opt{qstr} = $lse->query_argv_to_string($lse->git, \@argv);
         $lxs->do_query($self);
 }