From 049fc8f16c2e2fa5faf82404ea4f0585030fcb5a Mon Sep 17 00:00:00 2001 From: nothere Date: Tue, 10 Aug 2004 19:50:13 +0000 Subject: [PATCH] "strchr" -> "my_strchr". --- src/files.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/files.c b/src/files.c index c68d1431e..63275ba4c 100644 --- a/src/files.c +++ b/src/files.c @@ -957,13 +957,13 @@ cptr process_pref_file_expr(char **sp, char *fp) { /* Accept all printables except spaces and brackets */ #ifdef JP - while ((iskanji(*s) || isprint(*s)) && !strchr(" []", *s)) + while ((iskanji(*s) || isprint(*s)) && !my_strchr(" []", *s)) { if (iskanji(*s)) s++; s++; } #else - while (isprint(*s) && !strchr(" []", *s)) ++s; + while (isprint(*s) && !my_strchr(" []", *s)) ++s; #endif /* Extract final and Terminate */ -- 2.11.0