]> git.eshelyaron.com Git - emacs.git/commitdiff
src/w32console.c (vga_stdcolor_name): Remove unused function.
authorJuanma Barranquero <lekktu@gmail.com>
Thu, 30 Sep 2010 00:09:04 +0000 (02:09 +0200)
committerJuanma Barranquero <lekktu@gmail.com>
Thu, 30 Sep 2010 00:09:04 +0000 (02:09 +0200)
src/ChangeLog
src/w32console.c

index de4ba68bdc0bb2ef5791d2abb6446703e9f480a2..ba21c2a411b3042ebce725b8f6053fc0c384d0cc 100644 (file)
@@ -1,3 +1,8 @@
+2010-09-30  Juanma Barranquero  <lekktu@gmail.com>
+
+       * w32console.c (vga_stdcolor_name): Remove unused function;
+       presumed dead after 2007-11-30T13:57:21Z!jasonr@gnu.org.
+
 2010-09-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
        * gnutls.c (emacs_gnutls_handshake): Made into internal function.
index 26fa544d670817c0f9fbd5cd394f47e578bb7a8c..c39a65f59ffc9489a4b5e528f57ebd245aa8835f 100644 (file)
@@ -585,28 +585,6 @@ w32_face_attributes (struct frame *f, int face_id)
   return char_attr;
 }
 
-
-
-/* Given a color index, return its standard name.  */
-Lisp_Object
-vga_stdcolor_name (int idx)
-{
-  /* Standard VGA colors, in the order of their standard numbering
-     in the default VGA palette.  */
-  static char *vga_colors[16] = {
-    "black", "blue", "green", "cyan", "red", "magenta", "brown",
-    "lightgray", "darkgray", "lightblue", "lightgreen", "lightcyan",
-    "lightred", "lightmagenta", "yellow", "white"
-  };
-
-  extern Lisp_Object Qunspecified;
-
-  if (idx >= 0 && idx < sizeof (vga_colors) / sizeof (vga_colors[0]))
-    return build_string (vga_colors[idx]);
-  else
-    return Qunspecified;       /* meaning the default */
-}
-
 void
 initialize_w32_display (struct terminal *term)
 {