mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* dir.c (dir_seek): should retrieve dir_data after NUM2INT().
[ruby-dev:24941] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7349 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
5809c72125
commit
fec64f7fe2
2 changed files with 15 additions and 2 deletions
12
ChangeLog
12
ChangeLog
|
@ -1,3 +1,8 @@
|
||||||
|
Mon Nov 22 00:13:35 2004 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||||
|
|
||||||
|
* dir.c (dir_seek): should retrieve dir_data after NUM2INT().
|
||||||
|
[ruby-dev:24941]
|
||||||
|
|
||||||
Sat Nov 20 23:57:33 2004 Dave Thomas <dave@pragprog.com>
|
Sat Nov 20 23:57:33 2004 Dave Thomas <dave@pragprog.com>
|
||||||
|
|
||||||
* lib/rdoc/README (et al): Add a new directive, :section:, and
|
* lib/rdoc/README (et al): Add a new directive, :section:, and
|
||||||
|
@ -138,6 +143,13 @@ Thu Nov 18 20:47:24 2004 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||||
* win32/win32.[ch] (rb_w32_isatty): new function to replace MSVCRT's
|
* win32/win32.[ch] (rb_w32_isatty): new function to replace MSVCRT's
|
||||||
isatty because it never sets errno.
|
isatty because it never sets errno.
|
||||||
|
|
||||||
|
Thu Nov 18 18:41:08 2004 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
|
||||||
|
|
||||||
|
* test/ruby/test_stringchar.rb (test_bang): added.
|
||||||
|
|
||||||
|
* string.c (rb_str_upcase_bang, rb_str_capitalize_bang)
|
||||||
|
(rb_str_swapcase_bang): missing rb_str_modify().
|
||||||
|
|
||||||
Thu Nov 18 17:05:01 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
Thu Nov 18 17:05:01 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
* parse.y (f_rest_arg): store rest args into invisible local variabe
|
* parse.y (f_rest_arg): store rest args into invisible local variabe
|
||||||
|
|
5
dir.c
5
dir.c
|
@ -600,10 +600,11 @@ dir_seek(dir, pos)
|
||||||
VALUE dir, pos;
|
VALUE dir, pos;
|
||||||
{
|
{
|
||||||
struct dir_data *dirp;
|
struct dir_data *dirp;
|
||||||
|
off_t p = NUM2LONG(pos);
|
||||||
|
|
||||||
#ifdef HAVE_SEEKDIR
|
|
||||||
GetDIR(dir, dirp);
|
GetDIR(dir, dirp);
|
||||||
seekdir(dirp->dir, NUM2INT(pos));
|
#ifdef HAVE_SEEKDIR
|
||||||
|
seekdir(dirp->dir, p);
|
||||||
return dir;
|
return dir;
|
||||||
#else
|
#else
|
||||||
rb_notimplement();
|
rb_notimplement();
|
||||||
|
|
Loading…
Reference in a new issue