* [w3m-dev-en 00780] "Carlo E. Prelz" <fluido@fluido.as>
always print on screen the relative position * display.c (displayBuffer): relative position From: Fumitoshi UKAI <ukai@debian.or.jp>
This commit is contained in:
@@ -1,3 +1,9 @@
|
|||||||
|
2002-10-26 Fumitoshi UKAI <ukai@debian.or.jp>
|
||||||
|
|
||||||
|
* [w3m-dev-en 00780] "Carlo E. Prelz" <fluido@fluido.as>
|
||||||
|
always print on screen the relative position
|
||||||
|
* display.c (displayBuffer): relative position
|
||||||
|
|
||||||
2002-10-26 Fumitoshi UKAI <ukai@debian.or.jp>
|
2002-10-26 Fumitoshi UKAI <ukai@debian.or.jp>
|
||||||
|
|
||||||
* 0.3.2 release candidate 1
|
* 0.3.2 release candidate 1
|
||||||
@@ -3957,4 +3963,4 @@ a * [w3m-dev 03276] compile error on EWS4800
|
|||||||
* release-0-2-1
|
* release-0-2-1
|
||||||
* import w3m-0.2.1
|
* import w3m-0.2.1
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.446 2002/10/25 16:11:20 ukai Exp $
|
$Id: ChangeLog,v 1.447 2002/10/25 19:59:48 ukai Exp $
|
||||||
|
|||||||
@@ -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 <signal.h>
|
#include <signal.h>
|
||||||
#include "fm.h"
|
#include "fm.h"
|
||||||
|
|
||||||
@@ -319,6 +319,12 @@ displayBuffer(Buffer *buf, int mode)
|
|||||||
#endif /* not USE_MOUSE */
|
#endif /* not USE_MOUSE */
|
||||||
msg = Strnew();
|
msg = Strnew();
|
||||||
Strcat_charp(msg, "Viewing");
|
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
|
#ifdef USE_SSL
|
||||||
if (buf->ssl_certificate)
|
if (buf->ssl_certificate)
|
||||||
Strcat_charp(msg, "[SSL]");
|
Strcat_charp(msg, "[SSL]");
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
/* $Id: file.c,v 1.104 2002/10/25 16:00:54 ukai Exp $ */
|
/* $Id: file.c,v 1.105 2002/10/25 19:59:54 ukai Exp $ */
|
||||||
#include "fm.h"
|
#include "fm.h"
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include "myctype.h"
|
#include "myctype.h"
|
||||||
|
|||||||
+2
-2
@@ -1,5 +1,5 @@
|
|||||||
/* $Id: version.c.in,v 1.17 2002/10/25 16:11:20 ukai Exp $ */
|
/* $Id: version.c.in,v 1.18 2002/10/25 19:59:58 ukai Exp $ */
|
||||||
#define CURRENT_VERSION "w3m/0.3.2rc1"
|
#define CURRENT_VERSION "w3m/0.3.2rc1+cvs"
|
||||||
|
|
||||||
#ifndef FM_H
|
#ifndef FM_H
|
||||||
char *w3m_version = CURRENT_VERSION;
|
char *w3m_version = CURRENT_VERSION;
|
||||||
|
|||||||
Reference in New Issue
Block a user