aboutsummaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2002-11-08 16:07:03 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2002-11-08 16:07:03 +0000
commitca5ffe8720ee7f3f8eedc729b1eab5837178bcb4 (patch)
treecb19591f5c2e2fea6ae1fa65f22ef6e833258725 /main.c
parentupdate TODO (diff)
downloadw3m-ca5ffe8720ee7f3f8eedc729b1eab5837178bcb4.tar.gz
w3m-ca5ffe8720ee7f3f8eedc729b1eab5837178bcb4.zip
[w3m-dev 03390] some fixes related with form
* form.c (input_textarea): goto input_end unlink(tmpf); * main.c (_followForm): s/TEXT/Password/ From: Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp>
Diffstat (limited to 'main.c')
-rw-r--r--main.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/main.c b/main.c
index 5a0d083..29f7f91 100644
--- a/main.c
+++ b/main.c
@@ -1,4 +1,4 @@
-/* $Id: main.c,v 1.122 2002/11/08 16:01:21 ukai Exp $ */
+/* $Id: main.c,v 1.123 2002/11/08 16:07:07 ukai Exp $ */
#define MAINPROGRAM
#include "fm.h"
#include <signal.h>
@@ -3091,7 +3091,8 @@ _followForm(int submit)
disp_message_nsec("Read only field!", FALSE, 1, TRUE, FALSE);
return;
}
- p = inputLine("TEXT:", fi->value ? fi->value->ptr : NULL, IN_PASSWORD);
+ p = inputLine("Password:", fi->value ? fi->value->ptr : NULL,
+ IN_PASSWORD);
if (p == NULL)
return;
fi->value = Strnew_charp(p);