]> git.eshelyaron.com Git - emacs.git/commitdiff
Avoid compiler warnings on w32, caused by cygw32 changes.
authorEli Zaretskii <eliz@gnu.org>
Mon, 8 Oct 2012 11:19:35 +0000 (13:19 +0200)
committerEli Zaretskii <eliz@gnu.org>
Mon, 8 Oct 2012 11:19:35 +0000 (13:19 +0200)
 src/w32fns.c (w32_color_map_lookup, x_to_w32_color): Argument is now
 'const char *'.
 (x_to_w32_color): Don't modify the argument, modify a copy instead.

src/ChangeLog
src/w32fns.c

index f9a47ebb4b6366d403f4670700c5f3a0f4e3af98..7d2509b88cfffad2e4005c1c995dd5b4e1c33441 100644 (file)
@@ -1,3 +1,9 @@
+2012-10-08  Eli Zaretskii  <eliz@gnu.org>
+
+       * w32fns.c (w32_color_map_lookup, x_to_w32_color): Argument is now
+       'const char *'.
+       (x_to_w32_color): Don't modify the argument, modify a copy instead.
+
 2012-10-08  Daniel Colascione  <dancol@dancol.org>
 
        * image.c: Permanent fix for JPEG compilation issue --- limit
index 996c37f57f9f493dd220f2b5e6818ecb249adf9c..8620fa8b1e84f248f183d5baa402d49cf6b40e51 100644 (file)
@@ -697,7 +697,7 @@ DEFUN ("w32-default-color-map", Fw32_default_color_map, Sw32_default_color_map,
 }
 
 static Lisp_Object
-w32_color_map_lookup (char *colorname)
+w32_color_map_lookup (const char *colorname)
 {
   Lisp_Object tail, ret = Qnil;
 
@@ -776,7 +776,7 @@ add_system_logical_colors_to_map (Lisp_Object *system_colors)
 
 
 static Lisp_Object
-x_to_w32_color (char * colorname)
+x_to_w32_color (const char * colorname)
 {
   register Lisp_Object ret = Qnil;
 
@@ -785,11 +785,10 @@ x_to_w32_color (char * colorname)
   if (colorname[0] == '#')
     {
       /* Could be an old-style RGB Device specification.  */
-      char *color;
-      int size;
-      color = colorname + 1;
+      int size = strlen (colorname + 1);
+      char *color = alloca (size + 1);
 
-      size = strlen (color);
+      strcpy (color, colorname + 1);
       if (size == 3 || size == 6 || size == 9 || size == 12)
        {
          UINT colorval;
@@ -843,7 +842,7 @@ x_to_w32_color (char * colorname)
     }
   else if (strnicmp (colorname, "rgb:", 4) == 0)
     {
-      char *color;
+      const char *color;
       UINT colorval;
       int i, pos;
       pos = 0;
@@ -899,7 +898,7 @@ x_to_w32_color (char * colorname)
   else if (strnicmp (colorname, "rgbi:", 5) == 0)
     {
       /* This is an RGB Intensity specification.  */
-      char *color;
+      const char *color;
       UINT colorval;
       int i, pos;
       pos = 0;