Fixing bug with import privileged clashing with import hidden.
This caused a rather nasty name-leak, where catch from the prelude
was being given the type of catch from Exceptions.
Now, when you use import privileged Prelude (...) you also
need to do import Prelude, allowing you the option of
import Prelude hiding (...).
A bucket load of wibbles will follow in various libraries,
implementing this restriction.
* included in the distribution.
*
* $RCSfile: storage.c,v $
- * $Revision: 1.55 $
- * $Date: 2000/03/24 14:32:03 $
+ * $Revision: 1.56 $
+ * $Date: 2000/03/30 09:02:12 $
* ------------------------------------------------------------------------*/
#include "hugsbasictypes.h"
ObjectCode* oc2;
Int i;
assert(isModule(m));
-fprintf(stderr, "NUKEMODULE `%s'\n", textToStr(module(m).text));
+/*fprintf(stderr, "NUKEMODULE `%s'\n", textToStr(module(m).text)); */
oc = module(m).object;
while (oc) {
oc2 = oc->next;