From be5e17704c73f5e285986955013edfc19bbfd2b0 Mon Sep 17 00:00:00 2001 From: mrkn Date: Thu, 30 Jun 2011 14:54:11 +0000 Subject: * misc/ruby-mode.el (ruby-indent-beg-re): Fix broken regular expression. Fixes #4546 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32338 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ misc/ruby-mode.el | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 3fe7e82517..837d8d2b34 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu Jun 30 23:50:00 2011 Kenta Murata + + * misc/ruby-mode.el (ruby-indent-beg-re): Fix broken regular + expression. Fixes #4546 + Thu Jun 30 23:43:30 2011 Martin Bosslet * ext/openssl/ossl.c/.h: Added ossl_x509_name_sk2ary. diff --git a/misc/ruby-mode.el b/misc/ruby-mode.el index 187d8a583a..d3e2e51d02 100644 --- a/misc/ruby-mode.el +++ b/misc/ruby-mode.el @@ -72,7 +72,7 @@ "Regexp to match") (defconst ruby-indent-beg-re - (concat "\\(\\s *" (regexp-opt '("class" "module" "def") t) "\\)" + (concat "\\(\\s *" (regexp-opt '("class" "module" "def") t) "\\)\\|" (regexp-opt '("if" "unless" "case" "while" "until" "for" "begin"))) "Regexp to match where the indentation gets deeper.") -- cgit v1.2.3