# HG changeset patch # User David A. Holland # Date 1434089129 14400 # Node ID 5922e6ca6b8028f8d5037b48eebf52a25fdfcc0c # Parent 2ee7db420643d3ccb2f477cb2307fb1df7957b11 Revert gratuitous reordering of struct macro contents. (If a small amount of structure padding appears, who cares? It's more important that related elements are grouped together.) diff -r 2ee7db420643 -r 5922e6ca6b80 macro.c --- a/macro.c Fri Jun 12 02:02:38 2015 -0400 +++ b/macro.c Fri Jun 12 02:05:29 2015 -0400 @@ -51,11 +51,11 @@ struct macro { struct place defplace; struct place expansionplace; + unsigned hash; + char *name; + bool hasparams; struct stringarray params; struct expansionitemarray expansion; - char *name; - unsigned hash; - bool hasparams; bool inuse; }; DECLARRAY(macro, static UNUSED);