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:
parent
7cb41b3278
commit
03d3db39f6
@ -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'."
|
||||
|
Loading…
Reference in New Issue
Block a user