commit 3ccec334081eaf7cb001e74010369914f94e28ae
parent ffc94960c6a53736d2f0b5e984e261c5570352b0
Author: ukai <ukai>
Date: Wed, 29 Jan 2003 17:26:51 +0000
fix indent
Diffstat:
M | file.c | | | 6 | +++--- |
M | image.c | | | 34 | +++++++++++++++++----------------- |
2 files changed, 20 insertions(+), 20 deletions(-)
diff --git a/file.c b/file.c
@@ -6615,12 +6615,12 @@ loadHTMLstream(URLFile *f, Buffer *newBuf, FILE * src, int internal)
if (htmlenv1.title)
newBuf->buffername = htmlenv1.title;
if (w3m_halfdump) {
- TRAP_OFF;
+ TRAP_OFF;
print_internal_information(&htmlenv1);
return;
}
if (w3m_backend) {
- TRAP_OFF;
+ TRAP_OFF;
print_internal_information(&htmlenv1);
backend_halfdump_buf = htmlenv1.buf;
return;
@@ -6650,7 +6650,7 @@ loadHTMLString(Str page)
newBuf = newBuffer(INIT_BUFFER_WIDTH);
if (SETJMP(AbortLoading) != 0) {
- TRAP_OFF;
+ TRAP_OFF;
discardBuffer(newBuf);
return NULL;
}
diff --git a/image.c b/image.c
@@ -344,13 +344,13 @@ loadImage(Buffer *buf, int flag)
continue;
if (cache->pid) {
kill(cache->pid, SIGKILL);
-/*
-#ifdef HAVE_WAITPID
- waitpid(cache->pid, &wait_st, 0);
-#else
- wait(&wait_st);
-#endif
-*/
+ /*
+ * #ifdef HAVE_WAITPID
+ * waitpid(cache->pid, &wait_st, 0);
+ * #else
+ * wait(&wait_st);
+ * #endif
+ */
cache->pid = 0;
}
if (!stat(cache->file, &st)) {
@@ -373,13 +373,13 @@ loadImage(Buffer *buf, int flag)
continue;
if (cache->pid) {
kill(cache->pid, SIGKILL);
-/*
-#ifdef HAVE_WAITPID
- waitpid(cache->pid, &wait_st, 0);
-#else
- wait(&wait_st);
-#endif
-*/
+ /*
+ * #ifdef HAVE_WAITPID
+ * waitpid(cache->pid, &wait_st, 0);
+ * #else
+ * wait(&wait_st);
+ * #endif
+ */
cache->pid = 0;
}
unlink(cache->touch);
@@ -427,9 +427,9 @@ loadImage(Buffer *buf, int flag)
flush_tty();
if ((cache->pid = fork()) == 0) {
Buffer *b;
-/*
- setup_child(TRUE, 0, -1);
-*/
+ /*
+ * setup_child(TRUE, 0, -1);
+ */
setup_child(FALSE, 0, -1);
image_source = cache->file;
b = loadGeneralFile(cache->url, cache->current, NULL, 0, NULL);