Re: cvs commit: apr-iconv configure.in

2003-01-23 Thread Cliff Woolley
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. :)

Re: cvs commit: apr-iconv configure.in

2003-01-23 Thread Branko Äibej
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) >> +

Re: cvs commit: apr-iconv configure.in

2003-01-23 Thread Cliff Woolley
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

Re: cvs commit: apr-iconv configure.in

2003-01-23 Thread Branko Äibej
[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. >