summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-04-19 15:02:16 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-04-19 15:02:16 +0000
commitd9e6b7d6a5e81afb588d79ef923b70890cdec4ba (patch)
tree086f54f724ee2a864e8ac528fd715869afe18ebf /misc
parent86576c8f28cbb2fec257c7cc46307954c18e39ce (diff)
* misc/ruby-mode.el (ruby-parse-partial): use position of open paren.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31308 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'misc')
-rw-r--r--misc/ruby-mode.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/ruby-mode.el b/misc/ruby-mode.el
index c799d8c52c..187d8a583a 100644
--- a/misc/ruby-mode.el
+++ b/misc/ruby-mode.el
@@ -556,7 +556,7 @@ Also ignores spaces after parenthesis when 'space."
(progn
(and (eq deep 'space) (looking-at ".\\s +[^# \t\n]")
(setq pnt (1- (match-end 0))))
- (setq nest (cons (cons (char-after (point)) pnt) nest))
+ (setq nest (cons (cons (char-after (point)) (point)) nest))
(setq pcol (cons (cons pnt depth) pcol))
(setq depth 0))
(setq nest (cons (cons (char-after (point)) pnt) nest))
@@ -566,7 +566,7 @@ Also ignores spaces after parenthesis when 'space."
((looking-at "[])}]")
(if (ruby-deep-indent-paren-p (matching-paren (char-after))
(if nest
- (1- (cdr (nth 0 nest)))
+ (cdr (nth 0 nest))
(save-excursion
(forward-char)
(ruby-backward-sexp)