diff --git a/ChangeLog b/ChangeLog index 1381465d2c..b3a6d86b72 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Thu May 23 09:13:56 2002 Yukihiro Matsumoto + + * ruby.c (proc_options): removed "-*-" support for #! line. + Wed May 22 21:36:11 2002 Tadayoshi Funaba * lib/parsedate.rb: updated to the new version (based on date2 2.6.1). diff --git a/ruby.c b/ruby.c index 3e0f063a2d..06ad8a48d3 100644 --- a/ruby.c +++ b/ruby.c @@ -621,11 +621,6 @@ proc_options(argc, argv) } break; - case '*': - case ' ': - if (s[1] == '-') s+=2; - break; - default: fprintf(stderr, "%s: invalid option -%c (-h will show valid options)\n", origargv[0], *s);