From 907cb8bfa69926616639f9a19127117b37326029 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Aur=C3=A9lien=20Aptel?= Date: Thu, 6 Oct 2011 21:32:34 +0200 Subject: [PATCH] no palette limit (thx Nick) --- config.def.h | 2 +- st.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config.def.h b/config.def.h index 37f9620..35f36cb 100644 --- a/config.def.h +++ b/config.def.h @@ -5,7 +5,7 @@ #define BORDER 2 #define SHELL "/bin/sh" -/* Terminal colors */ +/* Terminal colors (16 first used in escape sequence) */ static const char *colorname[] = { "black", "red3", diff --git a/st.c b/st.c index 6594aa3..72e57c8 100644 --- a/st.c +++ b/st.c @@ -1541,7 +1541,7 @@ xloadcols(void) { XColor color; unsigned long white = WhitePixel(xw.dpy, xw.scr); - for(i = 0; i < 16; i++) { + for(i = 0; i < LEN(colorname); i++) { if(!XAllocNamedColor(xw.dpy, xw.cmap, colorname[i], &color, &color)) { dc.col[i] = white; fprintf(stderr, "Could not allocate color '%s'\n", colorname[i]); -- 1.7.10.4