diff options
author | aidan <aidan@Edward.localdomain> | 2020-08-14 12:36:38 -0600 |
---|---|---|
committer | aidan <aidan@Edward.localdomain> | 2020-08-14 12:36:38 -0600 |
commit | 941f415b3821bf4f3493a0864c05a1af313b22bc (patch) | |
tree | eb2f05f8dfdf3e6b6c35ec8f97e030da17618660 /blocks.def.h | |
parent | 9c5aec5cd5a4a1128cbe1031ccec8c403e4bfecd (diff) |
Manual merge of pull request #19. This adds multi-character delimiter.
Thanks to tph5595.
Diffstat (limited to 'blocks.def.h')
-rw-r--r-- | blocks.def.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/blocks.def.h b/blocks.def.h index 35738db..9c22d68 100644 --- a/blocks.def.h +++ b/blocks.def.h @@ -7,4 +7,5 @@ static const Block blocks[] = { }; //sets delimeter between status commands. NULL character ('\0') means no delimeter. -static char delim = '|'; +static char delim[] = " | "; +static unsigned int delimLen = 5; |