summaryrefslogtreecommitdiff
path: root/Build/source/utils/asymptote/runsystem.in
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/utils/asymptote/runsystem.in')
-rw-r--r--Build/source/utils/asymptote/runsystem.in5
1 files changed, 2 insertions, 3 deletions
diff --git a/Build/source/utils/asymptote/runsystem.in b/Build/source/utils/asymptote/runsystem.in
index 7414e62f011..5fba04870b7 100644
--- a/Build/source/utils/asymptote/runsystem.in
+++ b/Build/source/utils/asymptote/runsystem.in
@@ -18,7 +18,7 @@ using namespace settings;
using vm::bpinfo;
using vm::bplist;
using vm::getPos;
-using vm::default_t;
+using vm::Default;
using vm::nullfunc;
using vm::item;
using absyntax::runnable;
@@ -26,7 +26,6 @@ using absyntax::runnable;
typedef callable callableBp;
namespace run {
-extern default_t def;
extern string emptystring;
}
@@ -65,7 +64,7 @@ void breakpoint(stack *Stack, runnable *r)
Stack->push<string>(curPos.filename());
Stack->push<Int>((Int) curPos.Line());
Stack->push<Int>((Int) curPos.Column());
- Stack->push(r ? r : item(run::def));
+ Stack->push(r ? r : vm::Default);
atBreakpointFunction->call(Stack); // returns a string
} else Stack->push<string>("");
}