aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDmitry Gutov2014-02-23 07:53:53 +0200
committerDmitry Gutov2014-02-23 07:53:53 +0200
commit62f9502226a8b910df0abe62b9f9fc7104647c62 (patch)
treefbbb1886e8997e97cf4704cc0282687467670ab1 /test
parent16f4c9f1481fa3fa6ce067595acce7340281d503 (diff)
downloademacs-62f9502226a8b910df0abe62b9f9fc7104647c62.tar.gz
emacs-62f9502226a8b910df0abe62b9f9fc7104647c62.zip
* lisp/progmodes/ruby-mode.el (ruby-smie-rules): Don't indent specially
after `=>'. Fixes: debbugs:16811
Diffstat (limited to 'test')
-rw-r--r--test/indent/ruby.rb8
1 files changed, 7 insertions, 1 deletions
diff --git a/test/indent/ruby.rb b/test/indent/ruby.rb
index cf6bcba8c39..5fd59bfb186 100644
--- a/test/indent/ruby.rb
+++ b/test/indent/ruby.rb
@@ -361,4 +361,10 @@ foo(bar:
361 tee) 361 tee)
362 362
363foo(:bar => 363foo(:bar =>
364 tee) 364 tee)
365
366{'a' => {
367 'b' => 'c',
368 'd' => %w(e f)
369 }
370}