From 3d31020aeb6e59bd3b6bd12de00c854f570d4381 Mon Sep 17 00:00:00 2001 From: matz Date: Mon, 10 Jul 2000 08:01:49 +0000 Subject: matz git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_4@823 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- misc/ruby-mode.el | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) (limited to 'misc') diff --git a/misc/ruby-mode.el b/misc/ruby-mode.el index 763c076d8a..cffd853bb7 100644 --- a/misc/ruby-mode.el +++ b/misc/ruby-mode.el @@ -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) -- cgit v1.2.3