aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/macfns.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/macfns.c b/src/macfns.c
index 1b3a7223b63..9cb9e3e0496 100644
--- a/src/macfns.c
+++ b/src/macfns.c
@@ -251,7 +251,7 @@ typedef struct colormap_t
251 char *name; 251 char *name;
252} colormap_t; 252} colormap_t;
253 253
254colormap_t mac_color_map[] = 254static const colormap_t mac_color_map[] =
255{ 255{
256 { RGB_TO_ULONG(255, 250, 250), "snow" }, 256 { RGB_TO_ULONG(255, 250, 250), "snow" },
257 { RGB_TO_ULONG(248, 248, 255), "ghost white" }, 257 { RGB_TO_ULONG(248, 248, 255), "ghost white" },
@@ -1009,7 +1009,7 @@ colormap_t mac_color_map[] =
1009 1009
1010Lisp_Object 1010Lisp_Object
1011mac_color_map_lookup (colorname) 1011mac_color_map_lookup (colorname)
1012 char *colorname; 1012 const char *colorname;
1013{ 1013{
1014 Lisp_Object ret = Qnil; 1014 Lisp_Object ret = Qnil;
1015 int i; 1015 int i;