[Python-Dev] Reindenting unicodedata.c

Barry A. Warsaw barry@python.org
Mon, 11 Nov 2002 09:54:38 -0500


>>>>> "SM" == Skip Montanaro <skip@pobox.com> writes:

    SM> It seems to me that any files with "special needs"
    SM> (unicodedata.c and the various sre files come to mind) should
    SM> have comments right near the top which indicate the
    SM> constraints which must be maintained (4-space indents, 1.5.2
    SM> compatibility, etc).

And/or something like this (untested) near the bottom of the file:

/*
 * Local Variables:
 * c-basic-offset: 4
 * indent-tabs-mode: nil
 * End:
 */

-Barry