Re: Review - Patch for pg_bsd_indent: improve formatting of multiline comments

Tom Lane <tgl@sss.pgh.pa.us>

From: Tom Lane <tgl@sss.pgh.pa.us>
To: John Naylor <johncnaylorls@gmail.com>
Cc: solaimurugan vellaipandiyan <drsolaimurugan.v@gmail.com>, Aleksander Alekseev <aleksander@tigerdata.com>, Payal Singh <payals1@umbc.edu>, pgsql-hackers@lists.postgresql.org
Date: 2026-05-11T05:04:54Z
Lists: pgsql-hackers
John Naylor <johncnaylorls@gmail.com> writes:
> On Mon, May 11, 2026 at 6:37 AM Tom Lane <tgl@sss.pgh.pa.us> wrote:
>> I think those are pretty much all improvements, except that it kind
>> of messes up Martin Utesch's ASCII-art signatures in the geqo files.

> Agreed, although this one now seems to use even more vertical space
> that doesn't contain anything:

> -/* Function works as follows:
> +/*
> + * Function works as follows:
> + *
>   *
>   *
> - * */
> + */

Yeah ... what's actually happening there is that it's replacing

 * */

with

 *
 */

although the diff misattributes the extra line.  There are few
enough of those that I didn't think it was worth getting
excited about ...

			regards, tom lane