diff test/indent/Makefile @ 108864:f241d9fe71fe

* lisp/emacs-lisp/smie.el (smie-indent-calculate): Simplify and cleanup. (smie-indent-hanging-p): Use smie-bolp. * test/indent: New dir.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Wed, 02 Jun 2010 16:13:11 -0400
parents
children 6939db1ee97b
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/indent/Makefile	Wed Jun 02 16:13:11 2010 -0400
@@ -0,0 +1,15 @@
+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