1
0
mirror of synced 2026-04-13 23:23:41 +00:00

More unconfusing of Emacs' syntax highlighting

This commit is contained in:
Axel Beckert
2019-02-07 16:16:54 +01:00
parent c8316b0076
commit c774f81e80
4 changed files with 8 additions and 8 deletions

View File

@@ -208,12 +208,12 @@ checkArguments();
#
if ( ( !$CONFIG{ 'test' } ) && ( $EFFECTIVE_USER_ID != 0 ) )
{
print <<E_O_ROOT;
print <<EOROOT;
This script is not running with root privileges, so the configuration
file(s) beneath /etc/xen will not be removed.
E_O_ROOT
EOROOT
exit 127;
}

View File

@@ -149,13 +149,13 @@ checkArguments();
#
if ( $EFFECTIVE_USER_ID != 0 )
{
print <<E_O_ROOT;
print <<EOROOT;
This script is not running with root privileges.
root privileges are required to successfully mount the disk image(s).
E_O_ROOT
EOROOT
exit;
}

View File

@@ -221,7 +221,7 @@ sub checkArguments
if ( !-d $dir )
{
print <<E_OR;
print <<EOR;
We\'re trying to configure an installation of $CONFIG{'dist'} in
$CONFIG{'location'} - but there is no hook directory for us to use.
@@ -231,7 +231,7 @@ sub checkArguments
We\'d expect the hook directory to be : $dir
Aborting.
E_OR
EOR
exit 1;
}

View File

@@ -414,7 +414,7 @@ sub checkArguments
if ( !-d $dir )
{
print <<E_OR;
print <<EOR;
We are trying to configure an installation of $CONFIG{'dist'} in
$CONFIG{'location'} - but there is no hook directory for us to use.
@@ -424,7 +424,7 @@ sub checkArguments
We would expect the hook directory to be $dir.
Aborting.
E_OR
EOR
exit 1;
}