diff options
author | Stefan Kangas <stefan@marxist.se> | 2020-09-21 16:39:54 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2020-09-21 16:46:21 +0200 |
commit | d5d642eb71d8228d5a408a3d43ca1f4a5b500b9d (patch) | |
tree | f36e5afc60fa842f099c5ad08c0a14c942cd4552 /test/manual/indent | |
parent | 31cb935cd72ec915f3461f4517a8675e96b66ac5 (diff) | |
download | emacs-d5d642eb71d8228d5a408a3d43ca1f4a5b500b9d.tar.gz emacs-d5d642eb71d8228d5a408a3d43ca1f4a5b500b9d.tar.bz2 emacs-d5d642eb71d8228d5a408a3d43ca1f4a5b500b9d.zip |
Convert manual indent test for opascal-mode into unit test
* test/manual/indent/opascal.pas: Delete file.
* test/lisp/progmodes/opascal-tests.el: New file with unit test for
oposcal-mode based on deleted file.
Diffstat (limited to 'test/manual/indent')
-rw-r--r-- | test/manual/indent/opascal.pas | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/test/manual/indent/opascal.pas b/test/manual/indent/opascal.pas deleted file mode 100644 index ac4beb3f840..00000000000 --- a/test/manual/indent/opascal.pas +++ /dev/null @@ -1,12 +0,0 @@ -{ -*- opascal -*- } - -procedure Toto (); -begin - for i := 0 to 1 do - Write (str.Chars[i]); - - // bug#36348 - for var i := 0 to 1 do - Write (str.Chars[i]); - -end; |