From cc9449c5a9bef6d94d93bae29bc2898a7ff30fbb Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Fri, 29 Mar 2013 17:37:31 -0700 Subject: [PATCH] debugger: Fix error message. --- basis/debugger/debugger.factor | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/basis/debugger/debugger.factor b/basis/debugger/debugger.factor index fd375650dc..09d215b136 100755 --- a/basis/debugger/debugger.factor +++ b/basis/debugger/debugger.factor @@ -112,8 +112,8 @@ HOOK: signal-error. os ( obj -- ) "Cannot resolve C library function" print "Symbol: " write dup third symbol>string print "Library: " write fourth . - "You are probably missing a library or the library path is wrong." . - "See http://concatenative.org/wiki/view/Factor/Requirements" . ; + "You are probably missing a library or the library path is wrong." print + "See http://concatenative.org/wiki/view/Factor/Requirements" print ; : stack-underflow. ( obj name -- ) write " stack underflow" print drop ;