mirror of
https://github.com/lua/lua
synced 2024-12-24 19:36:50 +03:00
detail (better error message for invalid format)
This commit is contained in:
parent
c351392940
commit
fe8f4c06f1
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
** $Id: lstrlib.c,v 1.130 2005/12/29 15:32:11 roberto Exp roberto $
|
** $Id: lstrlib.c,v 1.131 2006/04/12 20:13:52 roberto Exp roberto $
|
||||||
** Standard library for string operations and pattern-matching
|
** Standard library for string operations and pattern-matching
|
||||||
** See Copyright Notice in lua.h
|
** See Copyright Notice in lua.h
|
||||||
*/
|
*/
|
||||||
@ -809,7 +809,8 @@ static int str_format (lua_State *L) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
default: { /* also treat cases `pnLlh' */
|
default: { /* also treat cases `pnLlh' */
|
||||||
return luaL_error(L, "invalid option to " LUA_QL("format"));
|
return luaL_error(L, "invalid option " LUA_QL("%%%c") " to "
|
||||||
|
LUA_QL("format"), *(strfrmt - 1));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
luaL_addlstring(&b, buff, strlen(buff));
|
luaL_addlstring(&b, buff, strlen(buff));
|
||||||
|
Loading…
Reference in New Issue
Block a user