fix indent

This commit is contained in:
Fumitoshi UKAI
2002-11-05 17:12:02 +00:00
parent a772c51a16
commit d93f1df6c4
4 changed files with 40 additions and 40 deletions
+4 -3
View File
@@ -1,4 +1,4 @@
/* $Id: display.c,v 1.26 2002/11/05 17:10:05 ukai Exp $ */ /* $Id: display.c,v 1.27 2002/11/05 17:12:02 ukai Exp $ */
#include <signal.h> #include <signal.h>
#include "fm.h" #include "fm.h"
@@ -1221,9 +1221,10 @@ arrangeCursor(Buffer *buf)
return; return;
/* Arrange line */ /* Arrange line */
if (buf->currentLine->linenumber - buf->topLine->linenumber >= LASTLINE - if (buf->currentLine->linenumber - buf->topLine->linenumber >= LASTLINE -
buf->rootY || buf->currentLine->linenumber < buf->topLine->linenumber) { buf->rootY
|| buf->currentLine->linenumber < buf->topLine->linenumber) {
/* /*
buf->topLine = buf->currentLine; * buf->topLine = buf->currentLine;
*/ */
buf->topLine = lineSkip(buf, buf->currentLine, 0, FALSE); buf->topLine = lineSkip(buf, buf->currentLine, 0, FALSE);
} }
+3 -2
View File
@@ -1,4 +1,4 @@
/* $Id: etc.c,v 1.31 2002/11/05 17:10:05 ukai Exp $ */ /* $Id: etc.c,v 1.32 2002/11/05 17:12:02 ukai Exp $ */
#include "fm.h" #include "fm.h"
#include <pwd.h> #include <pwd.h>
#include "myctype.h" #include "myctype.h"
@@ -92,7 +92,8 @@ lineSkip(Buffer *buf, Line *line, int offset, int last)
if (!nextpage_topline) if (!nextpage_topline)
#endif #endif
for (i = (LASTLINE - 1 - buf->rootY) - (buf->lastLine->linenumber for (i = (LASTLINE - 1 - buf->rootY) - (buf->lastLine->linenumber
- l->linenumber); i > 0 && l->prev != NULL; i--, l = l->prev) ; - l->linenumber);
i > 0 && l->prev != NULL; i--, l = l->prev) ;
return l; return l;
} }
+9 -11
View File
@@ -1,4 +1,4 @@
/* $Id: main.c,v 1.118 2002/11/05 17:10:06 ukai Exp $ */ /* $Id: main.c,v 1.119 2002/11/05 17:12:02 ukai Exp $ */
#define MAINPROGRAM #define MAINPROGRAM
#include "fm.h" #include "fm.h"
#include <signal.h> #include <signal.h>
@@ -1360,7 +1360,8 @@ pgBack(void)
{ {
#ifdef VI_PREC_NUM #ifdef VI_PREC_NUM
if (vi_prec_num) if (vi_prec_num)
nscroll(-searchKeyNum() * (LASTLINE - Currentbuf->rootY - 1), B_NORMAL); nscroll(-searchKeyNum() * (LASTLINE - Currentbuf->rootY - 1),
B_NORMAL);
else else
#endif #endif
nscroll(-(prec_num ? searchKeyNum() : searchKeyNum() nscroll(-(prec_num ? searchKeyNum() : searchKeyNum()
@@ -4687,8 +4688,7 @@ posTab(int x, int y)
if (col <= 0) if (col <= 0)
return NULL; return NULL;
n = x * N_TAB / col + y * N_TAB; n = x * N_TAB / col + y * N_TAB;
for (t = FirstTab, i = 0; t && i < n; t = t->nextTab, i++) for (t = FirstTab, i = 0; t && i < n; t = t->nextTab, i++) ;
;
return t; return t;
} }
@@ -5446,8 +5446,7 @@ numTab(int n)
return FirstTab; return FirstTab;
if (nTab <= 1) if (nTab <= 1)
return NULL; return NULL;
for (tab = FirstTab, i = 1; tab && i < n; tab = tab->nextTab, i++) for (tab = FirstTab, i = 1; tab && i < n; tab = tab->nextTab, i++) ;
;
return tab; return tab;
} }
@@ -5679,8 +5678,8 @@ tabR(void)
TabBuffer *tab; TabBuffer *tab;
int i; int i;
for (tab = CurrentTab, i = 0; tab && i < PREC_NUM; tab = tab->nextTab, i++) for (tab = CurrentTab, i = 0; tab && i < PREC_NUM;
; tab = tab->nextTab, i++) ;
moveTab(CurrentTab, tab ? tab : LastTab, TRUE); moveTab(CurrentTab, tab ? tab : LastTab, TRUE);
} }
@@ -5690,8 +5689,7 @@ tabL(void)
TabBuffer *tab; TabBuffer *tab;
int i; int i;
for (tab = CurrentTab, i = 0; tab && i < PREC_NUM; tab = tab->prevTab, i++) for (tab = CurrentTab, i = 0; tab && i < PREC_NUM;
; tab = tab->prevTab, i++) ;
moveTab(CurrentTab, tab ? tab : FirstTab, FALSE); moveTab(CurrentTab, tab ? tab : FirstTab, FALSE);
} }
+1 -1
View File
@@ -1,4 +1,4 @@
/* $Id: map.c,v 1.9 2002/11/05 17:10:07 ukai Exp $ */ /* $Id: map.c,v 1.10 2002/11/05 17:12:02 ukai Exp $ */
/* /*
* client-side image maps * client-side image maps
*/ */