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

ruby-changes:25114

From: akr <ko1@a...>
Date: Fri, 12 Oct 2012 20:41:51 +0900 (JST)
Subject: [ruby-changes:25114] akr:r37166 (trunk): * process.c (posix_sh_cmds): the command name of colon is ":".

akr	2012-10-12 20:41:40 +0900 (Fri, 12 Oct 2012)

  New Revision: 37166

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

  Log:
    * process.c (posix_sh_cmds): the command name of colon is ":".

  Modified files:
    trunk/ChangeLog
    trunk/process.c

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 37165)
+++ ChangeLog	(revision 37166)
@@ -1,3 +1,7 @@
+Fri Oct 12 20:40:29 2012  Tanaka Akira  <akr@f...>
+
+	* process.c (posix_sh_cmds): the command name of colon is ":".
+
 Fri Oct 12 18:18:03 2012  Nobuyoshi Nakada  <nobu@r...>
 
 	* file.c (rb_get_path_check): path name must not contain NUL bytes.
Index: process.c
===================================================================
--- process.c	(revision 37165)
+++ process.c	(revision 37166)
@@ -2036,9 +2036,9 @@
 	static const char posix_sh_cmds[][9] = {
 	    "!",		/* reserved */
 	    ".",		/* special built-in */
+	    ":",		/* special built-in */
 	    "break",		/* special built-in */
 	    "case",		/* reserved */
-	    "colon",		/* special built-in */
 	    "continue",		/* special built-in */
 	    "do",		/* reserved */
 	    "done",		/* reserved */

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

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