mirror of
https://github.com/polybar/polybar.git
synced 2026-02-08 15:55:39 +00:00
builder: remove BUILDER_SPACE_TOKEN
Was around since the first commit but no documentation why. It was only used in the text module and doesn't appear in any public documentation, so this doesn't break anything.
This commit is contained in:
committed by
Patrick Ziegler
parent
56e24992df
commit
f967cd5f59
@ -8,10 +8,6 @@
|
||||
#include "utils/time.hpp"
|
||||
POLYBAR_NS
|
||||
|
||||
#ifndef BUILDER_SPACE_TOKEN
|
||||
#define BUILDER_SPACE_TOKEN "%__"
|
||||
#endif
|
||||
|
||||
builder::builder(const bar_settings& bar) : m_bar(bar) {
|
||||
m_tags[syntaxtag::A] = 0;
|
||||
m_tags[syntaxtag::B] = 0;
|
||||
@ -66,7 +62,7 @@ string builder::flush() {
|
||||
m_output.clear();
|
||||
m_fontindex = 1;
|
||||
|
||||
return string_util::replace_all(output, BUILDER_SPACE_TOKEN, " ");
|
||||
return output;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user