view test/indent/Makefile @ 109598:ec823851a46c

* faces.el (face-all-attributes): Improved documentation (Bug#6767).
author Jan D <jan.h.d@swipnet.se>
date Sat, 31 Jul 2010 19:21:16 +0200
parents f241d9fe71fe
children 6939db1ee97b
line wrap: on
line source

RM=rm
EMACS=emacs

clean:
	-$(RM) *.test

# TODO:
# - mark the places where the indentation is known to be incorrect,
#   and allow either ignoring those errors or not.
%.test: %
	-$(RM) $<.test
	$(EMACS) --batch $< \
	    --eval '(indent-region (point-min) (point-max) nil)' \
	    --eval '(write-region (point-min) (point-max) "$<.test")'
	diff -u -B $< $<.test