From aaeeb414357ff75414ed705302c4624f083bd512 Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Thu, 24 May 2012 15:02:38 +0000 Subject: [PATCH] In pcrs_get_delimiter(), do not use delimiters ouside the ASCII range Fixes a clang complaint. --- pcrs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pcrs.c b/pcrs.c index 344d7550..52d7b906 100644 --- 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 */ -- 2.39.2