summaryrefslogtreecommitdiffstats
path: root/ext/curses
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-03-06 04:15:42 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-03-06 04:15:42 +0000
commitf30e4e7d846b33b7adf98eac7695c47234f48d4a (patch)
tree095315717e3050b4acb09d91e848dc2e3d0b2b5f /ext/curses
parent4a63aea75bf3c7eb1a26ab06d8a56789fa668a79 (diff)
downloadruby-f30e4e7d846b33b7adf98eac7695c47234f48d4a.tar.gz
ruby-f30e4e7d846b33b7adf98eac7695c47234f48d4a.tar.xz
ruby-f30e4e7d846b33b7adf98eac7695c47234f48d4a.zip
2000-03-06
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@632 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/curses')
-rw-r--r--ext/curses/curses.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/ext/curses/curses.c b/ext/curses/curses.c
index b0e2ef5bc..db620654b 100644
--- a/ext/curses/curses.c
+++ b/ext/curses/curses.c
@@ -424,7 +424,6 @@ window_s_new(class, h, w, top, left)
wclear(window);
win = prep_window(class, window);
args[0] = h; args[1] = w; args[2] = top; args[3] = left;
- rb_obj_call_init(win, 4, args);
return win;
}
@@ -448,7 +447,6 @@ window_subwin(obj, h, w, top, left)
NUM2INT(top), NUM2INT(left));
win = prep_window(cWindow, window);
args[0] = h; args[1] = w; args[2] = top; args[3] = left;
- rb_obj_call_init(win, 4, args);
return win;
}