aboutsummaryrefslogtreecommitdiffstats
path: root/form.c
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2003-09-26 17:59:51 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2003-09-26 17:59:51 +0000
commiteb5aa3e9152b2078fc3341625b9eeecd6328494a (patch)
treea19587f2a7efc6f78ce5946016aad9d16ca30d53 /form.c
parentconv.c ucs_eucjp.h ucs_latin1.h: deleted (diff)
downloadw3m-eb5aa3e9152b2078fc3341625b9eeecd6328494a.tar.gz
w3m-eb5aa3e9152b2078fc3341625b9eeecd6328494a.zip
add comments
Diffstat (limited to '')
-rw-r--r--form.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/form.c b/form.c
index 21fbaef..bfb57cc 100644
--- a/form.c
+++ b/form.c
@@ -1,4 +1,4 @@
-/* $Id: form.c,v 1.32 2003/09/22 21:02:18 ukai Exp $ */
+/* $Id: form.c,v 1.33 2003/09/26 17:59:51 ukai Exp $ */
/*
* HTML forms
*/
@@ -572,6 +572,7 @@ input_textarea(FormItemList *fi)
f = fopen(tmpf, "w");
if (f == NULL) {
+ /* FIXME: gettextize? */
disp_err_message("Can't open temporary file", FALSE);
return;
}
@@ -587,6 +588,7 @@ input_textarea(FormItemList *fi)
goto input_end;
f = fopen(tmpf, "r");
if (f == NULL) {
+ /* FIXME: gettextize? */
disp_err_message("Can't open temporary file", FALSE);
goto input_end;
}