make: Fix parsing of empty continuation lines

This commit is contained in:
Colomban Wendling 2015-03-16 14:55:50 +01:00
parent aae13ed26d
commit 9c829aeb3c
4 changed files with 16 additions and 1 deletions

View File

@ -44,7 +44,7 @@ static int nextChar (void)
{ {
c = fileGetc (); c = fileGetc ();
if (c == '\n') if (c == '\n')
c = fileGetc (); c = nextChar ();
} }
return c; return c;
} }

View File

@ -114,6 +114,7 @@ test_sources = \
common.f \ common.f \
complex-return.js \ complex-return.js \
continuation.f90 \ continuation.f90 \
continuation.mak \
countall.sql \ countall.sql \
cpp_destructor.cpp \ cpp_destructor.cpp \
css-at-rules.css \ css-at-rules.css \

View File

@ -0,0 +1,11 @@
A = \
a=b \
\
b=c \
\
c=d \
\
d=e \
B = dummy

View File

@ -0,0 +1,3 @@
# format=tagmanager
AÌ65536Ö0
BÌ65536Ö0