Remove Emacs cruft.

This commit is contained in:
Guido van Rossum 1998-05-18 20:22:31 +00:00
parent f1b5a0e3aa
commit ce5988b3d9
3 changed files with 0 additions and 12 deletions

View File

@ -68,7 +68,3 @@ def writecode(outfp, mod, str):
for c in str[i:i+16]:
outfp.write('%d,' % ord(c))
outfp.write('\n};\n')
# Local Variables:
# indent-tabs-mode: nil
# End:

View File

@ -27,7 +27,3 @@ def makemakefile(outfp, makevars, files, target):
outfp.write("\t$(CC) %s -o %s\n" % (string.join(files), target))
outfp.write("\nclean:\n\t-rm -f *.o %s\n" % target)
# Local Variables:
# indent-tabs-mode: nil
# End:

View File

@ -120,7 +120,3 @@ def realwork(vars, moddefns, target):
print "clean:"
print "\t-rm -f *.obj"
print "\t-rm -f $(target).exe"
# Local Variables:
# indent-tabs-mode: nil
# End: