fix indent
This commit is contained in:
9
func.c
9
func.c
@@ -1,4 +1,4 @@
|
|||||||
/* $Id: func.c,v 1.23 2003/07/26 17:16:24 ukai Exp $ */
|
/* $Id: func.c,v 1.24 2003/07/26 17:17:28 ukai Exp $ */
|
||||||
/*
|
/*
|
||||||
* w3m func.c
|
* w3m func.c
|
||||||
*/
|
*/
|
||||||
@@ -110,7 +110,7 @@ setKeymap(char *p, int lineno, int verbose)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
interpret_keymap(FILE *kf, struct stat *current, int force)
|
interpret_keymap(FILE * kf, struct stat *current, int force)
|
||||||
{
|
{
|
||||||
int fd;
|
int fd;
|
||||||
struct stat kstat;
|
struct stat kstat;
|
||||||
@@ -124,8 +124,7 @@ interpret_keymap(FILE *kf, struct stat *current, int force)
|
|||||||
(!force &&
|
(!force &&
|
||||||
kstat.st_mtime == current->st_mtime &&
|
kstat.st_mtime == current->st_mtime &&
|
||||||
kstat.st_dev == current->st_dev &&
|
kstat.st_dev == current->st_dev &&
|
||||||
kstat.st_ino == current->st_ino &&
|
kstat.st_ino == current->st_ino && kstat.st_size == current->st_size))
|
||||||
kstat.st_size == current->st_size))
|
|
||||||
return;
|
return;
|
||||||
*current = kstat;
|
*current = kstat;
|
||||||
|
|
||||||
@@ -522,7 +521,7 @@ setMouseAction2(MouseActionMap * map, char *p)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
interpret_mouse_action(FILE *mf)
|
interpret_mouse_action(FILE * mf)
|
||||||
{
|
{
|
||||||
Str line;
|
Str line;
|
||||||
char *p, *s;
|
char *p, *s;
|
||||||
|
|||||||
4
menu.c
4
menu.c
@@ -1,4 +1,4 @@
|
|||||||
/* $Id: menu.c,v 1.32 2003/07/26 17:16:24 ukai Exp $ */
|
/* $Id: menu.c,v 1.33 2003/07/26 17:17:28 ukai Exp $ */
|
||||||
/*
|
/*
|
||||||
* w3m menu.c
|
* w3m menu.c
|
||||||
*/
|
*/
|
||||||
@@ -1670,7 +1670,7 @@ optionMenu(int x, int y, char **label, int *variable, int initial,
|
|||||||
/* --- InitMenu --- */
|
/* --- InitMenu --- */
|
||||||
|
|
||||||
static void
|
static void
|
||||||
interpret_menu(FILE *mf)
|
interpret_menu(FILE * mf)
|
||||||
{
|
{
|
||||||
Str line;
|
Str line;
|
||||||
char *p, *s;
|
char *p, *s;
|
||||||
|
|||||||
Reference in New Issue
Block a user