Function: locate-default-make-command-line
locate-default-make-command-line is a byte-compiled function defined
in locate.el.gz.
Signature
(locate-default-make-command-line SEARCH-STRING)
Source Code
;; Defined in /usr/src/emacs/lisp/locate.el.gz
;; Functions
(defun locate-default-make-command-line (search-string)
(unless (executable-find locate-command)
(error "Can't find the %s command" locate-command))
(list locate-command search-string))