1999-01-19 Pavel Roskin <pavel_roskin@geocities.com>

* ifnames.sh: Source lines ending with backslash are prepended to
	the following line before further processing.
This commit is contained in:
Ben Elliston 1999-01-19 06:58:47 +00:00
parent 0f84fcb2f8
commit 4d134a089b
4 changed files with 32 additions and 0 deletions

View File

@ -1,3 +1,8 @@
1999-01-19 Pavel Roskin <pavel_roskin@geocities.com>
* ifnames.sh: Source lines ending with backslash are prepended to
the following line before further processing.
1999-01-19 Ben Elliston <bje@cygnus.com>
* acspecific.m4 (AC_PROG_CXXCPP): Substitute @CXXCPP@ correctly

View File

@ -90,6 +90,15 @@ fi
}
}
{
while (sub(/\\$/, "", $0) > 0) {
if ((getline tmp) > 0)
$0 = $0 tmp
else
break
}
}
/^[\t ]*#/ {
if (sub(/^[\t ]*#[\t ]*ifn?def[\t ]+/, "", $0)) {
sub(/[^A-Za-z_0-9].*/, "", $0)

View File

@ -90,6 +90,15 @@ fi
}
}
{
while (sub(/\\$/, "", $0) > 0) {
if ((getline tmp) > 0)
$0 = $0 tmp
else
break
}
}
/^[\t ]*#/ {
if (sub(/^[\t ]*#[\t ]*ifn?def[\t ]+/, "", $0)) {
sub(/[^A-Za-z_0-9].*/, "", $0)

View File

@ -90,6 +90,15 @@ fi
}
}
{
while (sub(/\\$/, "", $0) > 0) {
if ((getline tmp) > 0)
$0 = $0 tmp
else
break
}
}
/^[\t ]*#/ {
if (sub(/^[\t ]*#[\t ]*ifn?def[\t ]+/, "", $0)) {
sub(/[^A-Za-z_0-9].*/, "", $0)