=== src/pdb.c
==
--- src/pdb.c (revision 133)
+++ src/pdb.c (local)
@@ -136,7 +136,6 @@
PDB_t *pdb;
void *yyscanner;
-do_yylex_init ( &yyscanner );
/*Parrot_set_config_hash(); TODO link with cfg */
debu
how about register_nci_method?
If we get consensus, I'll do the rename.
Kevin
On Fri Nov 10 15:53:07 2006, [EMAIL PROTECTED] wrote:
> enter_nci_method is poorly named. It sounds like it's entering the
> method to execute it. What it's actually doing is entering the method
> into a symbol tabl
"B" effectively turns a parrot STRING into a char**, passing a point to
the character array to the function. This is bad because c functions
shouldn't be modifying parrot STRINGs. B should really only be used as a
IN parameter, not as a OUT or a IN/OUT parameter.
I don't think that NCI really sup