diff options
author | Thomas Adam <thomas@xteddy.org> | 2019-05-12 21:02:27 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2019-05-12 21:02:27 +0100 |
commit | 699d9d2facd377c72c962e1f029f654530e8bba8 (patch) | |
tree | c5a71356eafec8f137ae30977e93f4d406cc80a4 /style.c | |
parent | 42da951edfc1fadee0e9e7f08deedb24ffe482b8 (diff) | |
parent | c3c3927c2bf90f10623374edb579eb19fb192ab7 (diff) | |
download | rtmux-699d9d2facd377c72c962e1f029f654530e8bba8.tar.gz rtmux-699d9d2facd377c72c962e1f029f654530e8bba8.tar.bz2 rtmux-699d9d2facd377c72c962e1f029f654530e8bba8.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'style.c')
-rw-r--r-- | style.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -57,10 +57,8 @@ style_parse(struct style *sy, const struct grid_cell *base, const char *in) style_copy(&saved, sy); do { - while (*in != '\0' && strchr(delimiters, *in) != NULL) { + while (*in != '\0' && strchr(delimiters, *in) != NULL) in++; - end--; - } if (*in == '\0') break; |