fix indent

This commit is contained in:
Fumitoshi UKAI
2002-12-03 16:09:41 +00:00
parent 3546830a99
commit 3c84aef6f7
2 changed files with 7 additions and 7 deletions
+3 -3
View File
@@ -1,4 +1,4 @@
/* $Id: func.c,v 1.19 2002/12/03 16:07:40 ukai Exp $ */ /* $Id: func.c,v 1.20 2002/12/03 16:09:41 ukai Exp $ */
/* /*
* w3m func.c * w3m func.c
*/ */
@@ -53,7 +53,7 @@ setKeymap(char *p, int lineno, int verbose)
int i, j, m = MULTI_KEY(c); int i, j, m = MULTI_KEY(c);
if (m & K_ESCD) if (m & K_ESCD)
map = EscDKeymap; map = EscDKeymap;
else if (m & K_ESCB) else if (m & K_ESCB)
map = EscBKeymap; map = EscBKeymap;
else if (m & K_ESC) else if (m & K_ESC)
@@ -89,7 +89,7 @@ setKeymap(char *p, int lineno, int verbose)
} }
else { else {
if (c & K_ESCD) if (c & K_ESCD)
map = EscDKeymap; map = EscDKeymap;
else if (c & K_ESCB) else if (c & K_ESCB)
map = EscBKeymap; map = EscBKeymap;
else if (c & K_ESC) else if (c & K_ESC)
+4 -4
View File
@@ -1,4 +1,4 @@
/* $Id: main.c,v 1.157 2002/12/03 16:01:37 ukai Exp $ */ /* $Id: main.c,v 1.158 2002/12/03 16:09:43 ukai Exp $ */
#define MAINPROGRAM #define MAINPROGRAM
#include "fm.h" #include "fm.h"
#include <signal.h> #include <signal.h>
@@ -1217,7 +1217,7 @@ escmap(void)
char c; char c;
c = getch(); c = getch();
if (IS_ASCII(c)) if (IS_ASCII(c))
escKeyProc((int)c, K_ESC, EscKeymap); escKeyProc((int)c, K_ESC, EscKeymap);
} }
void void
@@ -1230,7 +1230,7 @@ escbmap(void)
return; return;
} }
if (IS_ASCII(c)) if (IS_ASCII(c))
escKeyProc((int)c, K_ESCB, EscBKeymap); escKeyProc((int)c, K_ESCB, EscBKeymap);
} }
void void
@@ -1244,7 +1244,7 @@ escdmap(char c)
c = getch(); c = getch();
} }
if (c == '~') if (c == '~')
escKeyProc((int)d, K_ESCD, EscDKeymap); escKeyProc((int)d, K_ESCD, EscDKeymap);
} }
void void