summaryrefslogtreecommitdiff
path: root/misc/ruby-mode.el
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-08-17 09:02:40 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-08-17 09:02:40 +0000
commit67232b21511423f82ab18db04f941e6925338a7b (patch)
tree922299c561755f4a987420495fbf1392ef7ea1cc /misc/ruby-mode.el
parent4af25f5813cd98baa93c459c49718ef62882913a (diff)
* io.c (rb_io_reopen): should clear allocated OpenFile. pointed
out by Guy Decoux. [ruby-core:03288] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6781 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'misc/ruby-mode.el')
-rw-r--r--misc/ruby-mode.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/ruby-mode.el b/misc/ruby-mode.el
index e4998cc594..462ec609be 100644
--- a/misc/ruby-mode.el
+++ b/misc/ruby-mode.el
@@ -779,7 +779,7 @@ An end of a defun is found by moving forward from the beginning of one."
(if done
(save-excursion
(back-to-indentation)
- (if (looking-at (concat ("\\<\\(" ruby-block-mid-re "\\)\\>")))
+ (if (looking-at (concat "\\<\\(" ruby-block-mid-re "\\)\\>"))
(setq done nil))))))
(back-to-indentation))