Add parentheses around symbols in gr_set_fillstyle

This commit is contained in:
Pearl Li 2021-08-25 16:10:59 -07:00
parent b0cf3ba498
commit fdf33d114a

View File

@ -141,12 +141,12 @@ function gr_set_fillstyle(s::Symbol)
GR.setfillintstyle(GR.INTSTYLE_HATCH) GR.setfillintstyle(GR.INTSTYLE_HATCH)
GR.setfillstyle(get( GR.setfillstyle(get(
( (
/ = 9, (/) = 9,
\ = 10, (\) = 10,
| = 7, (|) = 7,
- = 8, (-) = 8,
+ = 11, (+) = 11,
x = 6, (x) = 6,
), ),
s, s,
9), 9),