editing apps: clean up some stale prints

This commit is contained in:
Kartik K. Agaram 2022-01-16 22:33:41 -08:00
parent abc2ea4675
commit 06edd8bda7
1 changed files with 6 additions and 0 deletions

View File

@ -1306,6 +1306,9 @@ int editFrom(lua_State* L, char* filename, int rowoff, int coloff, int cy, int c
E.cy = cy;
E.cx = cx;
editorOpen(filename);
attrset(A_NORMAL);
clear();
draw_callers_of_current_definition(L);
while(!Quit) {
/* update on resize */
E.startcol = LINE_NUMBER_SPACE;
@ -1321,6 +1324,9 @@ int editFrom(lua_State* L, char* filename, int rowoff, int coloff, int cy, int c
int resumeEdit(lua_State* L) {
Quit = 0;
Back_to_big_picture = 0;
attrset(A_NORMAL);
clear();
draw_callers_of_current_definition(L);
while(!Quit) {
/* update on resize */
E.startcol = LINE_NUMBER_SPACE;