]> gitweb.factorcode.org Git - factor.git/commitdiff
debugger: Fix error message.
authorDoug Coleman <doug.coleman@gmail.com>
Sat, 30 Mar 2013 00:37:31 +0000 (17:37 -0700)
committerDoug Coleman <doug.coleman@gmail.com>
Sat, 30 Mar 2013 00:37:31 +0000 (17:37 -0700)
basis/debugger/debugger.factor

index fd375650dc0963c4d96b818f808c0940c89e7a16..09d215b136e77b356738af054bbda7cc063aa449 100755 (executable)
@@ -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 ;