summaryrefslogtreecommitdiff
path: root/src/GF
diff options
context:
space:
mode:
authorbringert <bringert@cs.chalmers.se>2006-03-31 15:31:33 +0000
committerbringert <bringert@cs.chalmers.se>2006-03-31 15:31:33 +0000
commit8dfa27bb6d8a42a112b329fc845db538141af592 (patch)
tree48b8b9ff0679bdd5ed32e74c33b0ebd7627dff52 /src/GF
parentae30eca84446f8968341275518fe263660ec0534 (diff)
Added colon to the list of punctuation chars in GSL generation.
Diffstat (limited to 'src/GF')
-rw-r--r--src/GF/Speech/PrGSL.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/GF/Speech/PrGSL.hs b/src/GF/Speech/PrGSL.hs
index b204ae6c3..2c06d13d1 100644
--- a/src/GF/Speech/PrGSL.hs
+++ b/src/GF/Speech/PrGSL.hs
@@ -69,7 +69,7 @@ showToken :: Token -> String
showToken t = map toLower (prt t)
isPunct :: Char -> Bool
-isPunct c = c `elem` "-_.;.,?!()[]{}"
+isPunct c = c `elem` "-_.:;.,?!()[]{}"
comments :: [String] -> ShowS
comments = unlinesS . map (showString . ("; " ++))