]> git.eshelyaron.com Git - emacs.git/commitdiff
Fixup the documentation for the previous change
authorDmitry Gutov <dgutov@yandex.ru>
Fri, 31 Jan 2014 17:33:12 +0000 (19:33 +0200)
committerDmitry Gutov <dgutov@yandex.ru>
Fri, 31 Jan 2014 17:33:12 +0000 (19:33 +0200)
* etc/NEWS: Mention `ruby-align-chained-calls'.

* lisp/progmodes/ruby-mode.el (ruby-align-chained-calls): Update the
  docstring and add :version tag.

Fixes: debbugs:16593
etc/ChangeLog
etc/NEWS
lisp/progmodes/ruby-mode.el

index f8d6cdcbdbf9cb8a0c7486f492d8367759c1462c..235940ccd0bda3b3bf0808054124a1963c10f6ad 100644 (file)
@@ -1,3 +1,7 @@
+2014-01-31  Dmitry Gutov  <dgutov@yandex.ru>
+
+       * NEWS: Mention `ruby-align-chained-calls'.
+
 2014-01-31  Alex Schroeder  <alex@gnu.org>  (tiny change)
 
        * gnus-tut.txt (Message-ID): Typo fix (bug#15556).
index b9bf67469b7caed0e6373db82da0cefd8ea2613d..dcb8b13b1fdca3ef9aafda8f939510bc1dfa25d7 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -718,6 +718,9 @@ rather than mboxo.  Customize `unrmail-mbox-format' to change this.
 ---
 *** New option `ruby-align-to-stmt-keywords'.
 
+---
+*** New option `ruby-align-chained-calls'.
+
 ---
 *** More Ruby file types have been added to `auto-mode-alist'.
 
index 17e16217ccbcb02c9ff39c0b92e32ab13586285d..1bce911cf0ef0486b5f4da79d58524fc392b9982 100644 (file)
@@ -265,13 +265,16 @@ Only has effect when `ruby-use-smie' is t.
   :version "24.4")
 
 (defcustom ruby-align-chained-calls nil
-  "If non-nil, chained method calls on multiple lines will be
-aligned to the same column.
+  "If non-nil, align chained method calls.
+
+Each method call on a separate line will be aligned to the column
+of its parent.
 
 Only has effect when `ruby-use-smie' is t."
   :type 'boolean
   :group 'ruby
-  :safe 'booleanp)
+  :safe 'booleanp
+  :version "24.4")
 
 (defcustom ruby-deep-arglist t
   "Deep indent lists in parenthesis when non-nil.