@@ -20,7 +20,7 @@ making it ideal for configuration, scripting,
2020and rapid prototyping.
2121
2222Lua is implemented as a library, written in @emphx{clean C},
23- the common subset of @N{Standard C} and C++.
23+ the common subset of @N{standard C} and C++.
2424The Lua distribution includes a host program called @id{lua},
2525which uses the Lua library to offer a complete,
2626standalone Lua interpreter,
@@ -2963,7 +2963,7 @@ static void *l_alloc (void *ud, void *ptr, size_t osize,
29632963 return realloc(ptr, nsize);
29642964}
29652965}
2966- Note that @N{Standard C} ensures
2966+ Note that @N{ISO C} ensures
29672967that @T{free(NULL)} has no effect and that
29682968@T{realloc(NULL,size)} is equivalent to @T{malloc(size)}.
29692969
@@ -5780,7 +5780,7 @@ with @id{tname} in the registry.
57805780
57815781Creates a new Lua state.
57825782It calls @Lid{lua_newstate} with an
5783- allocator based on the @N{standard C} allocation functions
5783+ allocator based on the @N{ISO C} allocation functions
57845784and then sets a warning function and a panic function @see{C-error}
57855785that print messages to the standard error output.
57865786
@@ -6898,7 +6898,7 @@ including if necessary a path and an extension.
68986898@id{funcname} must be the exact name exported by the @N{C library}
68996899(which may depend on the @N{C compiler} and linker used).
69006900
6901- This function is not supported by @N{Standard C}.
6901+ This functionality is not supported by @N{ISO C}.
69026902As such, it is only available on some platforms
69036903(Windows, Linux, Mac OS X, Solaris, BSD,
69046904plus other Unix systems that support the @id{dlfcn} standard).
0 commit comments