-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 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
- Loading branch information
matz
committed
Nov 30, 2005
1 parent
0711cf3
commit cced56e
Showing
6 changed files
with
15 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
Wed Nov 30 13:43:07 2005 Yukihiro Matsumoto <[email protected]> | ||
|
||
* misc/ruby-mode.el (ruby-expr-beg): support $! at the end of | ||
expression. [ruby-dev:27868] | ||
|
||
Mon Nov 28 20:24:22 2005 Tanaka Akira <[email protected]> | ||
|
||
* lib/pp.rb (PP::PPMethods#object_address_group): mask an address with | ||
|
@@ -54,6 +59,11 @@ Sat Nov 26 19:57:45 2005 WATANABE Hirofumi <[email protected]> | |
|
||
* dln.c (conv_to_posix_path): should initialize posix. | ||
|
||
Fri Nov 25 20:34:56 2005 Yukihiro Matsumoto <[email protected]> | ||
|
||
* lib/xmlrpc/datetime.rb (DateTime::to_a): comparison with non | ||
array-convertible object must return false. | ||
|
||
Fri Nov 25 14:34:09 2005 Yukihiro Matsumoto <[email protected]> | ||
|
||
* range.c (range_max): treat end exclusion without iteration if | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -127,7 +127,7 @@ def to_a | |
end | ||
|
||
def ==(o) | ||
Array(self) == Array(o) | ||
self.to_a == Array(o) rescue false | ||
end | ||
|
||
end | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters