diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-11-16 19:19:48 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-11-16 19:19:48 +0100 |
commit | bd3b16c660e763f32f390ea35c38f7c1e0addd95 (patch) | |
tree | 854c21f950a89f73def261ceb677ff104e850075 /cmdline.cpp | |
parent | 6567dbe9170464e7bd89e86583201b6e4c7dfb9d (diff) | |
download | sciteco-bd3b16c660e763f32f390ea35c38f7c1e0addd95.tar.gz |
fixed clearing message line: do not display an empty message line (which can mean an empty line sent to stdout)
Diffstat (limited to 'cmdline.cpp')
-rw-r--r-- | cmdline.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmdline.cpp b/cmdline.cpp index 2fe2b21..5018054 100644 --- a/cmdline.cpp +++ b/cmdline.cpp @@ -35,7 +35,7 @@ cmdline_keypress(gchar key) * Cleanup messages, popups, etc... */ interface.popup_clear(); - interface.msg(Interface::MSG_USER, " "); + interface.msg_clear(); /* * Process immediate editing commands |