aboutsummaryrefslogtreecommitdiffstats
path: root/src/macfns.c
diff options
context:
space:
mode:
authorJason Rumney2008-05-22 14:54:27 +0000
committerJason Rumney2008-05-22 14:54:27 +0000
commit0513110744d9ae86c12eea93466c6ff539ae3f77 (patch)
tree56e21e77d36415f46efd692e93d2e94edc350b15 /src/macfns.c
parent3b780338b9e8c0164763eac1fbd1727428c2a8e5 (diff)
downloademacs-0513110744d9ae86c12eea93466c6ff539ae3f77.tar.gz
emacs-0513110744d9ae86c12eea93466c6ff539ae3f77.zip
* dispextern.h, xfaces.c (xstrcasecmp): Renamed from xstricmp.
* dosfns.c, fileio.c, font.c, fontset.c, image.c, macfns.c: * macterm.c, process.c, w32.c, w32fns.c, w32proc.c, xfaces.c: * xfns.c, xfont.c: Callers changed.
Diffstat (limited to 'src/macfns.c')
-rw-r--r--src/macfns.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/macfns.c b/src/macfns.c
index 56320684a86..edc5a63441c 100644
--- a/src/macfns.c
+++ b/src/macfns.c
@@ -105,7 +105,7 @@ extern Lisp_Object Vwindow_system_version;
105int image_cache_refcount, dpyinfo_refcount; 105int image_cache_refcount, dpyinfo_refcount;
106#endif 106#endif
107 107
108#if 0 /* Use xstricmp instead. */ 108#if 0 /* Use xstrcasecmp instead. */
109/* compare two strings ignoring case */ 109/* compare two strings ignoring case */
110 110
111static int 111static int
@@ -1011,7 +1011,7 @@ mac_color_map_lookup (colorname)
1011 BLOCK_INPUT; 1011 BLOCK_INPUT;
1012 1012
1013 for (i = 0; i < sizeof (mac_color_map) / sizeof (mac_color_map[0]); i++) 1013 for (i = 0; i < sizeof (mac_color_map) / sizeof (mac_color_map[0]); i++)
1014 if (xstricmp (colorname, mac_color_map[i].name) == 0) 1014 if (xstrcasecmp (colorname, mac_color_map[i].name) == 0)
1015 { 1015 {
1016 ret = make_number (mac_color_map[i].color); 1016 ret = make_number (mac_color_map[i].color);
1017 break; 1017 break;