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

ruby-changes:21834

From: usa <ko1@a...>
Date: Mon, 28 Nov 2011 12:49:12 +0900 (JST)
Subject: [ruby-changes:21834] usa:r33883 (trunk): * parse.y (nodetype, nodeline): static. these functions are for

usa	2011-11-28 12:49:00 +0900 (Mon, 28 Nov 2011)

  New Revision: 33883

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

  Log:
    * parse.y (nodetype, nodeline): static.  these functions are for
      debugging, and not intend to be public.

  Modified files:
    trunk/ChangeLog
    trunk/parse.y

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 33882)
+++ ChangeLog	(revision 33883)
@@ -1,3 +1,8 @@
+Mon Nov 28 12:47:19 2011  NAKAMURA Usaku  <usa@r...>
+
+	* parse.y (nodetype, nodeline): static.  these functions are for
+	  debugging, and not intend to be public.
+
 Mon Nov 28 12:37:54 2011  NAKAMURA Usaku  <usa@r...>
 
 	* gc.c (initial_params): static.  it seems to be forgetten at r33501.
Index: parse.y
===================================================================
--- parse.y	(revision 33882)
+++ parse.y	(revision 33883)
@@ -7952,13 +7952,13 @@
     return n;
 }
 
-enum node_type
+static enum node_type
 nodetype(NODE *node)			/* for debug */
 {
     return (enum node_type)nd_type(node);
 }
 
-int
+static int
 nodeline(NODE *node)
 {
     return nd_line(node);

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

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