From: Dmitry Gutov Date: Tue, 22 Oct 2013 20:47:29 +0000 (+0400) Subject: * test/indent/ruby.rb: Move two examples to "working" section, add one X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~1187 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a6462ef558928da82279e437399cc169fb60b7ef;p=emacs.git * test/indent/ruby.rb: Move two examples to "working" section, add one more. --- diff --git a/test/ChangeLog b/test/ChangeLog index 609a4e2d007..71104b64364 100644 --- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,3 +1,8 @@ +2013-10-22 Dmitry Gutov + + * indent/ruby.rb: Move two examples to "working" section, add one + more. + 2013-10-21 Dmitry Gutov * indent/ruby.rb: New examples for indentation of blocks. Example diff --git a/test/indent/ruby.rb b/test/indent/ruby.rb index 5c47eea0baf..7ce60f5f58b 100644 --- a/test/indent/ruby.rb +++ b/test/indent/ruby.rb @@ -193,6 +193,16 @@ foo_bar_tee(1, 2, 3) .qux .bar +foo do + bar + .tee +end + +def bar + foo + .baz +end + # Examples below still fail with `ruby-use-smie' on: foo = [1, 2, 3].map do |i| @@ -211,12 +221,6 @@ method :foo, method (a + b), c -foo do +bar.foo do # "." is parent to "do"; it shouldn't be. bar - .tee -end - -def bar - foo - .baz end