]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix bug#17050
authorDmitry Gutov <dgutov@yandex.ru>
Fri, 21 Mar 2014 04:26:39 +0000 (06:26 +0200)
committerDmitry Gutov <dgutov@yandex.ru>
Fri, 21 Mar 2014 04:26:39 +0000 (06:26 +0200)
* lisp/progmodes/ruby-mode.el (ruby-smie-rules):
Add indentation rule for ` @ '.

lisp/ChangeLog
lisp/progmodes/ruby-mode.el
test/indent/ruby.rb

index 8a9acd99423b4f34699d942fb4f1dc83e1f8481f..d77e4e4b4bec9d370308f90ca789398e4f85f422 100644 (file)
@@ -1,3 +1,8 @@
+2014-03-21  Dmitry Gutov  <dgutov@yandex.ru>
+
+       * progmodes/ruby-mode.el (ruby-smie-rules):
+       Add indentation rule for ` @ '.  (Bug#17050)
+
 2014-03-21  Juanma Barranquero  <lekktu@gmail.com>
 
        * align.el (align-regexp): Remove superfluous backslash.
index fe9346047c6a0681a52002daa86ed5eebb1118ce..e05aef80e863180a4db85a799bf01583af408448 100644 (file)
@@ -650,6 +650,10 @@ It is used when `ruby-encoding-magic-comment-style' is set to `custom'."
        ;; because we want to reject hanging tokens at bol, too.
        (unless (or (eolp) (forward-comment 1))
          (cons 'column (current-column)))))
+    (`(:before . " @ ")
+     (save-excursion
+       (skip-chars-forward " \t")
+       (cons 'column (current-column))))
     (`(:before . "do") (ruby-smie--indent-to-stmt))
     (`(:before . ".")
      (if (smie-rule-sibling-p)
index 2ca0e48279702029357606e531b7d71cce04286c..9948243314562e206a774b72f38c0676a6b03fa6 100644 (file)
@@ -379,3 +379,20 @@ foo(:bar =>
    'd' => %w(e f)
  }
 }
+
+# Bug#17050
+
+return render json: {
+                errors: { base: [message] },
+                copying: copying
+              },
+              status: 400
+
+top test(
+      some,
+      top,
+      test)
+
+foo bar, {
+      tee: qux
+    }