[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: [PATCH] Fix typos (found by codespell)
- From: Stefan Weil <sw@...>
- Date: Fri, 27 Dec 2019 14:59:33 +0100
Am 27.12.19 um 14:26 schrieb Roberto Ierusalimschy:
>> Signed-off-by: Stefan Weil <sw@weilnetz.de>
>> ---
>> src/lcode.c | 2 +-
>> src/lobject.c | 2 +-
>> 2 files changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/src/lcode.c b/src/lcode.c
>> index 12619f5..dc7271d 100644
>> --- a/src/lcode.c
>> +++ b/src/lcode.c
>> @@ -1061,7 +1061,7 @@ static void codecomp (FuncState *fs, BinOpr opr,
>> expdesc *e1, expdesc *e2) {
>> /*
>> -** Aplly prefix operation 'op' to expression 'e'.
>> +** Apply prefix operation 'op' to expression 'e'.
>> */
>> void luaK_prefix (FuncState *fs, UnOpr op, expdesc *e, int line) {
>> static const expdesc ef = {VKINT, {0}, NO_JUMP, NO_JUMP};
>> [...]
> What version are you talking about?
>
> -- Roberto
The patch is for lua-5.3.5, the latest released version which I could
find. Or is there a Git repository (or Subversion, ...) with newer code
somewhere?
You can get the patch also from
https://github.com/stweil/lua/commit/2ec2f52a8569f463f065247f9b7f374a551e99b8.patch.
-- Stefan