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

ruby-changes:37689

From: nobu <ko1@a...>
Date: Fri, 27 Feb 2015 16:02:31 +0900 (JST)
Subject: [ruby-changes:37689] nobu:r49770 (trunk): compile.c: fix function name

nobu	2015-02-27 16:02:04 +0900 (Fri, 27 Feb 2015)

  New Revision: 49770

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

  Log:
    compile.c: fix function name
    
    * compile.c (APPEND_ELEM): fix function name so that the first
      argument will be inserted.

  Modified files:
    trunk/compile.c
Index: compile.c
===================================================================
--- compile.c	(revision 49769)
+++ compile.c	(revision 49770)
@@ -416,7 +416,7 @@ APPEND_ELEM(ISEQ_ARG_DECLARE LINK_ANCHOR https://github.com/ruby/ruby/blob/trunk/compile.c#L416
 }
 #if CPDEBUG < 0
 #define ADD_ELEM(anchor, elem) ADD_ELEM(iseq, (anchor), (elem))
-#define APPEND_ELEM(anchor, before, elem) ADD_ELEM(iseq, (anchor), (before), (elem))
+#define APPEND_ELEM(anchor, before, elem) APPEND_ELEM(iseq, (anchor), (before), (elem))
 #endif
 
 static int

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

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