make: Fix parsing of empty continuation lines
This commit is contained in:
parent
aae13ed26d
commit
9c829aeb3c
@ -44,7 +44,7 @@ static int nextChar (void)
|
||||
{
|
||||
c = fileGetc ();
|
||||
if (c == '\n')
|
||||
c = fileGetc ();
|
||||
c = nextChar ();
|
||||
}
|
||||
return c;
|
||||
}
|
||||
|
||||
@ -114,6 +114,7 @@ test_sources = \
|
||||
common.f \
|
||||
complex-return.js \
|
||||
continuation.f90 \
|
||||
continuation.mak \
|
||||
countall.sql \
|
||||
cpp_destructor.cpp \
|
||||
css-at-rules.css \
|
||||
|
||||
11
tests/ctags/continuation.mak
Normal file
11
tests/ctags/continuation.mak
Normal file
@ -0,0 +1,11 @@
|
||||
|
||||
A = \
|
||||
a=b \
|
||||
\
|
||||
b=c \
|
||||
\
|
||||
c=d \
|
||||
\
|
||||
d=e \
|
||||
|
||||
B = dummy
|
||||
3
tests/ctags/continuation.mak.tags
Normal file
3
tests/ctags/continuation.mak.tags
Normal file
@ -0,0 +1,3 @@
|
||||
# format=tagmanager
|
||||
AÌ65536Ö0
|
||||
BÌ65536Ö0
|
||||
Loading…
x
Reference in New Issue
Block a user