lua-users home
lua-l archive

Search lua-l

This index contains 143,615 documents and 1,774,615 keywords. Last update on 2023-03-09 .

Query: [How to search]

Display: Description: Sort by:

Results:

References: [ fixed: 3894 ] [ point: 15188 ]

Total 640 documents matching your query.

281. Lua's great (and LuaJIT's broken) (score: 13)
Author: "Sebastien Loisel" <loisel@...>
Date: Fri, 27 Jun 2008 17:58:35 -0400
Dear Mike, Thanks for your quick reply. Well, 80% of the user base of LuaJIT is using Windows and so far nobody ever reported a problem compiling it. I haven't had problems compiling it either! But t
282. Re: an easy lua API (score: 13)
Author: YutakaUeno <uenoyt@...>
Date: Tue, 3 Jun 2008 17:56:42 +0900
Thank you for comments and discussions even my post is not well written. Please let me describe more. Once I thought the same way as your comment. For tables, an integer handle is not always necessar
283. RE: Odd behaviour with multiple return values and varargs (score: 13)
Author: "Tom Miles" <Tom@...>
Date: Thu, 13 Sep 2007 10:01:19 +0100
I'm not sure I understand your point. In my mind, if I have two functions returning 2 values, then I have 4 values plain and simple. It would be treated exactly the same as print(1,2,3,4). Is there
284. Re: C/C++ bindings: automated or by hand? (score: 13)
Author: Stephan Kaiser <stephan.kaiser@...>
Date: Sun, 09 Sep 2007 16:58:36 +0200
I'd like to give a bit feedback from another point of view: In our little hobbyist VR/game engine we use a mix of Luabind with additional manual bindings when Luabind doesn't cut it or we need to ext
285. Re: Ideas about implementing a string type? (score: 13)
Author: David Kastrup <dak@...>
Date: Thu, 29 Mar 2007 20:25:34 +0200
You probably meant this the other way round? I very much doubt it. Those are expensive loops. I doubt that million byte strings are the norm. And I doubt that you'll _ever_ be in the situation that m
286. Re: Debug hooks and the "line" string (score: 13)
Author: Mike Pall <mikelu-0703@...>
Date: Tue, 13 Mar 2007 22:45:37 +0100
Hi, The point is not about keeping these particular strings alive. They are usually alive. But this can only be detected by computing the hash (the expensive part of luaS_newlstr). One solution is to
287. Re: C++, pcall, and yield (score: 13)
Author: "Greg Falcon" <veloso@...>
Date: Tue, 18 Apr 2006 15:27:16 -0400
[...snip...] But the benefit I'm talking about has nothing to do with throwing exceptions THROUGH the Lua core. Here is a snippet of C++ which demonstrates what I think is useful about compiling lua
288. Re: Problems with compat-5.1 release 3 (score: 13)
Author: Diego Nehab <diego@...>
Date: Mon, 20 Jun 2005 18:10:13 -0400 (EDT)
Hi, Besides, the fact that this __index field is left behind is an unwanted artifact. I trully believe it should be removed even if you don't plan to use "mymodule.error" or the like. After all, the
289. Re: (score: 13)
Author: William Roper <lacutis@...>
Date: Wed, 12 Jan 2005 08:15:09 -0800
That sounds like a job for LuaChip! ;) Hows that project going anyway? Ryan.
290. From: Tom Pike <thwpike@...> (score: 13)
Author: Tom Pike <thwpike@p3international.org>
Date: Thu, 13 Jan 2005 01:57:04 +0000
G'day All, I am a developer for the P3 Project (Providing Palms for the Poor). Our aim is to break the poverty cycle by providing information and other technology services to those who are amongst th
291. GC Metamethod and Tables (score: 13)
Author: virgil@... (Virgil Smith)
Date: Tue, 12 Aug 2003 15:48:21 -0500
1. Has Lua been fixed to call the gc metamethod for tables as well as for userdatas? 2. If the answer is no and there is no plan to, then where does one send feature requests/explanations (other than
292. RE: Lua and adding types (score: 13)
Author: Asko Kauppi <Asko.Kauppi@...>
Date: Wed, 5 Feb 2003 15:11:28 +0200
Lua itself (at least 5.0) allows the number type to be easily defined as either double or long. For an embedded program, I would definately change the native Lua type to integers. Makes the engine sm
293. RE: On lua5 and embedding (score: 13)
Author: "Bilyk, Alex" <ABilyk@...>
Date: Tue, 28 Jan 2003 14:38:35 -0800
Yeah, I was complaining about this as well. Then someone said that __get and __set have been removed as a speed improvement. Curiously enough, IMHO, one could actually do more with tags in Lua4 and i
294. Re: [lua-l] Digest Number 734 (score: 13)
Author: Philippe Lhoste <PhiLho@...>
Date: Tue, 28 May 2002 10:28:55 +0200 (MEST)
Note: I feel I can comment on the subject, because I have done the same error in the past (and can do it again :-) Ralf, you should remember to copy the subject from the message you are replying to,
295. Re: Coroutine support in 4.1 / IPC mechanisms (score: 13)
Author: Tore Lund <tl001@...>
Date: Fri, 20 Apr 2001 13:53:53 +0200
What about the size of all this? One reason why I am looking into Lua is that it fits comfortably into a 16-bit SMALL memory model (64 KB code + 64 KB data). I hope (core) Lua will not outgrow this m
296. Re: about the new version (score: 13)
Author: Edgar Toernig <froese@...>
Date: Mon, 10 Apr 2000 21:51:10 +0200
Hi, Great! I only hope, that at that moment not everything is already set in stone ;) That sounds like an invitation. Here I go *bg* "break" is something I really missed. I can understand the impleme
297. Re: Lua Future (Was: Re: The ~) (score: 13)
Author: Luiz Henrique de Figueiredo <lhf@...>
Date: Fri, 17 Mar 2000 23:55:43 -0300 (EST)
That's ok. We'd still prefer that you called it Lua, of course, keeing the syntax intact, but you're free to do as you wish, as long as you comply with our requests set in the COPYRIGHT notice. Lua
298. Re: Newbie: Cooperative Multitasking (score: 13)
Author: Edgar Toernig <froese@...>
Date: Thu, 04 Nov 1999 22:25:58 +0100
Hi, The term cooperative multitasking is OK *g*. If you'll omit the management functionality you could call it coroutines. Unfortunately lua uses the C stack and allows lua to call C functions which
299. Re: Question on replacing macros with static inline functions (score: 10)
Author: Philippe Verdy <verdyp@...>
Date: Thu, 17 Nov 2022 10:11:19 +0100
May be there's a way to configure macros to detect support of incline functionsso that they replace the macro _expression_ by a function call. This would allow better type analyses on platforms with
300. Re: Question on replacing macros with static inline functions (score: 10)
Author: Wilfred Nilsen <realtimelogic@...>
Date: Wed, 16 Nov 2022 06:43:11 +0100
Embedded systems can have a very long life cycle (20+ years) and many of our customers use legacy build systems. -Wilfred That's Interesting. Out of curiosity, could you disclose which kind of system

Search by Namazu v2.0.21