1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_4@823 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2000-07-10 08:01:49 +00:00
parent 91c7b7c465
commit 3d31020aeb
9 changed files with 65 additions and 30 deletions

View file

@ -547,12 +547,15 @@ The variable ruby-indent-level controls the amount of indentation.
(setq bol (point))
(end-of-line)
(skip-chars-backward " \t")
(and (re-search-backward "#" (save-excursion
(beginning-of-line)
(point)) t)
(setq state (ruby-parse-region parse-start (point)))
(nth 0 state)
(goto-char (nth 0 state)))
(let ((pos (point)))
(and
(re-search-backward "#" (save-excursion
(beginning-of-line)
(point)) t)
(skip-chars-backward " \t")
(setq state (ruby-parse-region parse-start (point)))
(nth 0 state)
(goto-char pos)))
(or (bobp) (forward-char -1))
(and
(or (and (looking-at ruby-symbol-re)