[svn:parrot] r47805 - trunk/src/pmc
NotFound at svn.parrot.org
NotFound at svn.parrot.org
Thu Jun 24 11:47:25 UTC 2010
Author: NotFound
Date: Thu Jun 24 11:47:24 2010
New Revision: 47805
URL: https://trac.parrot.org/parrot/changeset/47805
Log:
fix stupid mistake in Handle.isatty
Modified:
trunk/src/pmc/handle.pmc
Modified: trunk/src/pmc/handle.pmc
==============================================================================
--- trunk/src/pmc/handle.pmc Thu Jun 24 11:12:15 2010 (r47804)
+++ trunk/src/pmc/handle.pmc Thu Jun 24 11:47:24 2010 (r47805)
@@ -65,8 +65,7 @@
*/
METHOD isatty() {
- const INTVAL isatty = Parrot_io_is_tty(INTERP, SELF);
- RETURN(INTVAL isatty);
+ RETURN(INTVAL 0);
}
}
More information about the parrot-commits
mailing list