[前][次][番号順一覧][スレッド一覧]

ruby-changes:40591

From: nobu <ko1@a...>
Date: Thu, 19 Nov 2015 19:45:25 +0900 (JST)
Subject: [ruby-changes:40591] nobu:r52670 (trunk): ruby.c: fix ARGV doc [ci skip]

nobu	2015-11-19 19:45:04 +0900 (Thu, 19 Nov 2015)

  New Revision: 52670

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=52670

  Log:
    ruby.c: fix ARGV doc [ci skip]
    
    * ruby.c (ruby_prog_init): [DOC] ARGV does not contain the name of
      the executable.  [ruby-core:71561] [Bug #11711]

  Modified files:
    trunk/ChangeLog
    trunk/ruby.c
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 52669)
+++ ChangeLog	(revision 52670)
@@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Thu Nov 19 19:45:05 2015  Nobuyoshi Nakada  <nobu@r...>
+
+	* ruby.c (ruby_prog_init): [DOC] ARGV does not contain the name of
+	  the executable.  [ruby-core:71561] [Bug #11711]
+
 Thu Nov 19 15:53:21 2015  Koichi Sasada  <ko1@a...>
 
 	* signal.c: should also clear ruby_disable_gc.
Index: ruby.c
===================================================================
--- ruby.c	(revision 52669)
+++ ruby.c	(revision 52670)
@@ -2035,8 +2035,7 @@ ruby_prog_init(void) https://github.com/ruby/ruby/blob/trunk/ruby.c#L2035
     rb_define_module_function(rb_mProcess, "setproctitle", proc_setproctitle, 1);
 
     /*
-     * ARGV contains the command line arguments used to run ruby with the
-     * first value containing the name of the executable.
+     * ARGV contains the command line arguments used to run ruby.
      *
      * A library like OptionParser can be used to process command-line
      * arguments.

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]