* misc/ruby-mode.el (ruby-expr-beg): support $! at the end of

expression.   [ruby-dev:27868]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9634 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2005-11-30 04:50:04 +00:00
parent 0711cf3cd8
commit cced56ef7c
6 changed files with 15 additions and 16 deletions

View file

@ -127,7 +127,7 @@ class DateTime
end
def ==(o)
Array(self) == Array(o)
self.to_a == Array(o) rescue false
end
end