aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuri Linkov2008-07-31 17:18:33 +0000
committerJuri Linkov2008-07-31 17:18:33 +0000
commit03d3db39f630bbdf393ce8219da35a0efa3bb16b (patch)
tree50790698a553b6f40a9b4bf61e6303017409fba9
parent7cb41b327809c7011a6e3aefbf511db085f80b30 (diff)
downloademacs-03d3db39f630bbdf393ce8219da35a0efa3bb16b.tar.gz
emacs-03d3db39f630bbdf393ce8219da35a0efa3bb16b.zip
(filesets-cmd-isearch-getargs): Check if the
variable `files' is bound to avoid warnings.
-rw-r--r--lisp/filesets.el2
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."
1688 1688
1689(defun filesets-cmd-isearch-getargs () 1689(defun filesets-cmd-isearch-getargs ()
1690 "Get arguments for `multi-isearch-files' and `multi-isearch-files-regexp'." 1690 "Get arguments for `multi-isearch-files' and `multi-isearch-files-regexp'."
1691 (list files)) 1691 (and (boundp 'files) (list files)))
1692 1692
1693(defun filesets-cmd-shell-command-getargs () 1693(defun filesets-cmd-shell-command-getargs ()
1694 "Get arguments for `filesets-cmd-shell-command'." 1694 "Get arguments for `filesets-cmd-shell-command'."