emacs/test/lisp/align-resources/c-mode.erts
Mattias Engdegård 1bf92d9195 * test/lisp/align-resources/c-mode.erts: Make test agree with Emacs
This eliminates a failure in align-tests.  There doesn't seem to be
anything obviously wrong with Emacs's behaviour in this case.
2023-08-05 18:23:52 +02:00

23 lines
292 B
Text

Name: align function declaration
=-=
int
main (int argc,
char *argv[]);
=-=
int
main (int argc,
char *argv[]);
=-=-=
Name: example from Commentary
=-=
int a = 1;
short foo = 2;
double blah = 4;
=-=
int a = 1;
short foo = 2;
double blah = 4;
=-=-=