diff options
author | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-03-11 09:46:46 +0000 |
---|---|---|
committer | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-03-11 09:46:46 +0000 |
commit | 5a347e064f4e0ac92734a11aea312945aaec846a (patch) | |
tree | 2771ed9f9268c7069d5d18acf1e901d9589ca787 /misc | |
parent | 7f4bbc6530c68ee5bf4f369676c3cc2d0c3bd2c4 (diff) | |
download | ruby-5a347e064f4e0ac92734a11aea312945aaec846a.tar.gz |
* misc/ruby-mode.el (ruby-block-end-re): Support for the
exprimental ';;' terminator had been dropped.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12030 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'misc')
-rw-r--r-- | misc/ruby-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/ruby-mode.el b/misc/ruby-mode.el index 303a0b38c3..25c6b3008d 100644 --- a/misc/ruby-mode.el +++ b/misc/ruby-mode.el @@ -45,7 +45,7 @@ (concat ruby-modifier-beg-re "\\|" ruby-block-op-re) ) -(defconst ruby-block-end-re "\\<end\\>\\|;;") +(defconst ruby-block-end-re "\\<end\\>") (defconst ruby-here-doc-beg-re "<<\\(-\\)?\\(\\([a-zA-Z0-9_]+\\)\\|[\"]\\([^\"]+\\)[\"]\\|[']\\([^']+\\)[']\\)") |