aboutsummaryrefslogtreecommitdiffstats
path: root/display.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--display.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/display.c b/display.c
index edd8c8d..ba47bf9 100644
--- a/display.c
+++ b/display.c
@@ -1,4 +1,4 @@
-/* $Id: display.c,v 1.44 2002/12/05 16:29:04 ukai Exp $ */
+/* $Id: display.c,v 1.45 2002/12/11 15:03:15 ukai Exp $ */
#include <signal.h>
#include "fm.h"
@@ -475,11 +475,13 @@ redrawNLine(Buffer *buf, int n)
bold();
addch('[');
l = t->x2 - t->x1 - 1 - strlen(t->currentBuffer->buffername);
+ if (l < 0)
+ l = 0;
if (l / 2 > 0)
addnstr_sup(" ", l / 2);
if (t == CurrentTab)
EFFECT_ACTIVE_START;
- addstr(t->currentBuffer->buffername);
+ addnstr(t->currentBuffer->buffername, t->x2 - t->x1 - l);
if (t == CurrentTab)
EFFECT_ACTIVE_END;
if ((l + 1) / 2 > 0)