Remove support for input IO_BUFFERs, which were only used by fish_pager

This commit is contained in:
ridiculousfish
2014-03-15 19:49:55 -07:00
parent acd2038407
commit 73c2846d64
5 changed files with 13 additions and 29 deletions

View File

@@ -586,15 +586,6 @@ static void reader_repaint()
data->repaint_needed = false;
}
static void reader_repaint_without_autosuggestion()
{
// Swap in an empty autosuggestion, repaint, then swap it out
wcstring saved_autosuggestion;
data->autosuggestion.swap(saved_autosuggestion);
reader_repaint();
data->autosuggestion.swap(saved_autosuggestion);
}
/** Internal helper function for handling killing parts of text. */
static void reader_kill(editable_line_t *el, size_t begin_idx, size_t length, int mode, int newv)
{