V Mon, Apr 10, 2023 at 01:29:41PM -0600, Nicolas Bock napsal(a):
> The following code is aligned incorrectly using indent-2.2.12:
>
> ```C
> #include
>
> #define TYPED(name) name ## _typed
>
> typedef void matrix_t;
>
> void TYPED (testfunc) (void)
> {
> matrix_t*A = NULL;
> matrix_t*B = N
Hi,
The following code is aligned incorrectly using indent-2.2.12:
```C
#include
#define TYPED(name) name ## _typed
typedef void matrix_t;
void TYPED (testfunc) (void)
{
matrix_t*A = NULL;
matrix_t*B = NULL;
}
void testfunc (void)
{
matrix_t*A = NULL;
matrix_t*B = NULL;
}
```
```con