with backslash-newline. Instead, append newline at the end if
required.
1999-04-27 Tom Tromey <tromey@cygnus.com>
+ * automake.in (read_main_am_file): Don't start macro definition
+ with backslash-newline. Instead, append newline at the end if
+ required.
+
* automake.in (read_am_file): Insert a backslash before a trailing
newline. Fixes pluseq8.test.
local ($vcond) = shift (@cond_vals);
local ($val) = &unquote_cond_val (shift (@cond_vals));
$output_vars .= ($vcond . $curs . ' '
- . $def_type{$curs} . "= \\\n");
+ . $def_type{$curs} . "= ");
local ($line);
foreach $line (split ("\n", $val))
{
$output_vars .= $vcond . $line . "\n";
}
+ $output_vars .= "\n"
+ if $val eq '';
}
}
else