diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-07-26 09:33:39 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-07-26 09:33:39 +0000 |
commit | 5384316f5b765fb7793a4ddfade98093325ab17d (patch) | |
tree | 8b846a8f234303aeb1682091241f09949fe79d6e /misc/ruby-mode.el | |
parent | 52ecaae5b68384132da88f798c9282e64eca4e77 (diff) |
* misc/ruby-mode.el (ruby-expr-beg): wrong indent at modifiers
after ?.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2659 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'misc/ruby-mode.el')
-rw-r--r-- | misc/ruby-mode.el | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/misc/ruby-mode.el b/misc/ruby-mode.el index 556f72387d..2faec59307 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 |