From dabe9e190081f1b62f196783fc43813fa86d7714 Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 26 Jul 2002 09:33:39 +0000 Subject: * misc/ruby-mode.el (ruby-expr-beg): wrong indent at modifiers after ?. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2659 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- misc/ruby-mode.el | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'misc') diff --git a/misc/ruby-mode.el b/misc/ruby-mode.el index 556f72387..2faec5930 100644 --- a/misc/ruby-mode.el +++ b/misc/ruby-mode.el @@ -270,10 +270,12 @@ The variable ruby-indent-level controls the amount of indentation. (forward-char -1) (or (looking-at ruby-operator-re) (looking-at "[\\[({,;]") - (and (or (eq option 'modifier) - (not (eq option 'heredoc)) + (and (or (not (eq option 'heredoc)) (< space 0)) - (looking-at "[!?]")) + (looking-at "[!?]") + (or (not (eq option 'modifier)) + (bolp) + (save-excursion (forward-char -1) (looking-at "\\Sw")))) (and (looking-at ruby-symbol-re) (skip-chars-backward ruby-symbol-chars) (cond -- cgit