mirror of
https://github.com/postgres/postgres.git
synced 2025-07-26 01:22:12 +03:00
Phase 2 pgindent run for v12.
Switch to 2.1 version of pg_bsd_indent. This formats multiline function declarations "correctly", that is with additional lines of parameter declarations indented to match where the first line's left parenthesis is. Discussion: https://postgr.es/m/CAEepm=0P3FeTXRcU5B2W3jv3PgRVZ-kGUXLGfd42FFhUROO3ug@mail.gmail.com
This commit is contained in:
@ -144,7 +144,7 @@
|
||||
#define TEXTDOMAIN NULL
|
||||
|
||||
extern bool errstart(int elevel, const char *filename, int lineno,
|
||||
const char *funcname, const char *domain);
|
||||
const char *funcname, const char *domain);
|
||||
extern void errfinish(int dummy,...);
|
||||
|
||||
extern int errcode(int sqlerrcode);
|
||||
@ -155,20 +155,20 @@ extern int errcode_for_socket_access(void);
|
||||
extern int errmsg(const char *fmt,...) pg_attribute_printf(1, 2);
|
||||
extern int errmsg_internal(const char *fmt,...) pg_attribute_printf(1, 2);
|
||||
|
||||
extern int errmsg_plural(const char *fmt_singular, const char *fmt_plural,
|
||||
unsigned long n,...) pg_attribute_printf(1, 4) pg_attribute_printf(2, 4);
|
||||
extern int errmsg_plural(const char *fmt_singular, const char *fmt_plural,
|
||||
unsigned long n,...) pg_attribute_printf(1, 4) pg_attribute_printf(2, 4);
|
||||
|
||||
extern int errdetail(const char *fmt,...) pg_attribute_printf(1, 2);
|
||||
extern int errdetail_internal(const char *fmt,...) pg_attribute_printf(1, 2);
|
||||
|
||||
extern int errdetail_log(const char *fmt,...) pg_attribute_printf(1, 2);
|
||||
|
||||
extern int errdetail_log_plural(const char *fmt_singular,
|
||||
const char *fmt_plural,
|
||||
unsigned long n,...) pg_attribute_printf(1, 4) pg_attribute_printf(2, 4);
|
||||
extern int errdetail_log_plural(const char *fmt_singular,
|
||||
const char *fmt_plural,
|
||||
unsigned long n,...) pg_attribute_printf(1, 4) pg_attribute_printf(2, 4);
|
||||
|
||||
extern int errdetail_plural(const char *fmt_singular, const char *fmt_plural,
|
||||
unsigned long n,...) pg_attribute_printf(1, 4) pg_attribute_printf(2, 4);
|
||||
extern int errdetail_plural(const char *fmt_singular, const char *fmt_plural,
|
||||
unsigned long n,...) pg_attribute_printf(1, 4) pg_attribute_printf(2, 4);
|
||||
|
||||
extern int errhint(const char *fmt,...) pg_attribute_printf(1, 2);
|
||||
|
||||
|
Reference in New Issue
Block a user