]> gitweb.factorcode.org Git - factor.git/commitdiff
backticks: remove workaround for simple-tokenizer bug.
authorJohn Benediktsson <mrjbq7@gmail.com>
Mon, 20 Apr 2015 03:49:32 +0000 (20:49 -0700)
committerJohn Benediktsson <mrjbq7@gmail.com>
Mon, 20 Apr 2015 03:49:32 +0000 (20:49 -0700)
extra/backticks/backticks.factor

index eeb5f17096fb1287e27314df54a417a34ba19a12..4f5104781989c71594875a5a15eb54d9c46da588 100644 (file)
@@ -1,10 +1,9 @@
 ! Copyright (C) 2015 John Benediktsson
 ! See http://factorcode.org/license.txt for BSD license
-USING: fry io io.encodings.utf8 io.launcher multiline sequences
-unicode.categories ;
+USING: fry io io.encodings.utf8 io.launcher multiline sequences ;
 IN: backticks
 
 SYNTAX: `
-    "`" parse-multiline-string [ blank? ] trim
+    "`" parse-multiline-string
     '[ _ utf8 [ contents ] with-process-reader ]
     append! ;