[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Long argument lines (was: [PATCH] v4. line_transformer callback)

From: Greg Stein <gstein_at_gmail.com>
Date: Thu, 27 Aug 2009 20:10:10 -0400

On Thu, Aug 27, 2009 at 16:56, Blair Zajac<blair_at_orcaware.com> wrote:
> Hyrum K. Wright wrote:
>> On Aug 27, 2009, at 10:00 PM, Blair Zajac wrote:
>>> void
>>> svn_stream_set_line_transformer_callback
>>>   (svn_stream_t *stream,
>>>    svn_io_line_transformer_cb_t line_transformer_cb)
>>
>> I think no-space-before-paren disallows this.  One convention I've
>> seen in other parameter lists is:
>>
>> void
>> svn_stream_set_line_transformer_callback(svn_stream_t *stream,
>>                                           svn_io_line_transformer_cb_t
>>
>> line_transformer_cb)
>
> Is that line wrapped? I can't tell what the mailer did to this line.  Do you
> have a function in mind where you've seen this.

It wrapped on me, too, so I dunno what he was doing. I suspect something like:

void foo(int arg1,
         some_long_type_name
           indented_arg_name)

but ugh. The solution to all this is simply:

void foo(
  int arg1,
  some_long_type_name some_long_arg_name);

Look at the typedef declarations in svn_editor.h. This is basically
what Blair was doing, but keeping the paren next to the function name.

Note that referring to svn_auth.h is probably not good, since that is
an old file and most likely contains old whitespace brokenness from
before our massive conversion. There simply shouldn't be any
whitespace before an open paren in a typedef or function call or
function definition.

Cheers,
-g

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=462&dsMessageId=2388073
Received on 2009-08-28 08:12:58 CEST

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.