1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

Fixup the documentation for the previous change

* 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
This commit is contained in:
Dmitry Gutov 2014-01-31 19:33:12 +02:00
parent e2a67bd08e
commit 2f313daf4a
3 changed files with 13 additions and 3 deletions

View 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.