# HG changeset patch # User Juri Linkov # Date 1217524713 0 # Node ID b4faea6c6c0050891a4b5f2dae63a96c5e0369c9 # Parent f239a0459b5cb2bebe47a7ea6b13c7eed17fdd2f (filesets-cmd-isearch-getargs): Check if the variable `files' is bound to avoid warnings. diff -r f239a0459b5c -r b4faea6c6c00 lisp/filesets.el --- a/lisp/filesets.el Thu Jul 31 17:18:06 2008 +0000 +++ b/lisp/filesets.el Thu Jul 31 17:18:33 2008 +0000 @@ -1688,7 +1688,7 @@ (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'."