chiark
/
gitweb
/
~mdw
/
tig
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
21be28f
)
Use wclrtoeol instead of werase
author
Jonas Fonseca
<fonseca@diku.dk>
Mon, 18 Sep 2006 13:57:10 +0000
(15:57 +0200)
committer
Jonas Fonseca
<fonseca@antimatter.localdomain>
Mon, 18 Sep 2006 13:57:10 +0000
(15:57 +0200)
tig.c
patch
|
blob
|
blame
|
history
diff --git
a/tig.c
b/tig.c
index 70bf7f37f252154a9766dff094eeba4c10387d27..1f92114dc0710c9b2660deda4a7daa6601eaa460 100644
(file)
--- a/
tig.c
+++ b/
tig.c
@@
-1368,8
+1368,8
@@
update_view_title(struct view *view)
else
wbkgdset(view->title, get_line_attr(LINE_TITLE_BLUR));
- werase(view->title);
mvwaddnstr(view->title, 0, 0, buf, bufpos);
+ wclrtoeol(view->title);
wmove(view->title, 0, view->width - 1);
if (input_mode)
@@
-3148,7
+3148,6
@@
report(const char *msg, ...)
va_start(args, msg);
- werase(status_win);
wmove(status_win, 0, 0);
if (*msg) {
vwprintw(status_win, msg, args);
@@
-3156,6
+3155,7
@@
report(const char *msg, ...)
} else {
status_empty = TRUE;
}
+ wclrtoeol(status_win);
wrefresh(status_win);
va_end(args);