summaryrefslogtreecommitdiff
path: root/src/userfunc.c
Commit message (Expand)AuthorAgeFilesLines
* patch 8.2.3692: Vim9: cannot use :func inside a :def functionv8.2.3692Bram Moolenaar2021-11-281-4/+4
* patch 8.2.3634: error for already defined function uses wrong line numberv8.2.3634Bram Moolenaar2021-11-201-0/+1
* patch 8.2.3633: Vim9: line number of lambda is off by onev8.2.3633Bram Moolenaar2021-11-201-1/+1
* patch 8.2.3560: using freed memory with lambdav8.2.3560Bram Moolenaar2021-10-231-3/+8
* patch 8.2.3557: Vim9: cannot call imported funcref at script levelv8.2.3557Bram Moolenaar2021-10-221-7/+48
* patch 8.2.3448: :endtry after function call that throws not foundv8.2.3448Bram Moolenaar2021-09-181-3/+5
* patch 8.2.3416: second error is reported while exception is being thrownv8.2.3416Bram Moolenaar2021-09-081-1/+1
* patch 8.2.3408: can delete a numbered functionv8.2.3408Bram Moolenaar2021-09-061-0/+7
* patch 8.2.3404: Vim9: no error for white space before "("v8.2.3404Bram Moolenaar2021-09-051-2/+6
* patch 8.2.3383: Vim9: completion for :disassemble adds parenthesisv8.2.3383naohiro ono2021-08-281-1/+2
* patch 8.2.3352: Vim9: error for nested :enddef has wrong line numberv8.2.3352Bram Moolenaar2021-08-151-0/+2
* patch 8.2.3317: Vim9: No error for missing white space before return typev8.2.3317Bram Moolenaar2021-08-081-1/+8
* patch 8.2.3297: cannot use all commands inside a {} blockv8.2.3297Bram Moolenaar2021-08-051-6/+6
* patch 8.2.3273: autocmd test failsv8.2.3273Bram Moolenaar2021-08-011-1/+1
* patch 8.2.3271: Vim9: cannot use :command or :au with block in :def functionv8.2.3271Bram Moolenaar2021-08-011-2/+15
* patch 8.2.3241: Vim9: memory leak when function reports an errorv8.2.3241Bram Moolenaar2021-07-281-0/+3
* patch 8.2.3237: when a builtin function gives an error processing continuesv8.2.3237Bram Moolenaar2021-07-281-1/+6
* patch 8.2.3235: cannot use lambda in {} block in user commandv8.2.3235Bram Moolenaar2021-07-281-1/+1
* patch 8.2.3216: Vim9: crash when using variable in a loop at script levelv8.2.3216Bram Moolenaar2021-07-251-22/+36
* patch 8.2.3190: error messages are spread outv8.2.3190Bram Moolenaar2021-07-201-1/+1
* patch 8.2.3185: Vim9: start of inline function found in comment linev8.2.3185Bram Moolenaar2021-07-191-15/+18
* patch 8.2.3171: another illegal memory access in testv8.2.3171Bram Moolenaar2021-07-151-1/+1
* patch 8.2.3170: Illegal memory access in testv8.2.3170Bram Moolenaar2021-07-151-1/+1
* patch 8.2.3169: Vim9: cannot handle nested inline functionv8.2.3169Bram Moolenaar2021-07-151-5/+33
* patch 8.2.3129: Vim9: imported uninitialized list does not get type checkedv8.2.3129Bram Moolenaar2021-07-081-1/+1
* patch 8.2.3128: Vim9: uninitialzed list does not get type checkedv8.2.3128Bram Moolenaar2021-07-081-1/+1
* patch 8.2.3107: Vim9: error for arguments while type didn't specify argumentsv8.2.3107Bram Moolenaar2021-07-041-1/+2
* patch 8.2.3105: Vim9: type of partial is wrong when it has argumentsv8.2.3105Bram Moolenaar2021-07-041-0/+11
* patch 8.2.3089: garbage collection has useless codev8.2.3089Bram Moolenaar2021-07-031-31/+28
* patch 8.2.3069: error messages are spread outv8.2.3069Bram Moolenaar2021-06-271-1/+1
* patch 8.2.3060: Vim9: cannot use ternary operator in parenthesisv8.2.3060Bram Moolenaar2021-06-261-2/+3
* patch 8.2.3059: Vim9: memory leak when using lambdav8.2.3059Bram Moolenaar2021-06-261-17/+20
* patch 8.2.3058: Vim9: cannot use ternary operator in parenthesisv8.2.3058Bram Moolenaar2021-06-261-1/+6
* patch 8.2.3056: Vim9: using default value in lambda gives confusing errorv8.2.3056Bram Moolenaar2021-06-261-1/+1
* patch 8.2.3031: no error if a function name starts with an underscorev8.2.3031Bram Moolenaar2021-06-211-1/+2
* patch 8.2.2985: Vim9: a compiled function cannot be debuggedv8.2.2985Bram Moolenaar2021-06-131-1/+1
* patch 8.2.2983: Vim9: an inline function requires specifying the return typev8.2.2983Bram Moolenaar2021-06-121-1/+1
* patch 8.2.2951: Vim9: cannot use heredoc for :python, :lua, etc.v8.2.2951Bram Moolenaar2021-06-061-4/+37
* patch 8.2.2882: Vim9: memory leak when lambda has an errorv8.2.2882Bram Moolenaar2021-05-241-0/+4
* patch 8.2.2866: Vim9: memory leak when using inline functionv8.2.2866Bram Moolenaar2021-05-181-6/+7
* patch 8.2.2865: skipping over function body failsv8.2.2865Bram Moolenaar2021-05-181-1/+4
* patch 8.2.2864: Vim9: crash when using inline functionv8.2.2864Bram Moolenaar2021-05-181-7/+86
* patch 8.2.2764: memory leak when default function argument is allocatedv8.2.2764Bram Moolenaar2021-04-141-0/+9
* patch 8.2.2758: Vim9: wrong line number for autoload function with wrong namev8.2.2758Bram Moolenaar2021-04-121-0/+4
* patch 8.2.2751: Coverity warns for using NULL pointerv8.2.2751Bram Moolenaar2021-04-101-2/+4
* patch 8.2.2746: check for duplicate arguments does not workv8.2.2746Bram Moolenaar2021-04-101-1/+1
* patch 8.2.2745: Vim9: missing part of the argument changev8.2.2745Bram Moolenaar2021-04-101-11/+13
* patch 8.2.2740: Vim9: lambda with varargs doesn't workv8.2.2740Bram Moolenaar2021-04-091-23/+38
* patch 8.2.2739: Vim9: a lambda accepts too many arguments at the script levelv8.2.2739Bram Moolenaar2021-04-091-2/+3
* patch 8.2.2726: confusing error message with white space before commav8.2.2726Bram Moolenaar2021-04-061-0/+11