From c4b7bb3cf19f5d847544de93c36329de8e59193b Mon Sep 17 00:00:00 2001 From: Andres Freund Date: Wed, 31 Jul 2019 00:05:21 -0700 Subject: Remove superfluous newlines in function prototypes. These were introduced by pgindent due to fixe to broken indentation (c.f. 8255c7a5eeba8). Previously the mis-indentation of function prototypes was creatively used to reduce indentation in a few places. As that formatting only exists in master and REL_12_STABLE, it seems better to fix it in both, rather than having some odd indentation in v12 that somebody might copy for future patches or such. Author: Andres Freund Discussion: https://postgr.es/m/20190728013754.jwcbe5nfyt3533vx@alap3.anarazel.de Backpatch: 12- --- src/include/utils/guc.h | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) (limited to 'src/include/utils') diff --git a/src/include/utils/guc.h b/src/include/utils/guc.h index e709177c376..e800230ed94 100644 --- a/src/include/utils/guc.h +++ b/src/include/utils/guc.h @@ -283,8 +283,7 @@ extern bool trace_sort; extern void SetConfigOption(const char *name, const char *value, GucContext context, GucSource source); -extern void DefineCustomBoolVariable( - const char *name, +extern void DefineCustomBoolVariable(const char *name, const char *short_desc, const char *long_desc, bool *valueAddr, @@ -295,8 +294,7 @@ extern void DefineCustomBoolVariable( GucBoolAssignHook assign_hook, GucShowHook show_hook); -extern void DefineCustomIntVariable( - const char *name, +extern void DefineCustomIntVariable(const char *name, const char *short_desc, const char *long_desc, int *valueAddr, @@ -309,8 +307,7 @@ extern void DefineCustomIntVariable( GucIntAssignHook assign_hook, GucShowHook show_hook); -extern void DefineCustomRealVariable( - const char *name, +extern void DefineCustomRealVariable(const char *name, const char *short_desc, const char *long_desc, double *valueAddr, @@ -323,8 +320,7 @@ extern void DefineCustomRealVariable( GucRealAssignHook assign_hook, GucShowHook show_hook); -extern void DefineCustomStringVariable( - const char *name, +extern void DefineCustomStringVariable(const char *name, const char *short_desc, const char *long_desc, char **valueAddr, @@ -335,8 +331,7 @@ extern void DefineCustomStringVariable( GucStringAssignHook assign_hook, GucShowHook show_hook); -extern void DefineCustomEnumVariable( - const char *name, +extern void DefineCustomEnumVariable(const char *name, const char *short_desc, const char *long_desc, int *valueAddr, -- cgit v1.2.3