commit eff23f5de3802cc49140b4c0883ac8c7d5abb3eb from: Omar Polo date: Fri Jun 25 17:09:37 2021 UTC typo prefix "→ " " " ended up using both as prefix for the line and the continuations the first string given, ignoring the second argument. Found and reported by tgl, thanks!! commit - f785c305087aa1548592a414c8683234f985d601 commit + eff23f5de3802cc49140b4c0883ac8c7d5abb3eb blob - 794615cdbe415482fd8b6376f181be91d9895951 blob + 7b370f2af6c304f69bfc65c114edfa3638cd43cd --- parse.y +++ parse.y @@ -105,7 +105,7 @@ styleopts : /* empty */ ; styleopt : TPRFX TSTRING { setprfx($2, $2); } - | TPRFX TSTRING TSTRING { setprfx($2, $2); } + | TPRFX TSTRING TSTRING { setprfx($2, $3); } | TBG { color_type = TBG; } colorspec | TFG { color_type = TFG; } colorspec | TATTR attr