diff options
author | deva <deva> | 2005-07-22 15:56:31 +0000 |
---|---|---|
committer | deva <deva> | 2005-07-22 15:56:31 +0000 |
commit | 5d12a7bbc5d935e56afcea2d8af60e08ff82f02f (patch) | |
tree | 7fb62fdb1a22de74b57131fdb0735bb260d68c1f | |
parent | 8b25d0d6bcf33cc8123ef9ea78eff43b1d491178 (diff) |
Variable names can now contain numbers.
-rw-r--r-- | src/miav_config.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/miav_config.cc b/src/miav_config.cc index f59b6b3..98b75bf 100644 --- a/src/miav_config.cc +++ b/src/miav_config.cc @@ -31,6 +31,9 @@ /* * $Log$ + * Revision 1.12 2005/07/22 15:56:31 deva + * Variable names can now contain numbers. + * * Revision 1.11 2005/07/02 11:39:51 deva * Added some audiocode. * Moved libfame code out of mov_encoder @@ -187,7 +190,7 @@ _cfg* MiavConfig::parseLines(_cfg *cfg) if(strchr("=", *p)) break; - if(strchr("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz_", *p)) { + if(strchr("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789_", *p)) { *l = *p; l++; } else { |