diff options
| author | Juanma Barranquero | 2010-07-24 22:52:43 +0200 |
|---|---|---|
| committer | Juanma Barranquero | 2010-07-24 22:52:43 +0200 |
| commit | 630b95924ef4ee9c1e8db43ffd226273260055d5 (patch) | |
| tree | 797ef2c26046fc18b6aaa65f41cc532ae1f1fa7b /src | |
| parent | 0c1085c50717c5596d0255bc8ef1c82153e56fd0 (diff) | |
| download | emacs-630b95924ef4ee9c1e8db43ffd226273260055d5.tar.gz emacs-630b95924ef4ee9c1e8db43ffd226273260055d5.zip | |
* w32fns.c (w32_to_x_color): Remove, unused.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/w32fns.c | 19 |
2 files changed, 4 insertions, 19 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index d946b9af856..7234b4f843e 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2010-07-24 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * w32fns.c (w32_to_x_color): Remove, unused. | ||
| 4 | |||
| 1 | 2010-07-24 Andreas Schwab <schwab@linux-m68k.org> | 5 | 2010-07-24 Andreas Schwab <schwab@linux-m68k.org> |
| 2 | 6 | ||
| 3 | * lisp.h: Remove leftover P_. | 7 | * lisp.h: Remove leftover P_. |
diff --git a/src/w32fns.c b/src/w32fns.c index c5e555dc884..72830c435e9 100644 --- a/src/w32fns.c +++ b/src/w32fns.c | |||
| @@ -786,25 +786,6 @@ DEFUN ("w32-default-color-map", Fw32_default_color_map, Sw32_default_color_map, | |||
| 786 | } | 786 | } |
| 787 | 787 | ||
| 788 | static Lisp_Object | 788 | static Lisp_Object |
| 789 | w32_to_x_color (Lisp_Object rgb) | ||
| 790 | { | ||
| 791 | Lisp_Object color; | ||
| 792 | |||
| 793 | CHECK_NUMBER (rgb); | ||
| 794 | |||
| 795 | BLOCK_INPUT; | ||
| 796 | |||
| 797 | color = Frassq (rgb, Vw32_color_map); | ||
| 798 | |||
| 799 | UNBLOCK_INPUT; | ||
| 800 | |||
| 801 | if (!NILP (color)) | ||
| 802 | return (Fcar (color)); | ||
| 803 | else | ||
| 804 | return Qnil; | ||
| 805 | } | ||
| 806 | |||
| 807 | static Lisp_Object | ||
| 808 | w32_color_map_lookup (char *colorname) | 789 | w32_color_map_lookup (char *colorname) |
| 809 | { | 790 | { |
| 810 | Lisp_Object tail, ret = Qnil; | 791 | Lisp_Object tail, ret = Qnil; |