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.

381. Re: [patch][c++] fix "invalid conversion from ?void*? to ?char*?" (score: 10)
Author: Roberto Ierusalimschy <roberto@...>
Date: Mon, 27 Jun 2016 12:36:01 -0300
BTW, we always use -Wmissing-prototypes plus -Wstrict-prototypes and -Wold-style-definition and -Wc++-compat. This last one should have warned us about this particular problem: -Wc++-compat (C and O
382. Re: [patch][c++] fix "invalid conversion from ?void*? to ?char*?" (score: 10)
Author: Roberto Ierusalimschy <roberto@...>
Date: Mon, 27 Jun 2016 10:12:52 -0300
We always use -Wmissing-prototypes, so this does not seem to be an issue. Note that Lua already casts all the result of malloc (see macros in 'lmem.h')--otherwise there would be lots of errors like
383. Re: [ANN] Haxe Lua : compile Lua/LuaJIT script from Haxe 3.3 (score: 10)
Author: Justin Donaldson <jdonaldson@...>
Date: Tue, 31 May 2016 06:42:24 +0200
Quick update: I pushed a few more changes...  I figured out a way to shave some time off the base array type using your simpler metatable method (thanks!).  It involved refactoring some other behavio
384. Re: [ANN] https at www.lua.org (score: 10)
Author: Nagaev Boris <bnagaev@...>
Date: Thu, 17 Mar 2016 23:45:54 +0300
GitHub must be comprising over thousands machines, but all pages of more than 10.000.000 users are accessible via only one site name (github.com). They don't create a subdomain for each user/repo. I
385. Re: [ANN] https at www.lua.org (score: 10)
Author: Daniel Silverstone <dsilvers@...>
Date: Thu, 17 Mar 2016 15:54:31 +0000
Because not all domains are hosted on a single system. Pepperfish comprises over six computers. The 'A' record on a domain is more about providing for bad mail systems which don't properly look up MX
386. Re: [ANN] luaposix 33.4.0 released (score: 10)
Author: Nagaev Boris <bnagaev@...>
Date: Sun, 28 Feb 2016 16:25:15 +0300
require 'lcurses' doesn't work here. require 'curses' works. -- Best regards, Boris Nagaev
387. [ANN] luaposix 33.4.0 released (score: 10)
Author: "Gary V. Vaughan" <gary@...>
Date: Sat, 27 Feb 2016 14:44:01 +0000
A library binding various POSIX APIs. POSIX is the IEEE Portable Operating System Interface standard. luaposix is based on lposix. I am happy to announce release 33.4.0 of luaposix. The biggest chang
388. Re: A 5.3 change is biting us hard... (score: 10)
Author: Marc Balmer <marc@...>
Date: Wed, 10 Feb 2016 19:12:57 +0100
I found the issue: We us a luaproxy module to map values from one Lua state to another. And this module did not differentiate between LUA_TNUMBER/integer and LUA_TNUMBER/float. So an integer would be
389. Re: Negative zero denominator (score: 10)
Author: William Ahern <william@...>
Date: Fri, 21 Aug 2015 11:44:53 -0700
In C, at least, where signed magnitude and ones' complement representations are used for signed integer, negative 0 is permitted to be a trap representation. ... Which of these applies is implementat
390. Re: Ravi bug related to setting of L->top in OP_RETURN (score: 10)
Author: ?? Cloud Wu <cloudwu@...>
Date: Sat, 15 Aug 2015 16:02:03 +0000
I think as it stands if luaD_poscall() does not leave L->top point to the top of the results then external callers of luaV_execute() will not know how many values were returned. I think luaV_execute(
391. Re: Ravi bug related to setting of L->top in OP_RETURN (score: 10)
Author: ?? Cloud Wu <cloudwu@...>
Date: Thu, 13 Aug 2015 03:47:29 +0000
Dibyendu Majumdar <mobile@majumdar.org.uk>?2015?8?13??? ??6:56??? My original problem was that the the behaviour of luaV_execute() is different from the way a Lua function returns from OP_RETURN. So
392. Re: lua_checkstack() docs (score: 10)
Author: Tim Hill <drtimhill@...>
Date: Mon, 3 Aug 2015 17:11:44 -0700
yes that was really just my point .. i think the last sentence should say ?if the stack *capacity* is already larger??, otherwise it's rather unclear. ?Tim
393. Re: [ANN] Lua 5.3.1 (final) now available (score: 10)
Author: Luiz Henrique de Figueiredo <lhf@...>
Date: Wed, 17 Jun 2015 12:39:58 -0300
It'll be fixed by tomorrow. Thanks.
394. [ANN] luaposix 33.3.0 *UN*released (score: 10)
Author: "Gary V. Vaughan" <gary@...>
Date: Sun, 1 Mar 2015 09:17:05 +0000
Embarrasingly, this release was completely broken, to the point that even `require "posix"` didn't work. I've removed it from LuaRocks so that you still get the previous working version when dependen
395. Literal mimicking of C APIs in Lua (split from Re: [ANN] luaposix 33.3.0 released) (score: 10)
Author: Sean Conner <sean@...>
Date: Sat, 28 Feb 2015 23:16:51 -0500
It was thus said that the Great Gary V. Vaughan once stated: This isn't about luaposix per se, but this is prompting this observation about Lua wrappers for C APIs: they tend to mimic it quite litera
396. Re: Please add warning to download page if tarball isn't patched up with all latest security fixes (score: 10)
Author: "Thomas Harning" <harningt@...>
Date: Thu, 21 Aug 2014 06:30:15 -0700 (PDT)
Bizarre... Fixes are what point release changes are meant for. I'd be annoyed if two downloads of a specific release changed over the time-it's like modifying a tag... You just don't do it. On Thursd
397. Re: LuaJIT Lua Gulf? (Was: Why I leave Lua..) (score: 10)
Author: Coda Highland <chighland@...>
Date: Thu, 10 Jul 2014 23:18:56 -0700
I meant at a disadvantage to its own potential performance (i.e. running LuaJIT-optimized code), not relative to PUC Lua. Specifically, using FFI structs outperforms using tables when you can live wi
398. Re: More lua stack operations support? (score: 10)
Author: Luiz Henrique de Figueiredo <lhf@...>
Date: Wed, 9 Jul 2014 13:30:28 -0300
What would say string.concat achieve that cannot be written explicitly? Every call to string.concat would have a fixed number of arguments and so can be replaced by a series of explicit concatenatio
399. Re: Metaprogramming (score: 10)
Author: steve donovan <steve.j.donovan@...>
Date: Sat, 5 Jul 2014 12:41:19 +0200
I appreciate this point as well; although I went to trouble to get LuaMacro right, I no longer believe that ad-hoc syntax extension is appropriate for code shared with other people[1]. I'm also a fan
400. Re: Added pause (-p) option to Lua REPL (score: 10)
Author: Jay Carlson <nop@...>
Date: Fri, 30 May 2014 23:04:05 -0400
(I'm clipping everything they once stated, but since I started reading their name as "Coroutínes"--think "Martínez"--I thought that should be styled "Coroutínes Magno". Except I really don't know how

Search by Namazu v2.0.21