mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* dir.c (fnmatch): removed unnecessary code. (ruby_1_8 didn't have
String#clear, so [ruby-dev:24749] didn't affect it) * win32/win32.c (NtInitialize): ditto. (by numeric.c 1.101.2.14) git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@8079 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
26dd1065f4
commit
ca63c2c062
3 changed files with 7 additions and 10 deletions
11
ChangeLog
11
ChangeLog
|
|
@ -1,3 +1,10 @@
|
|||
Sat Mar 5 18:06:21 2005 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
|
||||
|
||||
* dir.c (fnmatch): removed unnecessary code. (ruby_1_8 didn't have
|
||||
String#clear, so [ruby-dev:24749] didn't affect it)
|
||||
|
||||
* win32/win32.c (NtInitialize): ditto. (by numeric.c 1.101.2.14)
|
||||
|
||||
Sat Mar 5 16:29:26 2005 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
|
||||
|
||||
* ext/tk/lib/multi-tk.rb: freeze callback-entry objects
|
||||
|
|
@ -3714,10 +3721,6 @@ Wed Jul 14 12:29:07 2004 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
|
|||
|
||||
* test/ruby/test_float.rb (test_strtod): add test for bug fix.
|
||||
|
||||
Wed Jul 14 01:18:45 2004 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
|
||||
|
||||
* array.c: rdoc patch - unified margin.
|
||||
|
||||
Wed Jul 14 00:31:15 2004 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
|
||||
|
||||
* array.c: rdoc patch. merged patch from Johan Holmberg
|
||||
|
|
|
|||
2
dir.c
2
dir.c
|
|
@ -145,8 +145,6 @@ fnmatch(pat, string, flags)
|
|||
int period = !(flags & FNM_DOTMATCH);
|
||||
int nocase = flags & FNM_CASEFOLD;
|
||||
|
||||
if (!pat) pat = "";
|
||||
if (!string) string = "";
|
||||
while (c = *pat++) {
|
||||
switch (c) {
|
||||
case '?':
|
||||
|
|
|
|||
|
|
@ -365,10 +365,6 @@ NtInitialize(int *argc, char ***argv)
|
|||
WORD version;
|
||||
int ret;
|
||||
|
||||
#ifdef __BORLANDC__
|
||||
_controlfp(0x5, 0x5);
|
||||
#endif
|
||||
|
||||
//
|
||||
// Now set up the correct time stuff
|
||||
//
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue