aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/lua/stdlib.c
diff options
context:
space:
mode:
authorbfredl <bjorn.linse@gmail.com>2022-02-26 11:03:39 +0100
committerbfredl <bjorn.linse@gmail.com>2022-02-26 15:00:13 +0100
commit850b3e19c9fc8d84d960e6932a9ad4f0bcad2a8e (patch)
treee39bc72d137cd8a0863881b675fe83df6969b047 /src/nvim/lua/stdlib.c
parentacf38245d8961125f02d4c4168053e0d83dbc6df (diff)
downloadrneovim-850b3e19c9fc8d84d960e6932a9ad4f0bcad2a8e.tar.gz
rneovim-850b3e19c9fc8d84d960e6932a9ad4f0bcad2a8e.tar.bz2
rneovim-850b3e19c9fc8d84d960e6932a9ad4f0bcad2a8e.zip
refactor(lua): cleanup and docs for threads
Diffstat (limited to 'src/nvim/lua/stdlib.c')
-rw-r--r--src/nvim/lua/stdlib.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nvim/lua/stdlib.c b/src/nvim/lua/stdlib.c
index 6a2aef6683..c2ce899a74 100644
--- a/src/nvim/lua/stdlib.c
+++ b/src/nvim/lua/stdlib.c
@@ -474,6 +474,9 @@ static int nlua_stricmp(lua_State *const lstate) FUNC_ATTR_NONNULL_ALL
void nlua_state_add_stdlib(lua_State *const lstate, bool is_thread)
{
if (!is_thread) {
+ // TODO(bfredl): some of basic string functions should already be
+ // (or be easy to make) threadsafe
+
// stricmp
lua_pushcfunction(lstate, &nlua_stricmp);
lua_setfield(lstate, -2, "stricmp");