adtdefs.c: add debugging code to verify when a specific predicate is added.

modules.* implemente module_property/2:class(_)
prism: comment unneeded labels.
This commit is contained in:
Vitor Santos Costa
2014-06-17 15:06:23 +01:00
committed by Vítor Santos Costa
parent e8f2c37000
commit 87d7c90171
4 changed files with 32 additions and 14 deletions

View File

@@ -148,11 +148,11 @@ IDNUM id_table_retrieve(const ID_TABLE *this, TERM term)
IDNUM id_table_register(ID_TABLE *this, TERM term)
{
BPULONG hash;
// BPULONG hash;
IDNUM i;
term = term_pool_register(this->store, term);
hash = (BPULONG)(term);
//hash = (BPULONG)(term);
i = id_table_search(this, term);
if (i == ID_NONE) {