]> gitweb.factorcode.org Git - factor.git/commitdiff
debugger: `` '' -> “ ”
authorJoe Groff <arcata@gmail.com>
Tue, 6 Apr 2010 20:56:35 +0000 (13:56 -0700)
committerJoe Groff <arcata@gmail.com>
Tue, 6 Apr 2010 20:56:35 +0000 (13:56 -0700)
basis/debugger/debugger.factor

index 468b5dcf2b5ab512445b2b820fcead73a1d08078..8856871f1126c37e3f4d0719a5ccd3628772debb 100644 (file)
@@ -270,20 +270,20 @@ M: no-current-vocab summary
 
 M: no-word-error summary
     name>>
-    "No word named ``"
-    "'' found in current vocabulary search path" surround ;
+    "No word named "
+    " found in current vocabulary search path" surround ;
 
 M: no-word-error error. summary print ;
 
 M: no-word-in-vocab summary
     [ vocab>> ] [ word>> ] bi
-    [ "No word named ``" % % "'' found in ``" % % "'' vocabulary" % ] "" make ;
+    [ "No word named “" % % "” found in “" % % "” vocabulary" % ] "" make ;
 
 M: no-word-in-vocab error. summary print ;
 
 M: ambiguous-use-error summary
     words>> first name>>
-    "More than one vocabulary defines a word named ``" "''" surround ;
+    "More than one vocabulary defines a word named “" "”" surround ;
 
 M: ambiguous-use-error error. summary print ;