diff options
| author | Roland McGrath | 1994-02-08 22:46:59 +0000 |
|---|---|---|
| committer | Roland McGrath | 1994-02-08 22:46:59 +0000 |
| commit | ed9c1473199b4dba4c4c9188211cbbd189652a1b (patch) | |
| tree | e56b125434ba0383ec0de492b11c158afca7c5fa | |
| parent | c6f7982f439b770453e6aaee93053b9a11db61cb (diff) | |
| download | emacs-ed9c1473199b4dba4c4c9188211cbbd189652a1b.tar.gz emacs-ed9c1473199b4dba4c4c9188211cbbd189652a1b.zip | |
*** empty log message ***
| -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) | |||
| 86 | /* Like strcmp but ignore differences in case. */ | 86 | /* Like strcmp but ignore differences in case. */ |
| 87 | 87 | ||
| 88 | static int | 88 | static int |
| 89 | strcasecmp (s1, s2) | 89 | my_strcasecmp (s1, s2) |
| 90 | char *s1, *s2; | 90 | char *s1, *s2; |
| 91 | { | 91 | { |
| 92 | while (1) | 92 | while (1) |
| @@ -671,7 +671,7 @@ find_in_table (type, table) | |||
| 671 | { | 671 | { |
| 672 | widget_creation_entry* cur; | 672 | widget_creation_entry* cur; |
| 673 | for (cur = table; cur->type; cur++) | 673 | for (cur = table; cur->type; cur++) |
| 674 | if (!strcasecmp (type, cur->type)) | 674 | if (!my_strcasecmp (type, cur->type)) |
| 675 | return cur->function; | 675 | return cur->function; |
| 676 | return NULL; | 676 | return NULL; |
| 677 | } | 677 | } |