]> git.lyx.org Git - lyx.git/blobdiff - src/support/environment.cpp
Improvements to the shortcuts preference dialog (#9174)
[lyx.git] / src / support / environment.cpp
index 813d418d9a9dcd2f8c418371ca6332bfbca92603..ceaca60f547d86aebc21b295a424b4f08395fb13 100644 (file)
@@ -75,6 +75,7 @@ bool setEnv(string const & name, string const & value)
        // the argument of putenv() needs to be static, because changing its
        // value will change the environment. Therefore we need a different static
        // storage for each variable.
+       // FIXME THREAD
        static map<string, string> varmap;
        varmap[name] = name + '=' + encoded;
        return ::putenv(const_cast<char*>(varmap[name].c_str())) == 0;