henesy / mk

make remade
Other
3 stars 0 forks source link

Can't split \ token out of name\ #2

Open henesy opened 4 years ago

henesy commented 4 years ago

As seen in #1 , tokenizing

FOO = a\
  b\
  c\

should yield effectively:

FOO = a b c

currently yields:

FOO = a\

b\ c\

henesy commented 4 years ago

Specifically this step https://github.com/henesy/mk/issues/1#issuecomment-583714826