aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRobin Haberkorn <robin.haberkorn@googlemail.com>2012-11-16 19:41:18 +0100
committerRobin Haberkorn <robin.haberkorn@googlemail.com>2012-11-16 19:41:18 +0100
commit4ad5973cad132d07e352c89b63906029dcce70e0 (patch)
tree09484d7abf7a7a9c78ce831499f1614235962b3d
parentbd3b16c660e763f32f390ea35c38f7c1e0addd95 (diff)
downloadsciteco-4ad5973cad132d07e352c89b63906029dcce70e0.tar.gz
ensure that infoline is correct on startup
-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;