]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/vocabs/git/git.factor
change ERROR: words from throw-foo back to foo.
[factor.git] / extra / vocabs / git / git.factor
index 1792fdc3cb36b6b48525627613411f3f702d5bf1..8e1c30fae34d51a309183daa8480b30ce2be3a5a 100644 (file)
@@ -23,6 +23,6 @@ ERROR: git-revision-not-found path ;
 : use-vocab-rev ( vocab-name rev -- )
     [ create-vocab vocab-source-path dup ] dip git-object-id
     [ [ input-stream get swap parse-stream call( -- ) ] with-git-object-stream ]
-    [ throw-git-revision-not-found ] if* ;
+    [ git-revision-not-found ] if* ;
 
 SYNTAX: USE-REV: scan-token scan-token use-vocab-rev ;