+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
}
}
+ {
+ 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)
}
}
+ {
+ 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)
}
}
+ {
+ 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)