mirror of
https://github.com/masscollaborationlabs/emacs.git
synced 2025-07-11 22:50:49 +00:00

This eliminates a failure in align-tests. There doesn't seem to be anything obviously wrong with Emacs's behaviour in this case.
23 lines
292 B
Text
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;
|
|
=-=-=
|