aboutsummaryrefslogtreecommitdiffstats
path: root/display.c
diff options
context:
space:
mode:
Diffstat (limited to 'display.c')
-rw-r--r--display.c17
1 files changed, 9 insertions, 8 deletions
diff --git a/display.c b/display.c
index 02a2db3..c50cb74 100644
--- a/display.c
+++ b/display.c
@@ -1,4 +1,4 @@
-/* $Id: display.c,v 1.23 2002/10/25 19:59:51 ukai Exp $ */
+/* $Id: display.c,v 1.24 2002/10/26 08:10:43 ukai Exp $ */
#include <signal.h>
#include "fm.h"
@@ -318,13 +318,14 @@ displayBuffer(Buffer *buf, int mode)
else
#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)));
+ if (displayLineInfo && buf->currentLine != NULL && buf->lastLine != NULL) {
+ int cl = buf->currentLine->real_linenumber;
+ int ll = buf->lastLine->real_linenumber;
+ int r = (int)((double)cl * 100.0 / (double)ll + 0.5);
+ Strcat(msg, Sprintf("%d/%d (%3d%%)", cl, ll, r));
+ }
+ else
+ Strcat_charp(msg, "Viewing");
#ifdef USE_SSL
if (buf->ssl_certificate)
Strcat_charp(msg, "[SSL]");