Roberto Ierusalimschy 23 년 전
부모
커밋
6bb5cb1cbd
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      lstate.h

+ 2 - 2
lstate.h

@@ -92,8 +92,8 @@ typedef struct CallInfo {
   StkId base;  /* base for called function */
   const Instruction *savedpc;
   StkId	top;  /* top for this function (when it's a Lua function) */
-  const Instruction **pc;
-  StkId *pb;
+  const Instruction **pc;  /* points to `pc' variable in `luaV_execute' */
+  StkId *pb;  /* points to `base' variable in `luaV_execute' */
   /* extra information for line tracing */
   int lastpc;  /* last pc traced */
   int line;  /* current line */