fix end of stream marker to handle languages like en_GB

when using language like 'en_GB' aspell reports it as 'en' in response
to $$l
This commit is contained in:
Brian Gough 2015-03-12 14:41:23 +00:00
parent a91faaf55c
commit 01d5322ef3

View file

@ -27,7 +27,7 @@ class ASpellWorker
@callback err, []
output = ""
endMarker = new RegExp("^(#{language}|Error)$", "m")
endMarker = new RegExp("^[a-z][a-z]", "m")
@pipe.stdout.on "data", (chunk) =>
output = output + chunk
# We receive the language code from Aspell as the end of data marker