diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-06-01 16:31:54 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-06-01 16:31:54 +0000 |
commit | 894c5097b7d55ba59f15761bc5c3c76f1504af0a (patch) | |
tree | 25e551d381095d084ab8087f1815b7ce3b08935b /linein.c | |
parent | [w3m-dev 03191] typo in file.c:extract_auth_val()? (diff) | |
download | w3m-894c5097b7d55ba59f15761bc5c3c76f1504af0a.tar.gz w3m-894c5097b7d55ba59f15761bc5c3c76f1504af0a.zip |
[w3m-dev 03196] C-w
* linein.c (inputLineHistSearch) move_word changed
* linein.c (setStrType): add space to termchar
From: Hiroaki Shimotsu <shim@d5.bs1.fc.nec.co.jp>
Diffstat (limited to 'linein.c')
-rw-r--r-- | linein.c | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -1,4 +1,4 @@ -/* $Id: linein.c,v 1.22 2002/01/31 03:55:35 ukai Exp $ */ +/* $Id: linein.c,v 1.23 2002/06/01 16:31:55 ukai Exp $ */ #include "fm.h" #include "local.h" #include "myctype.h" @@ -97,7 +97,7 @@ inputLineHistSearch(char *prompt, char *def_str, int flag, Hist *hist, in_kanji = FALSE; #endif is_passwd = FALSE; - move_word = FALSE; + move_word = TRUE; CurrentHist = hist; if (hist != NULL) { @@ -109,15 +109,14 @@ inputLineHistSearch(char *prompt, char *def_str, int flag, Hist *hist, } if (flag & IN_URL) { cm_mode = CPL_ALWAYS | CPL_URL; - move_word = TRUE; } else if (flag & IN_FILENAME) { cm_mode = CPL_ALWAYS; - move_word = TRUE; } else if (flag & IN_PASSWORD) { cm_mode = CPL_NEVER; is_passwd = TRUE; + move_word = FALSE; } else if (flag & IN_COMMAND) cm_mode = CPL_ON; @@ -1115,7 +1114,7 @@ setStrType(Str str, Lineprop *prop) static int terminated(unsigned char c) { - int termchar[] = { '/', '&', '?', -1 }; + int termchar[] = { '/', '&', '?', ' ', -1 }; int *tp; for (tp = termchar; *tp > 0; tp++) { |