summaryrefslogtreecommitdiff
path: root/src/list.c
Commit message (Expand)AuthorAgeFilesLines
* patch 8.2.3449: sort fails if the sort compare function returns 999v8.2.3449Yasuhiro Matsumoto2021-09-191-0/+6
* patch 8.2.3427: double free when list is copiedv8.2.3427Bram Moolenaar2021-09-111-1/+7
* patch 8.2.3422: Vim9: no failure if return type differs from returned varv8.2.3422Bram Moolenaar2021-09-091-0/+1
* patch 8.2.3338: Vim9: no type check when assigning a list rangev8.2.3338Bram Moolenaar2021-08-131-0/+9
* patch 8.2.3336: behavior of negative index in list change changedv8.2.3336Bram Moolenaar2021-08-121-3/+7
* patch 8.2.3335: Vim9: not enough tests run with Vim9v8.2.3335Bram Moolenaar2021-08-121-23/+28
* patch 8.2.3332: Vim9: cannot assign to range in listv8.2.3332Bram Moolenaar2021-08-111-0/+152
* patch 8.2.3320: some local functions are not staticv8.2.3320Yegappan Lakshmanan2021-08-091-1/+1
* patch 8.2.3284: no error for insert() or remove() changing a locked blobv8.2.3284Sean Dewar2021-08-041-28/+32
* patch 8.2.3229: Vim9: runtime and compile time type checks are not the samev8.2.3229Yegappan Lakshmanan2021-07-271-4/+1
* patch 8.2.3206: Vim9: argument types are not checked at compile timev8.2.3206Yegappan Lakshmanan2021-07-231-6/+38
* patch 8.2.3200: Vim9: hard to guess where a type error is givenv8.2.3200Bram Moolenaar2021-07-221-13/+18
* patch 8.2.3190: error messages are spread outv8.2.3190Bram Moolenaar2021-07-201-1/+1
* patch 8.2.3188: Vim9: argument types are not checked at compile timev8.2.3188Yegappan Lakshmanan2021-07-201-0/+32
* patch 8.2.3182: Vim9: crash when using removing items from a constant listv8.2.3182Bram Moolenaar2021-07-181-6/+26
* patch 8.2.3133: Vim9: memory leak when add() failsv8.2.3133Bram Moolenaar2021-07-091-1/+2
* patch 8.2.3127: Vim9: no error when adding number to list of stringv8.2.3127Bram Moolenaar2021-07-081-1/+4
* patch 8.2.3069: error messages are spread outv8.2.3069Bram Moolenaar2021-06-271-1/+1
* patch 8.2.2782: Vim9: blob operations not fully testedv8.2.2782Bram Moolenaar2021-04-181-21/+33
* patch 8.2.2781: add() silently skips when adding to null list or blobv8.2.2781Bram Moolenaar2021-04-181-8/+19
* patch 8.2.2759: Vim9: for loop infers type of loop variablev8.2.2759Bram Moolenaar2021-04-131-2/+2
* patch 8.2.2738: extending a list with itself can give wrong resultv8.2.2738Bram Moolenaar2021-04-081-1/+8
* patch 8.2.2621: typval2type() cannot handle recursive structuresv8.2.2621Bram Moolenaar2021-03-181-2/+2
* patch 8.2.2537: Vim9: crash when map() failsv8.2.2537Bram Moolenaar2021-02-211-0/+1
* patch 8.2.2533: Vim9: cannot use a range with :unletv8.2.2533Bram Moolenaar2021-02-201-0/+20
* patch 8.2.2501: not always clear where an error is reportedv8.2.2501Bram Moolenaar2021-02-111-9/+11
* patch 8.2.2486: Vim9: some errors for white space do not show contextv8.2.2486Bram Moolenaar2021-02-071-1/+2
* patch 8.2.2480: Vim9: some errors for white space do not show contextv8.2.2480Bram Moolenaar2021-02-071-1/+1
* patch 8.2.2449: Vim9: flatten() always changes the list typev8.2.2449Bram Moolenaar2021-02-011-13/+49
* patch 8.2.2441: Vim9: extend() does not give an error for a type mismatchv8.2.2441Bram Moolenaar2021-01-311-8/+26
* patch 8.2.2367: test failures on some less often used systemsv8.2.2367Bram Moolenaar2021-01-171-3/+3
* patch 8.2.2365: Vim9: no check for map() changing item type at script levelv8.2.2365Bram Moolenaar2021-01-161-7/+38
* patch 8.2.2344: using inclusive index for slice is not always desiredv8.2.2344Bram Moolenaar2021-01-131-5/+8
* patch 8.2.2336: Vim9: not possible to extend dictionary with different typev8.2.2336Bram Moolenaar2021-01-121-11/+62
* patch 8.2.2325: Vim9: crash if map() changes the item typev8.2.2325Bram Moolenaar2021-01-101-4/+7
* patch 8.2.2318: Vim9: string and list index work differentlyv8.2.2318Bram Moolenaar2021-01-091-1/+1
* patch 8.2.2272: Vim9: extend() can violate the type of a variablev8.2.2272Bram Moolenaar2021-01-021-2/+7
* patch 8.2.2160: various typosv8.2.2160Bram Moolenaar2020-12-181-1/+1
* patch 8.2.2075: error for const argument to mapnew()v8.2.2075Bram Moolenaar2020-12-011-3/+3
* patch 8.2.2065: using map() and filter() on a range() is inefficientv8.2.2065Bram Moolenaar2020-11-281-27/+79
* patch 8.2.2027: Coverity warnts for uninitialized fieldv8.2.2027Bram Moolenaar2020-11-211-0/+1
* patch 8.2.1980: Vim9: some tests are not done at the script levelv8.2.1980Bram Moolenaar2020-11-121-1/+1
* patch 8.2.1971: memory leak when map() failsv8.2.1971Bram Moolenaar2020-11-101-1/+6
* patch 8.2.1969: Vim9: map() may change the list or dict item typev8.2.1969Bram Moolenaar2020-11-091-40/+141
* patch 8.2.1949: Vim9: using extend() on null dict is silently ignoredv8.2.1949Bram Moolenaar2020-11-041-4/+12
* patch 8.2.1945: crash when passing NULL function to reduce()v8.2.1945Bram Moolenaar2020-11-031-2/+5
* patch 8.2.1933: cannot sort using locale orderingv8.2.1933Bram Moolenaar2020-11-011-3/+10
* patch 8.2.1852: map() returing zero for NULL list is unexpectedv8.2.1852Bram Moolenaar2020-10-151-2/+3
* patch 8.2.1821: Vim9: concatenating to a NULL list doesn't workv8.2.1821Bram Moolenaar2020-10-101-6/+13
* patch 8.2.1701: Vim9: sort("i") does not workv8.2.1701Bram Moolenaar2020-09-161-10/+17