1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-24 10:38:38 +00:00

(filesets-cmd-isearch-getargs): Check if the

variable `files' is bound to avoid warnings.
This commit is contained in:
Juri Linkov 2008-07-31 17:18:33 +00:00
parent 7cb41b3278
commit 03d3db39f6

View File

@ -1688,7 +1688,7 @@ Replace <file-name> or <<file-name>> with filename."
(defun filesets-cmd-isearch-getargs ()
"Get arguments for `multi-isearch-files' and `multi-isearch-files-regexp'."
(list files))
(and (boundp 'files) (list files)))
(defun filesets-cmd-shell-command-getargs ()
"Get arguments for `filesets-cmd-shell-command'."