=== modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2012-11-05 16:32:35 +0000 +++ lisp/ChangeLog 2012-11-10 03:00:13 +0000 @@ -1,3 +1,9 @@ +2012-11-10 Dmitry Gutov + + * progmodes/ruby-mode.el (ruby-move-to-block): When moving + backward, always stop at indentation. Reverts the change from + 109576. + 2012-11-05 AgustГ­n MartГ­n Domingo * textmodes/ispell.el (ispell-program-name): Update === modified file 'lisp/progmodes/ruby-mode.el' --- lisp/progmodes/ruby-mode.el 2012-09-24 11:39:33 +0000 +++ lisp/progmodes/ruby-mode.el 2012-11-10 02:51:09 +0000 @@ -898,17 +898,7 @@ (back-to-indentation) (if (looking-at (concat "\\<\\(" ruby-block-mid-re "\\)\\>")) (setq done nil))))) - (back-to-indentation) - (when (< n 0) - (let ((eol (point-at-eol)) state next) - (if (< orig eol) (setq eol orig)) - (setq orig (point)) - (while (and (setq next (apply 'ruby-parse-partial eol state)) - (< (point) eol)) - (setq state next)) - (when (cdaadr state) - (goto-char (cdaadr state))) - (backward-word))))) + (back-to-indentation))) (defun ruby-beginning-of-block (&optional arg) "Move backward to the beginning of the current block. === modified file 'test/automated/ruby-mode-tests.el' --- test/automated/ruby-mode-tests.el 2012-09-18 22:10:19 +0000 +++ test/automated/ruby-mode-tests.el 2012-11-10 03:01:43 +0000 @@ -202,13 +202,13 @@ | end |")) -(ert-deftest ruby-move-to-block-stops-at-opening () +(ert-deftest ruby-move-to-block-stops-at-indentation () (with-temp-buffer (insert "def f\nend") (beginning-of-line) (ruby-mode) (ruby-move-to-block -1) - (should (looking-at "f$")))) + (should (looking-at "^def")))) (ert-deftest ruby-toggle-block-to-do-end () (with-temp-buffer