Use stdbool.h and bool for booleans.

This commit is contained in:
Bob Nystrom
2013-12-14 23:41:23 -08:00
parent f5e4f95069
commit 9e67cd3220
7 changed files with 108 additions and 105 deletions
+2 -2
View File
@@ -131,8 +131,8 @@ typedef enum
// Creates a closure for the function stored at [arg] in the constant table.
//
// Following the function argument is a number of arguments, two for each
// upvalue. The first is non-zero if the variable being captured is a local
// (as opposed to an upvalue), and the second is the index of the local or
// upvalue. The first is true if the variable being captured is a local (as
// opposed to an upvalue), and the second is the index of the local or
// upvalue being captured.
//
// Pushes the created closure.