mirror of
				https://github.com/CPunch/Cosmo.git
				synced 2025-10-31 04:50:12 +00:00 
			
		
		
		
	formatting fixes
This commit is contained in:
		| @@ -337,7 +337,8 @@ int fileB_read(CState *state, int nargs, CValue *args) | ||||
|     return 1; | ||||
| } | ||||
|  | ||||
| int fileB_write(CState *state, int nargs, CValue *args) { | ||||
| int fileB_write(CState *state, int nargs, CValue *args) | ||||
| { | ||||
|     CObjObject *fileObj; | ||||
|     CObjString *str; | ||||
|     FILE *file; | ||||
| @@ -365,14 +366,14 @@ int fileB_write(CState *state, int nargs, CValue *args) { | ||||
|     return 0; | ||||
| } | ||||
|  | ||||
| int fileB_gc(CState *state, int nargs, CValue *args) { | ||||
| int fileB_gc(CState *state, int nargs, CValue *args) | ||||
| { | ||||
|     if (nargs != 1) { | ||||
|         cosmoV_error(state, "file:read() expected 1 argument, got %d!", nargs); | ||||
|     } | ||||
|  | ||||
|     if (!cosmoV_isValueUserType(state, args[0], COSMO_USER_FILE)) { | ||||
|         cosmoV_typeError(state, "file:__gc()", "<file>", "%s", | ||||
|                          cosmoV_typeStr(args[0])); | ||||
|         cosmoV_typeError(state, "file:__gc()", "<file>", "%s", cosmoV_typeStr(args[0])); | ||||
|     } | ||||
|  | ||||
|     CObjObject *fileObj = cosmoV_readObject(args[0]); | ||||
| @@ -411,7 +412,8 @@ int cosmoB_osOpen(CState *state, int nargs, CValue *args) | ||||
|  | ||||
|         if (nargs == 2) { | ||||
|             if (!IS_STRING(args[1])) { | ||||
|                 cosmoV_typeError(state, "os.open()", "<string>, <string>", "%s, %s", cosmoV_typeStr(args[0]), cosmoV_typeStr(args[1])); | ||||
|                 cosmoV_typeError(state, "os.open()", "<string>, <string>", "%s, %s", | ||||
|                                  cosmoV_typeStr(args[0]), cosmoV_typeStr(args[1])); | ||||
|             } | ||||
|  | ||||
|             mode = cosmoV_readCString(args[1]); | ||||
|   | ||||
| @@ -259,7 +259,6 @@ static void sweep(CState *state) | ||||
|                 cosmoV_call(state, 1, 0); | ||||
|             } | ||||
|  | ||||
|  | ||||
|             cosmoO_free(state, oldObj); | ||||
|         } | ||||
|     } | ||||
|   | ||||
| @@ -493,7 +493,6 @@ void cosmoO_unlock(CObjObject *object) | ||||
|     object->isLocked = false; | ||||
| } | ||||
|  | ||||
|  | ||||
| bool rawgetIString(CState *state, CObjObject *object, int flag, CValue *val) | ||||
| { | ||||
|     if (readFlag(object->istringFlags, flag)) | ||||
|   | ||||
| @@ -168,7 +168,8 @@ void cosmoV_addRegistry(CState *state, int pairs) | ||||
| } | ||||
|  | ||||
| // expects 1 key on the stack, pushes result | ||||
| void cosmoV_getRegistry(CState *state) { | ||||
| void cosmoV_getRegistry(CState *state) | ||||
| { | ||||
|     CValue key = *cosmoV_pop(state); | ||||
|     CValue val; | ||||
|  | ||||
| @@ -179,12 +180,14 @@ void cosmoV_getRegistry(CState *state) { | ||||
|     cosmoV_pushValue(state, val); | ||||
| } | ||||
|  | ||||
| void cosmoV_setProto(CState *state) { | ||||
| void cosmoV_setProto(CState *state) | ||||
| { | ||||
|     StkPtr objVal = cosmoV_getTop(state, 1); | ||||
|     StkPtr protoVal = cosmoV_getTop(state, 0); | ||||
|  | ||||
|     if (!IS_REF(*objVal) || !IS_OBJECT(*protoVal)) { | ||||
|         cosmoV_error(state, "cannot set %s to proto of type %s", cosmoV_typeStr(*objVal), cosmoV_typeStr(*protoVal)); | ||||
|         cosmoV_error(state, "cannot set %s to proto of type %s", cosmoV_typeStr(*objVal), | ||||
|                      cosmoV_typeStr(*protoVal)); | ||||
|     } | ||||
|  | ||||
|     // actually set the protos | ||||
|   | ||||
| @@ -582,7 +582,8 @@ void cosmoV_getMethod(CState *state, CObj *obj, CValue key, CValue *val) | ||||
|     } | ||||
| } | ||||
|  | ||||
| bool cosmoV_isValueUserType(CState *state, CValue val, int userType) { | ||||
| bool cosmoV_isValueUserType(CState *state, CValue val, int userType) | ||||
| { | ||||
|     if (!IS_OBJECT(val)) { | ||||
|         return false; | ||||
|     } | ||||
| @@ -855,7 +856,6 @@ int cosmoV_execute(CState *state) | ||||
|                 CObjObject *proto = cosmoO_grabProto(obj); | ||||
|                 CValue val = cosmoV_newNil(); // to hold our value | ||||
|  | ||||
|  | ||||
|                 if (proto != NULL) { | ||||
|                     // check for __index metamethod | ||||
|                     cosmoO_indexObject(state, proto, *key, &val); | ||||
|   | ||||
| @@ -72,7 +72,8 @@ COSMO_API bool cosmoV_undump(CState *state, cosmo_Reader reader, const void *ud) | ||||
| COSMO_API void cosmoV_get(CState *state); | ||||
|  | ||||
| /* | ||||
|     expects object to be pushed, then the key, and finally the new value. pops the object, key & value | ||||
|     expects object to be pushed, then the key, and finally the new value. pops the object, key & | ||||
|    value | ||||
| */ | ||||
| COSMO_API void cosmoV_set(CState *state); | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user