aboutsummaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2003-01-30 16:35:34 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2003-01-30 16:35:34 +0000
commit2517af675a8e01778fe253bdbdf75482e7484bfd (patch)
tree0a3b09cdd30f5a4f95d65837543e0d5db1fa9867 /main.c
parent[w3m-dev 03715] initial currentLine when pager mode. (diff)
downloadw3m-2517af675a8e01778fe253bdbdf75482e7484bfd.tar.gz
w3m-2517af675a8e01778fe253bdbdf75482e7484bfd.zip
[w3m-dev 03717] print newline before exec shell command.
* main.c (execsh): print newline From: Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp>
Diffstat (limited to '')
-rw-r--r--main.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/main.c b/main.c
index 1b3853d..f1c5aa9 100644
--- a/main.c
+++ b/main.c
@@ -1,4 +1,4 @@
-/* $Id: main.c,v 1.206 2003/01/30 16:21:59 ukai Exp $ */
+/* $Id: main.c,v 1.207 2003/01/30 16:35:38 ukai Exp $ */
#define MAINPROGRAM
#include "fm.h"
#include <signal.h>
@@ -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);