1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/socket/mkconstants.rb: more possible aliases.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21250 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2009-01-01 12:00:13 +00:00
parent afb0581aa8
commit 48649d21c9
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Thu Jan 1 20:59:55 2009 Tanaka Akira <akr@fsij.org>
* ext/socket/mkconstants.rb: more possible aliases.
Thu Jan 1 20:54:02 2009 Tanaka Akira <akr@fsij.org> Thu Jan 1 20:54:02 2009 Tanaka Akira <akr@fsij.org>
* ext/socket/mkconstants.rb: AF_ISO and AF_OSI may be aliased. * ext/socket/mkconstants.rb: AF_ISO and AF_OSI may be aliased.

View file

@ -95,7 +95,9 @@ EOS
MAYBE_ALIAS = [ MAYBE_ALIAS = [
["AF_UNIX", "AF_LOCAL"], ["AF_UNIX", "AF_LOCAL"],
["AF_ISO", "AF_OSI"] ["AF_ISO", "AF_OSI"],
["AF_E164", "AF_ISDN"],
["AF_NS", "AF_IPX"],
] ]
def each_alias(pat) def each_alias(pat)