]> gitweb.factorcode.org Git - factor.git/commitdiff
debugger: fix error summary for not-found-in-roots.
authorJohn Benediktsson <mrjbq7@gmail.com>
Fri, 1 Jun 2012 23:00:59 +0000 (16:00 -0700)
committerJohn Benediktsson <mrjbq7@gmail.com>
Fri, 1 Jun 2012 23:00:59 +0000 (16:00 -0700)
basis/debugger/debugger.factor

index c0109f7aef4629c754ecf3fd69e2fd2d6783773a..8080c6853f4640df85bb6a743dc3fb0012f3b885 100755 (executable)
@@ -353,7 +353,8 @@ M: bad-literal-tuple summary drop "Bad literal tuple" ;
 
 M: check-mixin-class summary drop "Not a mixin class" ;
 
-M: not-found-in-roots summary drop "Cannot resolve vocab: path" ;
+M: not-found-in-roots summary
+    path>> "Cannot resolve vocab: " prepend ;
 
 M: wrong-values summary drop "Quotation's stack effect does not match call site" ;