Hamish wrote:

> > One thing I notice is that _(i18n) macros can break like
> > 
> > G_message(_
> >       ("Some message");
> > 
> > maybe some regex pass after indent to change that to
> > 
> > G_message(
> >       _("Some message");
> > 
> > ?
> 
> 
> better example:
>  G_fatal_error
>       (_
>        ("Can't get projection info of current location
> 
> 
> 
> ->  G_fatal_error(
>            _("Can't get projection info ....

Can you identify a particular file where this happens, so that I can
try things?

I didn't realise that it would insert a line break between a function
name and its argument list.

We may be better off simply omitting the -l switch, and relying on
programmers to break long lines manually.

-- 
Glynn Clements <[EMAIL PROTECTED]>
_______________________________________________
grass-dev mailing list
[email protected]
http://lists.osgeo.org/mailman/listinfo/grass-dev

Reply via email to