summaryrefslogtreecommitdiff
path: root/src/userfunc.c
Commit message (Expand)AuthorAgeFilesLines
* patch 8.2.4928: various white space and cosmetic mistakesv8.2.4928Bram Moolenaar2022-05-091-1/+1
* patch 8.2.4888: line number of lambda ignores line continuationv8.2.4888Bram Moolenaar2022-05-061-4/+10
* patch 8.2.4782: accessing freed memoryv8.2.4782Bram Moolenaar2022-04-181-1/+2
* patch 8.2.4770: cannot easily mix expression and heredocv8.2.4770Yegappan Lakshmanan2022-04-171-5/+16
* patch 8.2.4716: memory allocation failure not tested when defining a functionv8.2.4716Yegappan Lakshmanan2022-04-091-1/+1
* patch 8.2.4682: Vim9: can use :unlockvar for const variablev8.2.4682Bram Moolenaar2022-04-041-1/+1
* patch 8.2.4659: invalid memory access when using printable function namev8.2.4659Bram Moolenaar2022-03-311-1/+1
* patch 8.2.4657: errors for functions are sometimes hard to readv8.2.4657Bram Moolenaar2022-03-311-7/+25
* patch 8.2.4650: "import autoload" only works with using 'runtimepath'v8.2.4650Bram Moolenaar2022-03-301-8/+18
* patch 8.2.4586: Vim9: no error for using lower case name for "func" argumentv8.2.4586Bram Moolenaar2022-03-171-0/+6
* patch 8.2.4548: script-local function is deleted when used in a funcrefv8.2.4548Bram Moolenaar2022-03-111-3/+4
* patch 8.2.4529: Vim9: comparing partial with function failsv8.2.4529Bram Moolenaar2022-03-081-5/+13
* patch 8.2.4528: crash when using null_function for a partialv8.2.4528Bram Moolenaar2022-03-081-6/+11
* patch 8.2.4514: Vim9: some flow commands can be shortenedv8.2.4514Bram Moolenaar2022-03-051-0/+5
* patch 8.2.4472: Coverity warns for use of a freed function namev8.2.4472Bram Moolenaar2022-02-251-1/+1
* patch 8.2.4460: Vim9: wrong error for defining dict functionv8.2.4460Bram Moolenaar2022-02-231-3/+14
* patch 8.2.4429: using script-local function from the wrong scriptv8.2.4429Bram Moolenaar2022-02-211-5/+34
* patch 8.2.4417: using NULL pointerv8.2.4417Bram Moolenaar2022-02-181-1/+3
* patch 8.2.4416: Vim9: using a script-local function requires using "s:"v8.2.4416Bram Moolenaar2022-02-181-6/+18
* patch 8.2.4375: ctx_imports is not usedv8.2.4375Bram Moolenaar2022-02-131-3/+2
* patch 8.2.4367: calling in_vim9script() multiple timesv8.2.4367Bram Moolenaar2022-02-131-24/+26
* patch 8.2.4365: sticky command modifiers are too stickyv8.2.4365Bram Moolenaar2022-02-121-0/+7
* patch 8.2.4360: Vim9: allowing use of "s:" leads to inconsistenciesv8.2.4360Bram Moolenaar2022-02-121-0/+18
* patch 8.2.4332: Vim9: incomplete test for existing script variable in blockv8.2.4332Bram Moolenaar2022-02-081-4/+7
* patch 8.2.4324: Vim9: script-local function name can start with "_"v8.2.4324Bram Moolenaar2022-02-071-10/+14
* patch 8.2.4308: Vim9: cannot list autoload functionv8.2.4308Bram Moolenaar2022-02-061-1/+1
* patch 8.2.4269: Coverity warns for using a NULL pointerv8.2.4269Bram Moolenaar2022-01-311-1/+2
* patch 8.2.4266: compiler warning for uninitialized variablev8.2.4266Bram Moolenaar2022-01-301-1/+1
* patch 8.2.4264: Vim9: can use old style autoload function namev8.2.4264Bram Moolenaar2022-01-301-6/+5
* patch 8.2.4260: Vim9: can still use a global function without g:v8.2.4260Bram Moolenaar2022-01-301-3/+39
* patch 8.2.4257: Vim9: finding global function without g: prefix inconsistentv8.2.4257Bram Moolenaar2022-01-291-1/+1
* patch 8.2.4202: Vim9: cannot export function that exists globallyv8.2.4202Bram Moolenaar2022-01-241-9/+18
* patch 8.2.4174: Vim9: can use an autoload name in normal scriptv8.2.4174Bram Moolenaar2022-01-211-0/+6
* patch 8.2.4171: cannot invoke option function using autoload importv8.2.4171Bram Moolenaar2022-01-211-1/+1
* patch 8.2.4168: disallowing empty function name breaks existing pluginsv8.2.4168Bram Moolenaar2022-01-211-2/+2
* patch 8.2.4164: error in legacy code for function shadowing variablev8.2.4164Bram Moolenaar2022-01-201-1/+1
* patch 8.2.4163: no error for omitting function name after autoload prefixv8.2.4163Bram Moolenaar2022-01-201-1/+2
* patch 8.2.4162: Vim9: no error for redefining function with exportv8.2.4162Bram Moolenaar2022-01-201-5/+52
* patch 8.2.4145: confusing error when using name of import for a functionv8.2.4145Bram Moolenaar2022-01-191-5/+11
* patch 8.2.4123: complete function cannot be import.Namev8.2.4123Bram Moolenaar2022-01-171-4/+16
* patch 8.2.4114: Vim9: type checking for a funcref does not work for methodv8.2.4114Bram Moolenaar2022-01-161-1/+2
* patch 8.2.4086: "cctx" argument of find_func_even_dead() is unusedv8.2.4086Bram Moolenaar2022-01-131-19/+19
* patch 8.2.4075: test failuresv8.2.4075Bram Moolenaar2022-01-131-3/+1
* patch 8.2.4073: Coverity warns for using NULL pointerv8.2.4073Bram Moolenaar2022-01-131-4/+4
* patch 8.2.4067: Vim9: cannot call imported function with :callv8.2.4067Bram Moolenaar2022-01-121-0/+24
* patch 8.2.4063: Vim9: exported function in autoload script not foundv8.2.4063Bram Moolenaar2022-01-111-3/+49
* patch 8.2.4055: Vim9: line break in expression causes v:errmsg to be fillecv8.2.4055Bram Moolenaar2022-01-101-3/+8
* patch 8.2.4053: Vim9: autoload mechanism doesn't fully work yetv8.2.4053Bram Moolenaar2022-01-101-2/+5
* patch 8.2.4050: Vim9: need to prefix every item in an autoload scriptv8.2.4050Bram Moolenaar2022-01-091-2/+5
* patch 8.2.4043: using int for second argument of ga_init2()v8.2.4043Bram Moolenaar2022-01-081-7/+7