Skip to content

Commit

Permalink
Revert "sbiddle: Allow backtick commands to send escape sequences. Cu…
Browse files Browse the repository at this point in the history
…rrently breaks padding."

This reverts commit a9a0c85.
  • Loading branch information
amade committed Aug 27, 2011
1 parent 31f9570 commit ac671cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/screen.c
Original file line number Diff line number Diff line change
Expand Up @@ -2124,7 +2124,7 @@ backtick_filter(struct backtick *bt)
{
if (c == '\t')
c = ' ';
if (c >= ' ' || c == '\005' || c == '\033')
if (c >= ' ' || c == '\005')
*q++ = c;
}
*q = 0;
Expand Down

0 comments on commit ac671cd

Please sign in to comment.