Re: Lua Lanes with package.preload and package.loader
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: Lua Lanes with package.preload and package.loader
- From: Greg <tghill@...>
- Date: 2011年11月17日 03:34:54 +0000 (UTC)
> package.preload.socket.core is just a name which is a key in a table,
> it doesn't mean I have retrieved the value of
> package.preload.socket.core (which doesn't exist).
I think there is a difference between searching for
package.preload.socket.core
and package.preload["socket.core"].
package.preload.socket.core is nil but package.preload["socket.core"]
has a value.
Is it possible that the string is being processed incorrectly?
- Greg