diff options
| author | Dmitry Gutov | 2014-02-23 07:53:53 +0200 |
|---|---|---|
| committer | Dmitry Gutov | 2014-02-23 07:53:53 +0200 |
| commit | 62f9502226a8b910df0abe62b9f9fc7104647c62 (patch) | |
| tree | fbbb1886e8997e97cf4704cc0282687467670ab1 /test | |
| parent | 16f4c9f1481fa3fa6ce067595acce7340281d503 (diff) | |
| download | emacs-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.rb | 8 |
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 | ||
| 363 | foo(:bar => | 363 | foo(:bar => |
| 364 | tee) | 364 | tee) |
| 365 | |||
| 366 | {'a' => { | ||
| 367 | 'b' => 'c', | ||
| 368 | 'd' => %w(e f) | ||
| 369 | } | ||
| 370 | } | ||