Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2010-04-24 02:08:11 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-04-24 02:08:11 +0400
commit62c0ac2dc9462b1e6e6b8b271cbcd100886a83e9 (patch)
treeb59162fcad8b5d7a98ea68263887fd0eb749d52b /source/blender/blenlib/BLI_fnmatch.h
parent28e8c04795e40af2a0b2fbc2885e6ab97d4daace (diff)
unix style outliner name wildcards *.*, Any.???, etc (using fnmatch), also removed last beos reference :)
Diffstat (limited to 'source/blender/blenlib/BLI_fnmatch.h')
-rw-r--r--source/blender/blenlib/BLI_fnmatch.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/BLI_fnmatch.h b/source/blender/blenlib/BLI_fnmatch.h
index 2c122104f1f..1dffb285451 100644
--- a/source/blender/blenlib/BLI_fnmatch.h
+++ b/source/blender/blenlib/BLI_fnmatch.h
@@ -47,7 +47,7 @@ extern "C" {
#define FNM_PATHNAME (1 << 0) /* No wildcard can ever match `/'. */
#define FNM_NOESCAPE (1 << 1) /* Backslashes don't quote special chars. */
#define FNM_PERIOD (1 << 2) /* Leading `.' is matched only explicitly. */
-
+
#if !defined (_POSIX_C_SOURCE) || _POSIX_C_SOURCE < 2 || defined (_GNU_SOURCE)
#define FNM_FILE_NAME FNM_PATHNAME /* Preferred GNU name. */
#define FNM_LEADING_DIR (1 << 3) /* Ignore `/...' after a match. */