run make indent
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
/* $Id: linein.c,v 1.19 2002/01/16 15:37:06 ukai Exp $ */
|
||||
/* $Id: linein.c,v 1.20 2002/01/16 19:05:36 ukai Exp $ */
|
||||
#include "fm.h"
|
||||
#include "local.h"
|
||||
#include "myctype.h"
|
||||
@@ -229,8 +229,7 @@ inputLineHistSearch(char *prompt, char *def_str, int flag, Hist *hist,
|
||||
cm_disp_next = -1;
|
||||
}
|
||||
else if (!i_quote && c < 0x20) { /* Control code */
|
||||
if (incrfunc == NULL
|
||||
|| (c = incrfunc((int)c, strBuf)) < 0x20)
|
||||
if (incrfunc == NULL || (c = incrfunc((int)c, strBuf)) < 0x20)
|
||||
(*InputKeymap[(int)c]) (c);
|
||||
if (incrfunc)
|
||||
incrfunc(-1, strBuf);
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/* $Id: main.c,v 1.63 2002/01/16 19:02:15 ukai Exp $ */
|
||||
/* $Id: main.c,v 1.64 2002/01/16 19:05:37 ukai Exp $ */
|
||||
#define MAINPROGRAM
|
||||
#include "fm.h"
|
||||
#include <signal.h>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/* $Id: search.c,v 1.10 2002/01/16 19:02:16 ukai Exp $ */
|
||||
/* $Id: search.c,v 1.11 2002/01/16 19:05:37 ukai Exp $ */
|
||||
#include "fm.h"
|
||||
#include "regex.h"
|
||||
#include <errno.h>
|
||||
@@ -75,8 +75,10 @@ migemostr(char *str)
|
||||
again:
|
||||
if (fflush(migemow) != 0) {
|
||||
switch (errno) {
|
||||
case EINTR: goto again;
|
||||
default: goto err;
|
||||
case EINTR:
|
||||
goto again;
|
||||
default:
|
||||
goto err;
|
||||
}
|
||||
}
|
||||
tmp = Strfgets(migemor);
|
||||
|
||||
Reference in New Issue
Block a user