1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-02 11:21:42 +00:00

* lisp/progmodes/ruby-mode.el (ruby-mode-variables): Don't meddle with

require-final-newline since prog-mode already took care of it.

Fixes: debbugs:17947
This commit is contained in:
Stefan Monnier 2014-07-05 14:37:45 -04:00
parent bff2d1ffc4
commit d66146bf18
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2014-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
* progmodes/ruby-mode.el (ruby-mode-variables): Don't meddle with
require-final-newline since prog-mode already took care of it (bug#17947).
2014-07-04 Stephen Berman <stephen.berman@gmx.net>
* calendar/todo-mode.el: Fix two bugs. Shorten Commentary and

View File

@ -749,7 +749,6 @@ It is used when `ruby-encoding-magic-comment-style' is set to `custom'."
:forward-token #'ruby-smie--forward-token
:backward-token #'ruby-smie--backward-token)
(setq-local indent-line-function 'ruby-indent-line))
(setq-local require-final-newline t)
(setq-local comment-start "# ")
(setq-local comment-end "")
(setq-local comment-column ruby-comment-column)