summaryrefslogtreecommitdiff
path: root/eval.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-05-18 14:39:27 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-05-18 14:39:27 +0000
commita5f61654e969e2f8727e040bea24a3006acd6134 (patch)
tree62dee67cb641c620eb2d3c1ad356875944d0c8e3 /eval.c
parent2866bd642f355acf22dc21fb6fe0e861717d105d (diff)
* dir.c (glob_helper): get rid of using String. [ruby-dev:26180]
* dir.c (push_braces): should skip balanced braces. * eval.c (ruby_options), win32/win32.c (NtInitialize): move argument intialization back. [ruby-dev:26180] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@8480 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/eval.c b/eval.c
index 8345788f9f..14aa75b4cf 100644
--- a/eval.c
+++ b/eval.c
@@ -1394,10 +1394,6 @@ ruby_options(argc, argv)
{
int state;
-#ifdef _WIN32
- argc = rb_w32_cmdvector(GetCommandLine(), &argv);
-#endif
-
Init_stack((void*)&state);
PUSH_TAG(PROT_NONE);
if ((state = EXEC_TAG()) == 0) {
@@ -1409,11 +1405,6 @@ ruby_options(argc, argv)
exit(error_handle(state));
}
POP_TAG();
-
-#ifdef _WIN32_WCE
- // free commandline buffer
- wce_FreeCommandLine();
-#endif
}
void rb_exec_end_proc _((void));