aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/py/source/pyargs.cpp
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2005-08-11 15:00:58 +0000
committerThomas Grill <xovo@users.sourceforge.net>2005-08-11 15:00:58 +0000
commit214bb7279f354adf1344376e26465046fc2581ce (patch)
tree0e0f32a27f274e4d6a09352146c7507472313dc5 /externals/grill/py/source/pyargs.cpp
parente1be380510a42f13ce1fd55a29705aaf9e8c8da8 (diff)
oops, include libraries for editing the scripts
some optimizations and py reload fix open editor for module file on "edit" message (or click) open editor for script under OS X added cygwin support svn path=/trunk/; revision=3417
Diffstat (limited to 'externals/grill/py/source/pyargs.cpp')
-rw-r--r--externals/grill/py/source/pyargs.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/externals/grill/py/source/pyargs.cpp b/externals/grill/py/source/pyargs.cpp
index d9a91e10..38cfbc54 100644
--- a/externals/grill/py/source/pyargs.cpp
+++ b/externals/grill/py/source/pyargs.cpp
@@ -18,7 +18,7 @@ static PyObject *MakePyAtom(const t_atom &at)
if(flext::IsSymbol(at))
return pySymbol_FromSymbol(flext::GetSymbol(at));
#if 1
- else if(flext::CanbeInt(at) || flext::CanbeFloat(at)) {
+ else if(flext::CanbeFloat(at)) {
// if a number can be an integer... let it be an integer!
int ival = flext::GetAInt(at);
double fval = flext::GetAFloat(at);