mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* 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
This commit is contained in:
parent
7f4bbc6530
commit
5a347e064f
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
Sun Mar 11 18:42:01 2007 Akinori MUSHA <knu@iDaemons.org>
|
||||
|
||||
* misc/ruby-mode.el (ruby-block-end-re): Support for the
|
||||
exprimental ';;' terminator had been dropped.
|
||||
|
||||
Sun Mar 11 05:45:46 2007 Akinori MUSHA <knu@iDaemons.org>
|
||||
|
||||
* misc/README, misc/rdebug.el: Add rdebug.el, Emacs ruby-debug
|
||||
|
|
|
@ -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_]+\\)\\|[\"]\\([^\"]+\\)[\"]\\|[']\\([^']+\\)[']\\)")
|
||||
|
|
Loading…
Reference in a new issue