* lisp/gnus/gnus-search.el (gnus-search-indexed-search-command): Use
append instead of nconc, nconc modifies destructively and makes a
mess.
query &optional _groups)
(let ((max (alist-get 'limit query)))
(with-slots (switches index-dir) engine
- (nconc
+ (append
(list "-q" ; don't be verbose
"-a" ; show all matches
"-s") ; use short format
(qstring string)
query &optional _groups)
(with-slots (switches config-file) engine
- (nconc `("--rcfile" ,config-file "-r")
+ (append `("--rcfile" ,config-file "-r")
switches
(when (alist-get 'thread query) (list "-t"))
(list qstring))))