summaryrefslogtreecommitdiff
path: root/src/compiler/GF
diff options
context:
space:
mode:
authorJohn J. Camilleri <john@digitalgrammars.com>2021-07-07 13:04:09 +0200
committerJohn J. Camilleri <john@digitalgrammars.com>2021-07-07 13:04:09 +0200
commit0954b4cbab2564c4d35043a87fddc9aee26b4166 (patch)
tree6dc7a61f11fe83adc06a2e9f120f6d23c7f7a9b1 /src/compiler/GF
parentf2e52d6f2c2bc90febceebdea0268b40ea37476c (diff)
More cabal file cleanup. Remove some more tabs from Haskell source.
Diffstat (limited to 'src/compiler/GF')
-rw-r--r--src/compiler/GF/Interactive2.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/GF/Interactive2.hs b/src/compiler/GF/Interactive2.hs
index 6967309b9..d429b4530 100644
--- a/src/compiler/GF/Interactive2.hs
+++ b/src/compiler/GF/Interactive2.hs
@@ -437,7 +437,7 @@ wc_type = cmd_name
x2 = takeWhile (\c -> isIdent c || isSpace c || c == '-' || c == '=' || c == '"') x1
cmd = case [x | (x,cs) <- RP.readP_to_S pCommand x2, all isSpace cs] of
- [x] -> Just x
+ [x] -> Just x
_ -> Nothing
isIdent c = c == '_' || c == '\'' || isAlphaNum c