aboutsummaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2002-11-15 16:17:00 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2002-11-15 16:17:00 +0000
commit319a646415e96e08a46ed43f2eab81bf19242241 (patch)
tree7ac25041747d5341773bb41210a56d39988b771d /main.c
parent[w3m-dev 03440] Re: restore alarm event (diff)
downloadw3m-319a646415e96e08a46ed43f2eab81bf19242241.tar.gz
w3m-319a646415e96e08a46ed43f2eab81bf19242241.zip
fix indent
Diffstat (limited to 'main.c')
-rw-r--r--main.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/main.c b/main.c
index a778bf0..212a75c 100644
--- a/main.c
+++ b/main.c
@@ -1,4 +1,4 @@
-/* $Id: main.c,v 1.138 2002/11/15 16:14:25 ukai Exp $ */
+/* $Id: main.c,v 1.139 2002/11/15 16:17:00 ukai Exp $ */
#define MAINPROGRAM
#include "fm.h"
#include <signal.h>
@@ -5815,9 +5815,10 @@ DownloadListBuffer(void)
if (!FirstDL)
return NULL;
cur_time = time(0);
- src = Strnew_charp("<html><head><title>" DOWNLOAD_LIST_TITLE \
-"</title></head>\n<body><h1 align=center>" DOWNLOAD_LIST_TITLE "</h1>\n" \
-"<form method=internal action=download><hr>\n");
+ src = Strnew_charp("<html><head><title>" DOWNLOAD_LIST_TITLE
+ "</title></head>\n<body><h1 align=center>"
+ DOWNLOAD_LIST_TITLE "</h1>\n"
+ "<form method=internal action=download><hr>\n");
for (d = LastDL; d != NULL; d = d->prev) {
#ifdef HAVE_LSTAT
if (lstat(d->lock, &st))