From ca7dc64d2591352c86138c2246ffa33e1b4135e8 Mon Sep 17 00:00:00 2001 From: Fumitoshi UKAI Date: Thu, 6 Dec 2001 15:48:35 +0000 Subject: [w3m-dev 02629] From: Hironori Sakamoto --- linein.c | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'linein.c') diff --git a/linein.c b/linein.c index 5612e00..48735de 100644 --- a/linein.c +++ b/linein.c @@ -1,4 +1,4 @@ -/* $Id: linein.c,v 1.10 2001/12/02 16:26:08 ukai Exp $ */ +/* $Id: linein.c,v 1.11 2001/12/06 15:48:35 ukai Exp $ */ #include "fm.h" #include "local.h" #include "myctype.h" @@ -676,11 +676,15 @@ next_compl(int next) return; cm_clear = FALSE; if (!cm_next) { - for (b = CPos - 1; b >= 0; b--) { - if (strBuf->ptr[b] == ' ' || strBuf->ptr[b] == CTRL_I) - break; + if (cm_mode & CPL_ALWAYS) { + b = 0; + } else { + for (b = CPos - 1; b >= 0; b--) { + if (strBuf->ptr[b] == ' ' || strBuf->ptr[b] == CTRL_I) + break; + } + b++; } - b++; a = CPos; CBeforeBuf = Strsubstr(strBuf, 0, b); buf = Strsubstr(strBuf, b, a - b); -- cgit v1.2.3