aboutsummaryrefslogtreecommitdiffstats
path: root/test/indent/ruby.rb
diff options
context:
space:
mode:
authorDmitry Gutov2013-10-27 07:25:03 +0400
committerDmitry Gutov2013-10-27 07:25:03 +0400
commitc8c605ac9ced55d55e952255787c8a6b71bf585a (patch)
tree4a472c7516910b5bb80070ecf025ce10f1d5ac09 /test/indent/ruby.rb
parentca7e59d46cd7c030a4b50234c0257156ce08e7e3 (diff)
downloademacs-c8c605ac9ced55d55e952255787c8a6b71bf585a.tar.gz
emacs-c8c605ac9ced55d55e952255787c8a6b71bf585a.zip
* lisp/progmodes/ruby-mode.el (ruby-smie--bosp): Anything that goes
after `=' is probably a new expression.
Diffstat (limited to 'test/indent/ruby.rb')
-rw-r--r--test/indent/ruby.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/indent/ruby.rb b/test/indent/ruby.rb
index b4173b69bc1..633b2991d5e 100644
--- a/test/indent/ruby.rb
+++ b/test/indent/ruby.rb
@@ -220,6 +220,11 @@ def bar
220 .baz 220 .baz
221end 221end
222 222
223# http://stackoverflow.com/questions/17786563/emacs-ruby-mode-if-expressions-indentation
224tee = if foo
225 bar
226 end
227
223# Examples below still fail with `ruby-use-smie' on: 228# Examples below still fail with `ruby-use-smie' on:
224 229
225foo = [1, 2, 3].map do |i| 230foo = [1, 2, 3].map do |i|