[Gd-chatter] r11219 - trunk/fundev/sources/runtime-manager/debugger-manager
hannes at gwydiondylan.org
hannes at gwydiondylan.org
Fri Mar 2 01:05:57 CET 2007
Author: hannes
Date: Fri Mar 2 01:05:55 2007
New Revision: 11219
Modified:
trunk/fundev/sources/runtime-manager/debugger-manager/queries.dylan
Log:
Bug: 5816
Reading remote tables was broken, because the symbol for empty table entries
was not found. Explicitly passing library Dylan fixes this, and this makes
setting breakpoints in subprojects work again.
Modified: trunk/fundev/sources/runtime-manager/debugger-manager/queries.dylan
==============================================================================
--- trunk/fundev/sources/runtime-manager/debugger-manager/queries.dylan (original)
+++ trunk/fundev/sources/runtime-manager/debugger-manager/queries.dylan Fri Mar 2 01:05:55 2007
@@ -381,9 +381,11 @@
// dylan library that indicates an unused key in the table. We need to
// know this value.
+ let dylan-lib = application.application-dylan-library;
let empty-entry = resolve-dylan-name(application,
"$table-entry-empty",
- $dylan-internal);
+ $dylan-internal,
+ library: dylan-lib);
// Make sure that last-index, if it was not supplied, has a meaningful
// numeric value of some kind.
More information about the chatter
mailing list