aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/source
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2007-02-10 03:17:44 +0000
committerThomas Grill <xovo@users.sourceforge.net>2007-02-10 03:17:44 +0000
commit7f72dc4bdc62c937e48751056153bea2c61494bb (patch)
tree125b1f55592f5d58e306d1bf8d0fd9c4d94f9924 /externals/grill/flext/source
parentf1426746f28f101e73dbd282c8283cbf039c74dd (diff)
small fix with help file name
fix for Max/MSP svn path=/trunk/; revision=7413
Diffstat (limited to 'externals/grill/flext/source')
-rwxr-xr-xexternals/grill/flext/source/fllib.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/externals/grill/flext/source/fllib.cpp b/externals/grill/flext/source/fllib.cpp
index 80a8aae4..3b196f55 100755
--- a/externals/grill/flext/source/fllib.cpp
+++ b/externals/grill/flext/source/fllib.cpp
@@ -57,8 +57,12 @@ static const char *extract(const char *name,int ix = 0)
while(*t == ALIASSLASH && t > tmp) --t;
*t = 0;
#endif
- if(ix < 0)
- return del+1;
+ if(ix < 0) {
+ // eat white space in front of help definition
+ ++del;
+ while(*del && isspace(*del)) ++del;
+ return del;
+ }
strncpy(tmp,name,del-name);
tmp[del-name] = 0;