aboutsummaryrefslogtreecommitdiffstats
path: root/file.c
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2002-12-09 15:32:16 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2002-12-09 15:32:16 +0000
commit6a24638eee1596c6de74057b3b05a90612c3d0e7 (patch)
treeaf1c20e57fb4d9f86e3d3f4a30ef7fff3c151eee /file.c
parent[w3m-dev 03543] External URI loader (Debian closes: Bug#169962) (diff)
downloadw3m-6a24638eee1596c6de74057b3b05a90612c3d0e7.tar.gz
w3m-6a24638eee1596c6de74057b3b05a90612c3d0e7.zip
* file.c (loadGeneralFile): missing `{', fix indent for SCM_UNKNOWN
* main.c (set_buffer_environ): unused variables `prev_col' From: Fumitoshi UKAI <ukai@debian.or.jp>
Diffstat (limited to 'file.c')
-rw-r--r--file.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/file.c b/file.c
index 7a91332..21c7134 100644
--- a/file.c
+++ b/file.c
@@ -1,4 +1,4 @@
-/* $Id: file.c,v 1.154 2002/12/09 15:27:44 ukai Exp $ */
+/* $Id: file.c,v 1.155 2002/12/09 15:32:18 ukai Exp $ */
#include "fm.h"
#include <sys/types.h>
#include "myctype.h"
@@ -1572,8 +1572,8 @@ loadGeneralFile(char *path, ParsedURL *volatile current, char *referer,
tmp = searchURIMethods(&pu);
if (tmp != NULL)
b = loadGeneralFile(tmp->ptr, current, referer, flag, request);
- if (b != NULL && b != NO_BUFFER)
- copyParsedURL(&b->currentURL, &pu);
+ if (b != NULL && b != NO_BUFFER) {
+ copyParsedURL(&b->currentURL, &pu);
return b;
}
#endif