[GRASS-dev] Re: GRASS 7 development started

Ivan Shmakov ivan at theory.asu.ru
Fri May 30 13:27:26 EDT 2008


>>>>> Hamish  <hamish_b at yahoo.com> 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.



More information about the grass-dev mailing list