diff src/symtab.cc @ 4214:b9317f3973ec

[project @ 2002-12-04 04:57:01 by jwe]
author jwe
date Wed, 04 Dec 2002 04:57:01 +0000
parents e96f52432059
children ccfdb55c8156
line wrap: on
line diff
--- a/src/symtab.cc	Wed Dec 04 04:19:15 2002 +0000
+++ b/src/symtab.cc	Wed Dec 04 04:57:01 2002 +0000
@@ -394,9 +394,11 @@
       if (--definition->count <= 0)
 	delete definition;
 
-      definition = context.pop ();
+      definition = context.top ();
+      context.pop ();
 
-      linked_to_global = global_link_context.pop ();
+      linked_to_global = global_link_context.top ();
+      global_link_context.pop ();
     }
 }