commit 849910a6cc9ce09150e3a551aafa405c1be780f5
parent 925e59c9db16a87027aceb7fd251bec67da98587
Author: ukai <ukai>
Date: Sat, 26 Jul 2003 17:17:28 +0000
fix indent
Diffstat:
2 files changed, 4 insertions(+), 5 deletions(-)
diff --git a/func.c b/func.c
@@ -110,7 +110,7 @@ setKeymap(char *p, int lineno, int verbose)
}
static void
-interpret_keymap(FILE *kf, struct stat *current, int force)
+interpret_keymap(FILE * kf, struct stat *current, int force)
{
int fd;
struct stat kstat;
@@ -124,8 +124,7 @@ interpret_keymap(FILE *kf, struct stat *current, int force)
(!force &&
kstat.st_mtime == current->st_mtime &&
kstat.st_dev == current->st_dev &&
- kstat.st_ino == current->st_ino &&
- kstat.st_size == current->st_size))
+ kstat.st_ino == current->st_ino && kstat.st_size == current->st_size))
return;
*current = kstat;
@@ -522,7 +521,7 @@ setMouseAction2(MouseActionMap * map, char *p)
}
static void
-interpret_mouse_action(FILE *mf)
+interpret_mouse_action(FILE * mf)
{
Str line;
char *p, *s;
diff --git a/menu.c b/menu.c
@@ -1670,7 +1670,7 @@ optionMenu(int x, int y, char **label, int *variable, int initial,
/* --- InitMenu --- */
static void
-interpret_menu(FILE *mf)
+interpret_menu(FILE * mf)
{
Str line;
char *p, *s;