1
0
mirror of synced 2026-02-06 16:04:50 +00:00

Fix emacs syntax highlighting

At least GNU Emacs 25 doesn't seem to like HEREDOCS with underscores
in its delimiters.
This commit is contained in:
Axel Beckert
2017-01-16 19:32:36 +01:00
parent 799052c2c9
commit 9647ab082c

View File

@@ -1177,13 +1177,13 @@ sub checkSystem
eval($test);
if ( ($@) && ( !$CONFIG{ 'force' } ) )
{
print <<E_O_ERROR;
print <<EOERROR;
Aborting: The Text::Template perl module isn\'t installed or available.
Specify '--force' to skip this check and continue regardless.
E_O_ERROR
EOERROR
$CONFIG{'FAIL'} = 1;
exit 127;
}