Removed usages of win_process_line

This commit is contained in:
James Booth
2014-06-11 21:16:54 +01:00
parent 20d890cfdc
commit 43eb38da2d
4 changed files with 4 additions and 4 deletions

View File

@@ -99,7 +99,7 @@ module RubyTest
Prof::win_focus(win_tag)
if (line)
Prof::win_process_line(win_tag, line)
handle_lower.call(win_tag, line)
end
}
end

View File

@@ -34,7 +34,7 @@ local function cmd_bracket(line)
prof_win_focus(win_tag);
if line then
prof_win_process_line(win_tag, line);
handle_bracket(win_tag, line)
end
end

View File

@@ -27,7 +27,7 @@ def _cmd_upper(line):
prof.win_focus(_win_tag)
if line:
prof.win_process_line(_win_tag, line)
_handle_upper(_win_tag, line)
def _handle_upper(win, line):
prof.win_show(win, line.upper())

View File

@@ -62,7 +62,7 @@ cmd_reverse(char **args)
prof_win_focus(echo_win);
if (args[0] != NULL) {
prof_win_process_line(echo_win, args[0]);
handle_reverse(echo_win, args[0]);
}
}