run make indent
This commit is contained in:
5
search.c
5
search.c
@@ -1,4 +1,4 @@
|
|||||||
/* $Id: search.c,v 1.6 2002/01/11 02:24:13 a-ito Exp $ */
|
/* $Id: search.c,v 1.7 2002/01/11 03:00:16 ukai Exp $ */
|
||||||
#include "fm.h"
|
#include "fm.h"
|
||||||
#include "regex.h"
|
#include "regex.h"
|
||||||
|
|
||||||
@@ -23,8 +23,7 @@ forwardSearch(Buffer *buf, char *str)
|
|||||||
if (l->propBuf[pos] & PC_KANJI2)
|
if (l->propBuf[pos] & PC_KANJI2)
|
||||||
pos++;
|
pos++;
|
||||||
#endif
|
#endif
|
||||||
if (pos < l->len &&
|
if (pos < l->len && regexMatch(&l->lineBuf[pos], l->len - pos, 0) == 1) {
|
||||||
regexMatch(&l->lineBuf[pos], l->len - pos, 0) == 1) {
|
|
||||||
matchedPosition(&first, &last);
|
matchedPosition(&first, &last);
|
||||||
buf->pos = first - l->lineBuf;
|
buf->pos = first - l->lineBuf;
|
||||||
arrangeCursor(buf);
|
arrangeCursor(buf);
|
||||||
|
|||||||
Reference in New Issue
Block a user