Subversion Repositories fastphp

Compare Revisions

Regard whitespace Rev 42 → Rev 41

/trunk/codeexplorer.php
291,9 → 291,7
if (trim($f) == chr(1).chr(2).chr(3).chr(4).chr(5).chr(6).chr(7).chr(8)) break;
 
// Signal to terminate the code explorer
if (trim($f) == chr(8).chr(7).chr(6).chr(5).chr(4).chr(3).chr(2).chr(1)) {
die("\n".chr(8).chr(7).chr(6).chr(5).chr(4).chr(3).chr(2).chr(1)."\n");
}
if (trim($f) == chr(8).chr(7).chr(6).chr(5).chr(4).chr(3).chr(2).chr(1)) die();
 
$lines[] = $f;
}
313,19 → 311,19
}
 
public static function outputIncreaseLevel() {
return "I\n";
return 'I'."\n";
}
 
public static function outputDecreaseLevel() {
return "D\n";
return 'D'."\n";
}
 
public static function outputExit() {
return "X\n";
return 'X'."\n";
}
 
public static function signalOutputEnd() {
return "\n".chr(1).chr(2).chr(3).chr(4).chr(5).chr(6).chr(7).chr(8)."\n";
return chr(1).chr(2).chr(3).chr(4).chr(5).chr(6).chr(7).chr(8);
}
 
public static function outputHeader() {