diff options
author | Juri Linkov <juri@jurta.org> | 2008-07-31 17:18:33 +0000 |
---|---|---|
committer | Juri Linkov <juri@jurta.org> | 2008-07-31 17:18:33 +0000 |
commit | 03d3db39f630bbdf393ce8219da35a0efa3bb16b (patch) | |
tree | 50790698a553b6f40a9b4bf61e6303017409fba9 /lisp/filesets.el | |
parent | 7cb41b327809c7011a6e3aefbf511db085f80b30 (diff) | |
download | emacs-03d3db39f630bbdf393ce8219da35a0efa3bb16b.tar.gz |
(filesets-cmd-isearch-getargs): Check if the
variable `files' is bound to avoid warnings.
Diffstat (limited to 'lisp/filesets.el')
-rw-r--r-- | lisp/filesets.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/filesets.el b/lisp/filesets.el index a8d70df36d5..b3b021d5695 100644 --- a/lisp/filesets.el +++ b/lisp/filesets.el @@ -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'." |