diff options
author | 2014-06-30 13:06:25 -0400 | |
---|---|---|
committer | 2014-06-30 13:06:25 -0400 | |
commit | 03b0b8932ea1c41854a487f9fa6555def9b59462 (patch) | |
tree | 491743468203ee0b49729d323a1f224aaf4ef669 /core/lfs_ext.lua | |
parent | b8a5a15f6171cbedc9007e5b05757aa4b72ff742 (diff) | |
download | textadept-03b0b8932ea1c41854a487f9fa6555def9b59462.tar.gz textadept-03b0b8932ea1c41854a487f9fa6555def9b59462.zip |
Condensed manual and API documentation into single files.
Diffstat (limited to 'core/lfs_ext.lua')
-rw-r--r-- | core/lfs_ext.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/lfs_ext.lua b/core/lfs_ext.lua index a1d9c523..b43d8cc5 100644 --- a/core/lfs_ext.lua +++ b/core/lfs_ext.lua @@ -44,7 +44,7 @@ end -- Iterates over all files and sub-directories in directory *dir*, calling -- function *f* with each file found. -- Files passed to *f* do not match any pattern in string or table *filter*, --- and, unless *exclude_FILTER* is `true`, `FILTER` as well. A filter table +-- and, unless *exclude_FILTER* is `true`, `lfs.FILTER` as well. A filter table -- contains Lua patterns that match filenames to exclude, an optional `folders` -- sub-table that contains patterns matching directories to exclude, and an -- optional `extensions` sub-table that contains raw file extensions to exclude. @@ -55,7 +55,7 @@ end -- `false` explicitly, iteration ceases. -- @param filter Optional filter for files and directories to exclude. -- @param exclude_FILTER Optional flag indicating whether or not to exclude the --- default filter `FILTER` in the search. If `false`, adds `FILTER` to +-- default filter `lfs.FILTER` in the search. If `false`, adds `lfs.FILTER` to -- *filter*. -- The default value is `false` to include the default filter. -- @param recursing Utility flag indicating whether or not this function has |