Skip to content

Commit

Permalink
Use exported variable, not literal.
Browse files Browse the repository at this point in the history
  • Loading branch information
c-blake committed Dec 26, 2020
1 parent d53d7b1 commit e8c3bb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lc.nim
Original file line number Diff line number Diff line change
Expand Up @@ -796,7 +796,7 @@ proc fin*(cf: var LsCf, cl0: seq[string] = @[], cl1: seq[string] = @[],
cf.uAbb = parseAbbrev(cf.maxUnm); cf.uAbb.realize(cf.usr)
cf.gAbb = parseAbbrev(cf.maxGnm); cf.gAbb.realize(cf.grp)
if dsA in cf.need or dsC in cf.need: cf.need.incl(dsS) #To cache EOPNOTSUPP
cf.a0 = if cf.plain: "" else: "\x1b[0m"
cf.a0 = if cf.plain: "" else: textAttrOFF
cf.wrote = false
cf.cl0 = cl0
cf.cl1 = cl1
Expand Down

0 comments on commit e8c3bb5

Please sign in to comment.