diff test/indent/Makefile @ 110038:6939db1ee97b

Use SMIE for octave-mode. * test/indent/octave.m: New file. * lisp/progmodes/octave-mod.el (octave-font-lock-keywords): Use regexp-opt. (octave-mode-map): Remove special bindings for forward/backward-block and octave-backward-up-block. Use smie-close-block. (octave-continuation-marker-regexp): New var. (octave-continuation-regexp): Use it. (octave-operator-table, octave-smie-op-levels) (octave-operator-regexp, octave-smie-indent-rules): New vars. (octave-smie-backward-token, octave-smie-forward-token): New funs. (octave-mode): Use SMIE. (octave-close-block): Delete.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Mon, 30 Aug 2010 22:34:52 +0200
parents f241d9fe71fe
children
line wrap: on
line diff
--- a/test/indent/Makefile	Mon Aug 30 21:11:34 2010 +0300
+++ b/test/indent/Makefile	Mon Aug 30 22:34:52 2010 +0200
@@ -8,8 +8,8 @@
 # - mark the places where the indentation is known to be incorrect,
 #   and allow either ignoring those errors or not.
 %.test: %
-	-$(RM) $<.test
+	-$(RM) $<.new
 	$(EMACS) --batch $< \
 	    --eval '(indent-region (point-min) (point-max) nil)' \
-	    --eval '(write-region (point-min) (point-max) "$<.test")'
-	diff -u -B $< $<.test
+	    --eval '(write-region (point-min) (point-max) "$<.new")'
+	diff -u -B $< $<.new