Re-indent with indent-2.2.12

This commit is contained in:
Kim Woelders 2019-08-14 18:45:13 +02:00
parent 9d3875afce
commit 88dba1cfff
36 changed files with 123 additions and 124 deletions

View File

@ -398,8 +398,7 @@ static struct default_include {
= INCLUDE_DEFAULTS; = INCLUDE_DEFAULTS;
#else #else
= = {
{
/* Pick up GNU C++ specific include files. */ /* Pick up GNU C++ specific include files. */
{ {
GPLUSPLUS_INCLUDE_DIR, 1, 1} GPLUSPLUS_INCLUDE_DIR, 1, 1}

View File

@ -55,9 +55,9 @@ static struct {
Idler *idler; Idler *idler;
unsigned int time_ms; /* Just use Mode.events.time_ms? */ unsigned int time_ms; /* Just use Mode.events.time_ms? */
unsigned int seqn; unsigned int seqn;
} Mode_anim = } Mode_anim = {
{ NULL, NULL, 0, 0
NULL, NULL, 0, 0}; };
static int static int
_AnimatorsTimer(void *timer_call) _AnimatorsTimer(void *timer_call)

View File

@ -294,9 +294,9 @@ EwcWcsToStr(const wchar_t * wcs, int wcl, char *str, int len)
static struct { static struct {
char *internal; char *internal;
char *exported; char *exported;
} Conf_locale = } Conf_locale = {
{ NULL, NULL
NULL, NULL}; };
static struct { static struct {
char init; char init;

View File

@ -61,9 +61,9 @@ static LIST_HEAD(slideout_list);
static struct { static struct {
Slideout *active; Slideout *active;
} Mode_slideouts = } Mode_slideouts = {
{ NULL
NULL}; };
static void SlideoutHandleEvent(Win win, XEvent * ev, void *prm); static void SlideoutHandleEvent(Win win, XEvent * ev, void *prm);