aboutsummaryrefslogtreecommitdiffhomepage
path: root/common.c
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2005-12-09 13:32:25 +1000
committerGravatar axel <axel@liljencrantz.se>2005-12-09 13:32:25 +1000
commit2490da31cee4e4b363d8ee543ea0c48f2fb43062 (patch)
tree1df5b4b0cc53bc7e39981c4ab02f1cf4bc8a0c37 /common.c
parent092bb905696f3d7ab2276b5b2c42d589983931bd (diff)
Fix missing escapes for the [] characters
darcs-hash:20051209033225-ac50b-713c8d82887fb6de4de84c980f23a19039df0cb7.gz
Diffstat (limited to 'common.c')
-rw-r--r--common.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/common.c b/common.c
index a72cab85..7846ebf6 100644
--- a/common.c
+++ b/common.c
@@ -923,6 +923,8 @@ wchar_t *escape( const wchar_t *in,
case L'@':
case L'(':
case L')':
+ case L'[':
+ case L']':
case L'{':
case L'}':
case L'?':