Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
	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!!
  • Loading branch information
omar-polo committed Jun 25, 2021
1 parent f785c30 commit eff23f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parse.y
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit eff23f5

Please sign in to comment.