In pcrs_get_delimiter(), do not use delimiters ouside the ASCII range
[privoxy.git] / pcrs.c
diff --git a/pcrs.c b/pcrs.c
index 344d755..52d7b90 100644 (file)
--- a/pcrs.c
+++ b/pcrs.c
@@ -1,4 +1,4 @@
-const char pcrs_rcs[] = "$Id: pcrs.c,v 1.39 2012/03/09 16:23:50 fabiankeil Exp $";
+const char pcrs_rcs[] = "$Id: pcrs.c,v 1.40 2012/03/09 17:55:50 fabiankeil Exp $";
 /*********************************************************************
  *
  * File        :  $Source: /cvsroot/ijbswa/current/pcrs.c,v $
@@ -997,7 +997,7 @@ char pcrs_get_delimiter(const char *string)
     * Some characters that are unlikely to
     * be part of pcrs replacement strings.
     */
-   char delimiters[] = "><§#+*~%^°-:;µ!@";
+   char delimiters[] = "><#+*~%^-:;!@";
    char *d = delimiters;
 
    /* Take the first delimiter that isn't part of the string */