# HG changeset patch # User Mikael Berthe # Date 1319370954 -7200 # Node ID 7f235c928661d38af1ba30c2ae2a2f13be3e3f79 # Parent be04d7241ef66b98f76a441b4073a074d82c37bc littre: allow character ç diff -r be04d7241ef6 -r 7f235c928661 mcbot/cmds/littre.lua --- a/mcbot/cmds/littre.lua Sun Oct 23 13:54:17 2011 +0200 +++ b/mcbot/cmds/littre.lua Sun Oct 23 13:55:54 2011 +0200 @@ -4,7 +4,7 @@ function littre.cmd (args) if not args then return nil, "Give me a word, please" end -- Be careful as we pass it as an argument to a shell command - local word = string.match(args, "^([%wàäâéèëêïîöôùüû]+)[%s%?%.%!]*$") + local word = string.match(args, "^([%wàäâéèëêïîöôùüûç]+)[%s%?%.%!]*$") if not word then return nil, "Can you repeat please?" end local cmd = "/usr/bin/sdcv "..word.." 2> /dev/null"