aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rwxr-xr-x.hgeol3
-rw-r--r--test/examples/x.lua12
-rw-r--r--test/examples/x.pl8
-rw-r--r--test/examples/x.rb10
4 files changed, 18 insertions, 15 deletions
diff --git a/.hgeol b/.hgeol
index 90014834d..45aa5e0be 100755
--- a/.hgeol
+++ b/.hgeol
@@ -21,6 +21,9 @@
**.php = native
**.vb = native
**.d = native
+**.lua = native
+**.rb = native
+**.pl = native
**.txt = native
**.pch = native
**.hgeol = native
diff --git a/test/examples/x.lua b/test/examples/x.lua
index 7172c85d2..b7879619f 100644
--- a/test/examples/x.lua
+++ b/test/examples/x.lua
@@ -1,6 +1,6 @@
---[[ Block
-comment ]]
-function first()
- -- Comment
- func(SCI_ANNOTATIONSETTEXT, 'a', 0, "LINE1")
-end
+--[[ Block
+comment ]]
+function first()
+ -- Comment
+ func(SCI_ANNOTATIONSETTEXT, 'a', 0, "LINE1")
+end
diff --git a/test/examples/x.pl b/test/examples/x.pl
index ba89f62a7..19288f2c9 100644
--- a/test/examples/x.pl
+++ b/test/examples/x.pl
@@ -1,5 +1,5 @@
-use strict;
-while ( $r ) {
- printf ( "Example text \n" );
- sleep 1;
+use strict;
+while ( $r ) {
+ printf ( "Example text \n" );
+ sleep 1;
} \ No newline at end of file
diff --git a/test/examples/x.rb b/test/examples/x.rb
index 234a6406b..d1bb0f0a8 100644
--- a/test/examples/x.rb
+++ b/test/examples/x.rb
@@ -1,6 +1,6 @@
-class Demo
- def test # A test
- i = 1
- puts "Example"
- end
+class Demo
+ def test # A test
+ i = 1
+ puts "Example"
+ end
end \ No newline at end of file