New year (2024->2025), typos in comments
This commit is contained in:
Roberto Ierusalimschy
2025-01-16 11:51:16 -03:00
parent 3cdd49c94a
commit 2d8d5c74b5
15 changed files with 24 additions and 25 deletions

2
lua.c
View File

@@ -497,7 +497,7 @@ static void lua_freeline (char *line) {
static void lua_initreadline (lua_State *L) {
void *lib = dlopen(LUA_READLINELIB, RTLD_NOW | RTLD_LOCAL);
if (lib == NULL)
lua_warning(L, "library '" LUA_READLINELIB "'not found", 0);
lua_warning(L, "library '" LUA_READLINELIB "' not found", 0);
else {
const char **name = cast(const char**, dlsym(lib, "rl_readline_name"));
if (name != NULL)