Merge branch 'Numeromancer-master' into xft-port

* Numeromancer-master:
  Avoid compiler warning about ignore return from write.
  On input, ignore % w/o a { after.
  Allow colors in the form #RRGGBB (ie w/o alpha).
This commit is contained in:
krypt-n 2014-11-05 20:07:24 +01:00
commit 1c0af0996a

22
bar.c
View File

@ -1,4 +1,5 @@
#include <stdbool.h>
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
@ -289,7 +290,11 @@ parse_color (const char *str, char **end, const uint32_t def)
unsigned int g = (tmp&0x0000ff00) >> 8;
unsigned int b = (tmp&0x000000ff);
if (a) {
ptrdiff_t len = *end - str;
if (len == 8) {
if (a == 0) {
r = g = b = 0;
} else {
r = (r * 255) / a;
g = (g * 255) / a;
b = (b * 255) / a;
@ -298,11 +303,11 @@ parse_color (const char *str, char **end, const uint32_t def)
if (r > 255) r = 255;
if (g > 255) g = 255;
if (b > 255) b = 255;
} else {
}
}
return a << 24 | r << 16 | g << 8 | b;
uint32_t c = a << 24 | r << 16 | g << 8 | b;
return c;
}
/* Actual color name, resolve it */
@ -490,7 +495,8 @@ parse (char *text)
if (*p == '\0' || *p == '\n')
break;
if (*p == '%' && p++ && *p == '{' && (end = strchr(p++, '}'))) {
if (*p == '%' && *(p+1) == '{' && (end = strchr(p+2, '}'))) {
p += 2;
while (p < end) {
while (isspace(*p))
p++;
@ -1328,8 +1334,10 @@ main (int argc, char **argv)
area_t *area = area_get(press_ev->event, press_ev->event_x);
/* Respond to the click */
if (area && area->button == press_ev->detail) {
write(STDOUT_FILENO, area->cmd, strlen(area->cmd));
write(STDOUT_FILENO, "\n", 1);
ssize_t n;
n = write(STDOUT_FILENO, area->cmd, strlen(area->cmd));
n = write(STDOUT_FILENO, "\n", 1);
}
}
}
break;