diff options
author | Camil Staps | 2017-07-19 08:54:31 +0000 |
---|---|---|
committer | Camil Staps | 2017-07-19 08:54:31 +0000 |
commit | 3bab68554bfd593ae1fb777a84c28ccfde779539 (patch) | |
tree | 384db4b2c7c0d54ef4042ae174ee6f5d8291ada2 | |
parent | Add +, -, *, /, %, ~ (diff) |
Allow / in filenames
-rw-r--r-- | sil.icl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -106,7 +106,7 @@ where ) isFilename :: (String -> Bool) - isFilename = all (\c -> isAlphanum c || isMember c ['.']) o fromString + isFilename = all (\c -> isAlphanum c || isMember c ['./']) o fromString finish :: !*File !*File !*World -> *World finish io err w |