run make indent

This commit is contained in:
Fumitoshi UKAI
2001-11-30 10:00:06 +00:00
parent c5cd840adb
commit ddafc8479a
3 changed files with 18 additions and 17 deletions
+4 -3
View File
@@ -1,4 +1,4 @@
/* $Id: file.c,v 1.20 2001/11/30 09:54:22 ukai Exp $ */
/* $Id: file.c,v 1.21 2001/11/30 10:00:06 ukai Exp $ */
#include "fm.h"
#include <sys/types.h>
#include "myctype.h"
@@ -143,6 +143,7 @@ char *violations[COO_EMAX] = {
};
#endif
/* *INDENT-OFF* */
static struct compression_decoder {
int type;
char *ext;
@@ -162,6 +163,7 @@ static struct compression_decoder {
1, INFLATE_CMDNAME, INFLATE_NAME, "deflate"},
{ CMP_NOCOMPRESS, NULL, NULL, 0, NULL, NULL, NULL},
};
/* *INDENT-ON* */
#define SAVE_BUF_SIZE 1536
@@ -371,8 +373,7 @@ check_command(char *cmd, int libfile_p)
Strcat_charp(pathname, p);
Strcat_char(pathname, '/');
Strcat_charp(pathname, cmd);
if (stat(pathname->ptr, &st) == 0
&& S_ISREG(st.st_mode)
if (stat(pathname->ptr, &st) == 0 && S_ISREG(st.st_mode)
&& (st.st_mode & S_IXANY) != 0)
return 1;
}
+1 -1
View File
@@ -1,4 +1,4 @@
/* $Id: mailcap.c,v 1.8 2001/11/30 09:54:22 ukai Exp $ */
/* $Id: mailcap.c,v 1.9 2001/11/30 10:00:06 ukai Exp $ */
#include "fm.h"
#include "myctype.h"
#include <stdio.h>
+1 -1
View File
@@ -1,4 +1,4 @@
/* $Id: main.c,v 1.27 2001/11/30 04:56:00 ukai Exp $ */
/* $Id: main.c,v 1.28 2001/11/30 10:00:06 ukai Exp $ */
#define MAINPROGRAM
#include "fm.h"
#include <signal.h>