aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--interface-ncurses.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/interface-ncurses.cpp b/interface-ncurses.cpp
index 24c455f..55f6b00 100644
--- a/interface-ncurses.cpp
+++ b/interface-ncurses.cpp
@@ -40,7 +40,7 @@ InterfaceNCurses::InterfaceNCurses()
{
/*
* Prevent the initial redraw and any escape sequences that may
- * clobber stdout, so we may use the terminal in
+ * interfere with stdout, so we may use the terminal in
* cooked mode, for commandline help and batch processing.
* Scintilla must be initialized for batch processing to work.
* (Frankly I have no idea why this works!)
@@ -282,6 +282,7 @@ InterfaceNCurses::event_loop(void)
{
/* in commandline (visual) mode, enforce redraw */
wrefresh(curscr);
+ draw_info();
for (;;) {
int key;