tapplied yet another proposal of Manuel - dwm - [fork] customized build of dwm, the dynamic window manager
(HTM) git clone git://src.adamsgaard.dk/dwm
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 2210ea7e3b0b2839ac7fb49c18d2731cb9e94e01
(DIR) parent 61a1910f91fe6aba428193087d6c3ff21374ee5e
(HTM) Author: arg@mig29 <unknown>
Date: Sun, 26 Nov 2006 15:43:16 +0100
applied yet another proposal of Manuel
Diffstat:
M main.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
(DIR) diff --git a/main.c b/main.c
t@@ -284,8 +284,8 @@ main(int argc, char *argv[]) {
readin = False;
break;
default:
- stext[r - (stext[r - 1] == '\n' ? 1 : 0)] = '\0';
- for(p = stext + strlen(stext) - 1; p > stext && *p != '\n'; --p);
+ for(stext[r] = '\0', p = stext + strlen(stext) - 1; p >= stext && *p == '\n'; *p-- = '\0');
+ for(p = stext + strlen(stext) - 1; p >= stext && *p != '\n'; --p);
if(p > stext)
strncpy(stext, p + 1, sizeof stext);
}