const char **rt_identifiers)
{
ListCell *lc;
- pgpa_output_context context;
+ pgpa_output_context context;
context.rt_identifiers = rt_identifiers;
context.buf = buf;
static void
pgpa_maybe_linebreak(StringInfo buf, int wrap_column)
{
- char *trailing_nl;
- int line_start;
- int save_cursor;
+ char *trailing_nl;
+ int line_start;
+ int save_cursor;
/* If line wrapping is disabled, exit quickly. */
if (wrap_column <= 0)
line_start = (trailing_nl - buf->data) + 1;
/*
- * Remember that the current end of the buffer is a potential location
- * to insert a line break on a future call to this function.
+ * Remember that the current end of the buffer is a potential location to
+ * insert a line break on a future call to this function.
*/
save_cursor = buf->cursor;
buf->cursor = buf->len;