summaryrefslogtreecommitdiff
path: root/src/eval.c
Commit message (Expand)AuthorAgeFilesLines
* patch 9.0.0253: a symlink to an autoload script results in two entriesv9.0.0253Bram Moolenaar2022-08-241-0/+1
* patch 9.0.0225: using freed memory with multiple line breaks in expressionv9.0.0225Bram Moolenaar2022-08-181-42/+60
* patch 9.0.0156: giving E1170 only in an expression is confusingv9.0.0156Bram Moolenaar2022-08-061-5/+0
* patch 9.0.0150: error for using #{ in an expression is a bit confusingv9.0.0150Bram Moolenaar2022-08-061-0/+5
* patch 8.2.5169: nested :source may use NULL pointerv8.2.5169Bram Moolenaar2022-06-271-19/+25
* patch 8.2.5053: cannot have a comment halfway an expression in a blockv8.2.5053Bram Moolenaar2022-06-031-2/+31
* patch 8.2.5046: vim_regsub() can overwrite the destinationv8.2.5046Bram Moolenaar2022-05-301-3/+4
* patch 8.2.5029: "textlock" is always zerov8.2.5029zeertzjq2022-05-271-5/+5
* patch 8.2.5006: asan warns for undefined behaviorv8.2.5006Bram Moolenaar2022-05-221-1/+1
* patch 8.2.5004: right shift on negative number does not work as documentedv8.2.5004Bram Moolenaar2022-05-221-5/+1
* patch 8.2.5003: cannot do bitwise shiftsv8.2.5003Yegappan Lakshmanan2022-05-221-24/+139
* patch 8.2.4930: interpolated string expression requires escapingv8.2.4930Bram Moolenaar2022-05-101-2/+2
* patch 8.2.4912: using execute() to define a lambda doesn't workv8.2.4912Bram Moolenaar2022-05-071-1/+1
* patch 8.2.4897: comment inside an expression in lambda ignores the restv8.2.4897Bram Moolenaar2022-05-061-2/+9
* patch 8.2.4896: expression in command block does not look after NLv8.2.4896Bram Moolenaar2022-05-061-1/+2
* patch 8.2.4883: string interpolation only works in heredocv8.2.4883LemonBoy2022-05-061-1/+5
* patch 8.2.4869: expression in command block does not look after NLv8.2.4869Bram Moolenaar2022-05-051-14/+20
* patch 8.2.4847: crash when using uninitialized function pointerv8.2.4847LemonBoy2022-04-291-1/+2
* patch 8.2.4822: setting ufunc to NULL twicev8.2.4822LemonBoy2022-04-241-1/+1
* patch 8.2.4821: crash when imported autoload script was deletedv8.2.4821Bram Moolenaar2022-04-241-1/+1
* patch 8.2.4774: crash when using a number for lambda namev8.2.4774Bram Moolenaar2022-04-171-6/+10
* patch 8.2.4755: cannot use <SID>FuncRef in completion specv8.2.4755Bram Moolenaar2022-04-151-1/+9
* patch 8.2.4753: error from setting an option is silently ignoredv8.2.4753Bram Moolenaar2022-04-151-1/+1
* patch 8.2.4734: getcharpos() may change a mark positionv8.2.4734Bram Moolenaar2022-04-111-10/+11
* patch 8.2.4682: Vim9: can use :unlockvar for const variablev8.2.4682Bram Moolenaar2022-04-041-1/+1
* patch 8.2.4662: no error for using out of range list indexv8.2.4662Bram Moolenaar2022-04-011-1/+2
* patch 8.2.4657: errors for functions are sometimes hard to readv8.2.4657Bram Moolenaar2022-03-311-8/+22
* patch 8.2.4622: Vim9: crash with :execute and :finishv8.2.4622Bram Moolenaar2022-03-251-1/+5
* patch 8.2.4594: need to write script to a file to be able to source themv8.2.4594Yegappan Lakshmanan2022-03-191-1/+1
* patch 8.2.4589: cannot index the g: dictionaryv8.2.4589Bram Moolenaar2022-03-181-1/+2
* patch 8.2.4584: error for using autoload function in custom completionv8.2.4584Bram Moolenaar2022-03-171-4/+3
* patch 8.2.4582: useless code handling a type declarationv8.2.4582Bram Moolenaar2022-03-161-16/+6
* patch 8.2.4578: no warning when autoload script for completion has an errorv8.2.4578Bram Moolenaar2022-03-161-3/+11
* patch 8.2.4575: Vim9: test for profiling still failsv8.2.4575Bram Moolenaar2022-03-151-2/+2
* patch 8.2.4556: test fails without the +job or +channel featurev8.2.4556Bram Moolenaar2022-03-131-4/+10
* patch 8.2.4540: line number for error is off by onev8.2.4540Bram Moolenaar2022-03-101-0/+3
* patch 8.2.4526: Vim9: cannot set variables to a null valuev8.2.4526Bram Moolenaar2022-03-081-20/+100
* patch 8.2.4375: ctx_imports is not usedv8.2.4375Bram Moolenaar2022-02-131-2/+1
* patch 8.2.4367: calling in_vim9script() multiple timesv8.2.4367Bram Moolenaar2022-02-131-32/+33
* patch 8.2.4360: Vim9: allowing use of "s:" leads to inconsistenciesv8.2.4360Bram Moolenaar2022-02-121-0/+14
* patch 8.2.4348: "legacy exe cmd" does not do what one would expectv8.2.4348Bram Moolenaar2022-02-111-0/+8
* patch 8.2.4333: cstack not always passed to where it is neededv8.2.4333Bram Moolenaar2022-02-081-2/+2
* patch 8.2.4322: Vim9: crash when using funcref with closurev8.2.4322Bram Moolenaar2022-02-071-0/+3
* patch 8.2.4318: various comment and indent mistakes, returning wrong zerov8.2.4318Bram Moolenaar2022-02-071-5/+5
* patch 8.2.4286: Vim9: strict type checking after copy() and deepcopy()v8.2.4286Bram Moolenaar2022-02-021-2/+6
* patch 8.2.4273: the EBCDIC support is outdatedv8.2.4273Bram Moolenaar2022-01-311-7/+0
* patch 8.2.4257: Vim9: finding global function without g: prefix inconsistentv8.2.4257Bram Moolenaar2022-01-291-1/+1
* patch 8.2.4255: theoretical computation overflowv8.2.4255=?UTF-8?q?Dundar=20G=C3=B6c?=2022-01-291-1/+1
* patch 8.2.4226: filter-map test failsv8.2.4226Bram Moolenaar2022-01-261-1/+1
* patch 8.2.4224: Vim9: no error when using a number for map() second argumentv8.2.4224Bram Moolenaar2022-01-261-1/+1