factor: whitespace

locals-and-roots
Doug Coleman 2016-06-22 15:12:08 -07:00
parent 24bfc798fc
commit a2fb2be28e
4 changed files with 4 additions and 4 deletions

View File

@ -566,4 +566,4 @@ CONSTANT: factor-lexing-rules {
! { char: \r [ read-token-or-whitespace ] }
! { char: \n [ read-token-or-whitespace ] }
! { f [ f like dup [ make-tag-literal ] when ] }
! } case ; inline
! } case ; inline

View File

@ -79,4 +79,4 @@ IN: modern.paths
: all-paths ( -- seq )
vocab-roots get [ [ ".factor" tail? ] find-all-files ] map concat
reject-some-paths ;
reject-some-paths ;

View File

@ -2,7 +2,7 @@
! See http://factorcode.org/license.txt for BSD license.
USING: accessors assocs calendar continuations destructors io
io.encodings.binary io.servers io.sockets
io.streams.duplex fry kernel locals math math.ranges
io.streams.duplex fry kernel locals math math.ranges
namespaces prettyprint random sequences sets splitting threads
tools.continuations ;
IN: managed-server

View File

@ -1,6 +1,6 @@
! Copyright (C) 2005, 2009 Daniel Ehrenberg
! See http://factorcode.org/license.txt for BSD license.
USING: xml.data xml.writer tools.test fry xml xml.syntax kernel
USING: xml.data xml.writer tools.test fry xml xml.syntax kernel
xml.writer.private io.streams.string xml.traversal sequences
io.encodings.utf8 io.files io.files.temp accessors io.directories math
math.parser ;