w3m

Unnamed repository; edit this file to name it for gitweb.
git clone https://logand.com/git/w3m.git/
Log | Files | Refs | README

commit 9db90be4bbe53cb0fcd6e778630eafdadd702dc6
parent b00f4507e745617e96dc143f735a42caf0e6bd8b
Author: ukai <ukai>
Date:   Thu, 30 Jan 2003 16:35:34 +0000

[w3m-dev 03717] print newline before exec shell command.
* main.c (execsh): print newline
From: Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp>

Diffstat:
MChangeLog | 5+++++
Mmain.c | 1+
2 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/ChangeLog b/ChangeLog @@ -1,5 +1,10 @@ 2003-01-31 Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp> + * [w3m-dev 03717] print newline before exec shell command. + * main.c (execsh): print newline + +2003-01-31 Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp> + * [w3m-dev 03715] initial currentLine when pager mode. * file.c (getNextPage): fix cur diff --git a/main.c b/main.c @@ -2002,6 +2002,7 @@ execsh(void) cmd = conv_to_system(cmd); if (cmd != NULL && *cmd != '\0') { fmTerm(); + printf("\n"); system(cmd); printf("\n[Hit any key]"); fflush(stdout);