>>>>> Hamish  <[EMAIL PROTECTED]> writes:

 >> 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 ....

        It still looks much better as:

    G_fatal_error (_("Can't get projection"
                     " info of current location"
                     ...) ...);

        But I know no easy way to automate such a splitting.

_______________________________________________
grass-dev mailing list
[email protected]
http://lists.osgeo.org/mailman/listinfo/grass-dev

Reply via email to