mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
*** empty log message ***
This commit is contained in:
parent
c6f7982f43
commit
ed9c147319
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue