diff options
author | Roland McGrath <roland@gnu.org> | 1994-02-08 22:46:59 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1994-02-08 22:46:59 +0000 |
commit | 5cffb36460c165b749f73fdc02e3eedb33f2398d (patch) | |
tree | 5bf95bd7ec1046e766c041a9784605a17db4c855 /lwlib/lwlib.c | |
parent | 3a6820e283973b727aea62c522f7f5f7f33323d0 (diff) | |
download | emacs-5cffb36460c165b749f73fdc02e3eedb33f2398d.tar.gz |
*** empty log message ***
Diffstat (limited to 'lwlib/lwlib.c')
-rw-r--r-- | lwlib/lwlib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lwlib/lwlib.c b/lwlib/lwlib.c index 2f1e93ec343..e6af711e697 100644 --- a/lwlib/lwlib.c +++ b/lwlib/lwlib.c @@ -86,7 +86,7 @@ safe_strdup (s) /* Like strcmp but ignore differences in case. */ static int -strcasecmp (s1, s2) +my_strcasecmp (s1, s2) char *s1, *s2; { while (1) @@ -671,7 +671,7 @@ find_in_table (type, table) { widget_creation_entry* cur; for (cur = table; cur->type; cur++) - if (!strcasecmp (type, cur->type)) + if (!my_strcasecmp (type, cur->type)) return cur->function; return NULL; } |