fix indent

This commit is contained in:
Fumitoshi UKAI
2003-01-23 18:38:04 +00:00
parent 61c2c2de18
commit c50771b0a1
5 changed files with 25 additions and 21 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
/* $Id: buffer.c,v 1.20 2003/01/23 18:37:20 ukai Exp $ */
/* $Id: buffer.c,v 1.21 2003/01/23 18:38:04 ukai Exp $ */
#include "fm.h"
#ifdef USE_MOUSE
+8 -5
View File
@@ -1,4 +1,4 @@
/* $Id: display.c,v 1.53 2003/01/23 18:37:20 ukai Exp $ */
/* $Id: display.c,v 1.54 2003/01/23 18:38:05 ukai Exp $ */
#include <signal.h>
#include "fm.h"
@@ -364,7 +364,9 @@ displayBuffer(Buffer *buf, int mode)
if (buf->height == 0)
buf->height = LASTLINE + 1;
if ((buf->width != INIT_BUFFER_WIDTH && (buf->type &&
!strcmp(buf->type, "text/html") || FoldLine)) || buf->need_reshape) {
!strcmp(buf->type, "text/html")
|| FoldLine))
|| buf->need_reshape) {
buf->need_reshape = TRUE;
reshapeBuffer(buf);
}
@@ -1260,8 +1262,7 @@ cursorUp(Buffer *buf, int n)
}
cursorUp0(buf, n);
while (buf->currentLine->prev && buf->currentLine->bpos &&
buf->currentLine->bwidth >=
buf->currentColumn + buf->visualpos)
buf->currentLine->bwidth >= buf->currentColumn + buf->visualpos)
cursorUp0(buf, n);
}
@@ -1389,7 +1390,9 @@ cursorLeft(Buffer *buf, int n)
cpos = COLPOS(l, buf->pos);
buf->visualpos = l->bwidth + cpos - buf->currentColumn;
if (buf->visualpos - l->bwidth < 0 && n) {
columnSkip(buf, -n + buf->visualpos - l->bwidth - (buf->visualpos - l->bwidth) % n);
columnSkip(buf,
-n + buf->visualpos - l->bwidth - (buf->visualpos -
l->bwidth) % n);
buf->visualpos = l->bwidth + cpos - buf->currentColumn;
}
buf->cursorX = buf->visualpos - l->bwidth;
+1 -1
View File
@@ -1,4 +1,4 @@
/* $Id: etc.c,v 1.58 2003/01/23 18:37:20 ukai Exp $ */
/* $Id: etc.c,v 1.59 2003/01/23 18:38:06 ukai Exp $ */
#include "fm.h"
#include <pwd.h>
#include "myctype.h"
+1 -1
View File
@@ -1,4 +1,4 @@
/* $Id: file.c,v 1.203 2003/01/23 18:37:20 ukai Exp $ */
/* $Id: file.c,v 1.204 2003/01/23 18:38:06 ukai Exp $ */
#include "fm.h"
#include <sys/types.h>
#include "myctype.h"
+3 -2
View File
@@ -1,4 +1,4 @@
/* $Id: main.c,v 1.198 2003/01/23 18:37:21 ukai Exp $ */
/* $Id: main.c,v 1.199 2003/01/23 18:38:08 ukai Exp $ */
#define MAINPROGRAM
#include "fm.h"
#include <signal.h>
@@ -2487,7 +2487,8 @@ linend(void)
{
if (Currentbuf->firstLine == NULL)
return;
while (Currentbuf->currentLine->next && Currentbuf->currentLine->next->bpos)
while (Currentbuf->currentLine->next
&& Currentbuf->currentLine->next->bpos)
cursorDown0(Currentbuf, 1);
Currentbuf->pos = Currentbuf->currentLine->len - 1;
arrangeCursor(Currentbuf);