Skip to content

Commit

Permalink
Fix Issue #1
Browse files Browse the repository at this point in the history
Fix Issue #1
  • Loading branch information
mackers committed Feb 25, 2014
1 parent 3aaa5bf commit aa04319
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/theyoke
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ foreach my $feed_url (@feed_urls) {
$printy .= $wassname;
}
if (length($printy) > $columns-1) {
$printy = substr($printy,0,$columns-1) . "";
$printy = substr($printy,0,$columns-1) . "\x{2026}";
}
}

Expand Down Expand Up @@ -333,6 +333,7 @@ foreach my $feed_url (@feed_urls) {
}

if ($#OUTPUT >= 0) {
binmode(STDOUT, ":utf8");
if ($OPTIONS{'reversetime'}) {
print reverse @OUTPUT;
} else {
Expand Down

0 comments on commit aa04319

Please sign in to comment.