Hello
Pelle,
There is a small bug when I use structure.
In this small example, simply type
x and when you type the dot . POIDE save modifications in my file
(the star near the filename in tab disappeared)
Is it normal?
There is the same behavior when I type
->My current file is automatically saved.
struct {
int c;
char s;
} x, *y;
int main(void) {
x.c = 0;
x.s = 'C';
y->c = 0;
return 0;
}
Can you reproduce this behavior?
If it is a bug, could you correct it in the next release ?
Thanks and have a nice day.