diff options
author | Aidan <torrinfail@gmail.com> | 2019-11-07 13:07:19 -0700 |
---|---|---|
committer | Aidan <torrinfail@gmail.com> | 2019-11-07 13:07:19 -0700 |
commit | 72dc44f963bfdfbef141cbba9cf23f1358a335a3 (patch) | |
tree | 14dd61792c8e4ad0a42c6056f3421f04fd413145 /blocks.h | |
parent | 3da92ebccb863394a3501ce2d9cbe60ad9aafc8c (diff) |
Revert "Changed delimeter to accept multiple characters."
Bug was found where certain modules caused dwm to lag horribly.
Reverting until a fix can be found.
This reverts commit 3da92ebccb863394a3501ce2d9cbe60ad9aafc8c.
Diffstat (limited to 'blocks.h')
-rw-r--r-- | blocks.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -16,5 +16,5 @@ static const Block blocks[] = { {"", "~/bin/statusbar/clock", 5, 0}, }; -//sets delimeter between status commands. Empty string ("") means no delimeter. -static char* delim = "|"; +//sets delimeter between status commands. NULL character ('\0') means no delimeter. +static char delim = '|'; |