Hamish:
> 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 ....
H