whitespace

This commit is contained in:
Joey Hess 2019-05-14 13:01:50 -04:00
parent 5cc0ee70c0
commit c1957b6aeb
No known key found for this signature in database
GPG key ID: DB12DB0FF05F8F38

View file

@ -109,7 +109,7 @@ commonTokens =
- Open and close parens are always treated as standalone tokens;
- otherwise tokens must be separated by whitespace. -}
tokenizeMatcher :: String -> [String]
tokenizeMatcher = filter (not . null ) . concatMap splitparens . words
tokenizeMatcher = filter (not . null) . concatMap splitparens . words
where
splitparens = segmentDelim (`elem` "()")