Commit 6bb43b09 6bb43b09cf83f5cb7eae9762ec0f4d946cd8edc9 by Sean 'Shaleh' Perry

Fixed changelog.pl to use '\t*' not ' *'

1 parent 9b9fbddc
...@@ -100,7 +100,7 @@ if ($EMAIL eq '') { ...@@ -100,7 +100,7 @@ if ($EMAIL eq '') {
100 } 100 }
101 101
102 print O "$DATE $MAINTAINER <$EMAIL>\n\n"; 102 print O "$DATE $MAINTAINER <$EMAIL>\n\n";
103 if ($TEXT) { write O } else { print O " * \n\n"; $line=3; } 103 if ($TEXT) { write O } else { print O "\t* \n\n"; $line=3; }
104 # Rewind the current changelog to the beginning of the file 104 # Rewind the current changelog to the beginning of the file
105 seek S,0,0 or fatal "Couldn't rewind ChangeLog:" . " $!"; 105 seek S,0,0 or fatal "Couldn't rewind ChangeLog:" . " $!";
106 # Copy the rest of the changelog file to new one 106 # Copy the rest of the changelog file to new one
......