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

Re: [PATCH v3] Conflict option labels

From: Ivan Zhakov <ivan_at_visualsvn.com>
Date: Fri, 14 Oct 2016 14:48:42 +0200

On 14 October 2016 at 12:06, Ivan Zhakov <ivan_at_visualsvn.com> wrote:
> On 14 October 2016 at 11:43, Ivan Zhakov <ivan_at_visualsvn.com> wrote:
>> On 13 October 2016 at 17:26, Patrick Steinhardt <ps_at_pks.im> wrote:
>>> Hi,
>>>
>>> the third version re-adds the result pool to
>>> `svn_client_conflict_option_get_lazel`.
>>>
>> [...]
>>> @@ -582,15 +604,16 @@ prompt_string(const resolver_option_t *options,
>>> }
>>> else
>>> {
>>> - opt = options++;
>>> - if (! opt->code)
>>> + if (i >= options->nelts)
>>> break;
>>> + opt = APR_ARRAY_IDX(options, i, client_option_t *);
>>> + i++;
>>> }
>>>
>>> if (! first)
>>> result = apr_pstrcat(pool, result, ",", SVN_VA_NULL);
>>> s = apr_psprintf(pool, " (%s) %s", opt->code,
>>> - opt->short_desc ? _(opt->short_desc) : opt->long_desc);
>>> + opt->label ? _(opt->label) : opt->long_desc);
>> The opt->label is already localized, so _() is not needed.
>>
>> Beside of that patch looks fine and I'm ready to commit it in current
>> state. Stefan, do you have any comments on the patch?
>>
> Here is updated patch and log message that adapted to r1764848 changes.
Committed in r1764883. Thanks!

-- 
Ivan Zhakov
Received on 2016-10-14 14:49:08 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.