diff options
| author | Juri Linkov | 2008-07-31 17:18:33 +0000 |
|---|---|---|
| committer | Juri Linkov | 2008-07-31 17:18:33 +0000 |
| commit | 03d3db39f630bbdf393ce8219da35a0efa3bb16b (patch) | |
| tree | 50790698a553b6f40a9b4bf61e6303017409fba9 | |
| parent | 7cb41b327809c7011a6e3aefbf511db085f80b30 (diff) | |
| download | emacs-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.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." | |||
| 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'." |