On Thu, 23 Jan 2003, [UTF-8] Branko Čibej wrote:
> Not me. My changes don't contain tabs, the rest of the code does. Would
> you rather I did an M-x untabify before committing? :-)
Oh, oops, my bad. Didn't notice which way around it was. You did the
right thing then. :)
Cliff Woolley wrote:
>On 23 Jan 2003 [EMAIL PROTECTED] wrote:
>
>
>
>> {
>> char buffer[APR_PATH_MAX];
>> +apr_pool_t *subpool;
>> +apr_status_t status;
>> char *ptr;
>>
>> +status = apr_pool_create(&subpool, ctx);
>> +if (status)
>> +
On 23 Jan 2003 [EMAIL PROTECTED] wrote:
>{
> char buffer[APR_PATH_MAX];
> +apr_pool_t *subpool;
> +apr_status_t status;
> char *ptr;
>
> +status = apr_pool_create(&subpool, ctx);
> +if (status)
> +return status;
> +
> if
[EMAIL PROTECTED] wrote:
>brane 2003/01/22 17:04:09
>
> Modified:lib iconv_module.c iconv.h
> include apr_iconv.h
> .configure.in
> Log:
> A search path for conversion modules can now be defined in the
> APR_ICONV_PATH environment variable.
>