From 738e4a6e31cf25577a49f8a1d37b240d3cfd4725 Mon Sep 17 00:00:00 2001 From: Fumitoshi UKAI Date: Fri, 25 Oct 2002 19:59:48 +0000 Subject: * [w3m-dev-en 00780] "Carlo E. Prelz" always print on screen the relative position * display.c (displayBuffer): relative position From: Fumitoshi UKAI --- display.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'display.c') diff --git a/display.c b/display.c index 2a95716..02a2db3 100644 --- a/display.c +++ b/display.c @@ -1,4 +1,4 @@ -/* $Id: display.c,v 1.22 2002/03/15 18:33:32 ukai Exp $ */ +/* $Id: display.c,v 1.23 2002/10/25 19:59:51 ukai Exp $ */ #include #include "fm.h" @@ -319,6 +319,12 @@ displayBuffer(Buffer *buf, int mode) #endif /* not USE_MOUSE */ msg = Strnew(); Strcat_charp(msg, "Viewing"); + if (buf->currentLine != NULL && buf->lastLine != NULL) + Strcat(msg, Sprintf(" %3d%%", + (int)((double)buf->currentLine->real_linenumber + * 100.0 / + (double)buf->lastLine->real_linenumber + + 0.5))); #ifdef USE_SSL if (buf->ssl_certificate) Strcat_charp(msg, "[SSL]"); -- cgit v1.2.3