summaryrefslogtreecommitdiffstats
path: root/src/ex_eval.c
AgeCommit message (Expand)Author
2023-10-21patch 9.0.2059: outstanding exceptions may be skippedv9.0.2059Yegappan Lakshmanan
2023-10-19patch 9.0.2050: Vim9: crash with deferred function call and exceptionv9.0.2050Yegappan Lakshmanan
2022-11-12patch 9.0.0869: bogus error when string used after :elseifv9.0.0869Bram Moolenaar
2022-10-01patch 9.0.0634: evaluating "expr" options has more overhead than neededv9.0.0634Bram Moolenaar
2022-09-24patch 9.0.0577: buffer underflow with unexpected :finallyv9.0.0577Bram Moolenaar
2022-09-21patch 9.0.0535: closure gets wrong value in for loop with two loop variablesv9.0.0535Bram Moolenaar
2022-09-14patch 9.0.0460: loop variable can't be foundv9.0.0460Bram Moolenaar
2022-09-13patch 9.0.0459: Vim9: block in for loop doesn't behave like a code blockv9.0.0459Bram Moolenaar
2022-09-04patch 9.0.0373: Coverity warns for NULL check and unused return valuev9.0.0373Bram Moolenaar
2022-05-17patch 8.2.4970: "eval 123" gives an error, "eval 'abc'" does notv8.2.4970Bram Moolenaar
2022-05-06patch 8.2.4880: Vim9: misplaced elseif causes invalid memory accessv8.2.4880Bram Moolenaar
2022-05-05patch 8.2.4873: Vim9: using "else" differs from using "endif/if !cond"v8.2.4873Bram Moolenaar
2022-05-05patch 8.2.4872: Vim9: no error for using an expression onlyv8.2.4872Bram Moolenaar
2022-04-03patch 8.2.4675: no error for missing expression after :elseifv8.2.4675Bram Moolenaar
2022-03-03patch 8.2.4499: Vim9: at the script level declarations leak to next blockv8.2.4499Bram Moolenaar
2022-01-28patch 8.2.4241: some type casts are redundantv8.2.4241=?UTF-8?q?Dundar=20G=C3=B6c?=
2022-01-04patch 8.2.4005: error messages are spread outv8.2.4005Bram Moolenaar
2022-01-04patch 8.2.4003: error messages are spread outv8.2.4003Bram Moolenaar
2022-01-02patch 8.2.3987: error messages are spread outv8.2.3987Bram Moolenaar
2022-01-01patch 8.2.3972: error messages are spread outv8.2.3972Bram Moolenaar
2022-01-01patch 8.2.3970: error messages are spread outv8.2.3970Bram Moolenaar
2021-12-31patch 8.2.3961: error messages are spread outv8.2.3961Bram Moolenaar
2021-12-31patch 8.2.3959: error messages are spread outv8.2.3959Bram Moolenaar
2021-12-31patch 8.2.3957: error messages are spread outv8.2.3957Bram Moolenaar
2021-11-23patch 8.2.3656: Vim9: no error for an evironment variable by itselfv8.2.3656Bram Moolenaar
2021-11-22patch 8.2.3649: Vim9: error for variable declared in while loopv8.2.3649Bram Moolenaar
2021-11-22patch 8.2.3645: Vim9: The "no effect" error is not given for all registersv8.2.3645Bram Moolenaar
2021-10-23patch 8.2.3559: loop variable recreated every timev8.2.3559Bram Moolenaar
2021-10-06patch 8.2.3486: illegal memory access with invalid sequence of commandsv8.2.3486Bram Moolenaar
2021-10-05patch 8.2.3478: still crash with error in :catch and also in :finallyv8.2.3478Bram Moolenaar
2021-10-04patch 8.2.3470: crash with error in :catch and also in :finallyv8.2.3470Bram Moolenaar
2021-08-25patch 8.2.3376: Vim9: no warning that "@r" does not do anythingv8.2.3376Bram Moolenaar
2021-08-10patch 8.2.3324: Vim9: Cannot use :silent with :endwhilev8.2.3324Bram Moolenaar
2021-08-07patch 8.2.3305: Vim9: :finally in skipped block not handled correctlyv8.2.3305rbtnn
2021-08-05patch 8.2.3297: cannot use all commands inside a {} blockv8.2.3297Bram Moolenaar
2021-07-25patch 8.2.3216: Vim9: crash when using variable in a loop at script levelv8.2.3216Bram Moolenaar
2021-07-20patch 8.2.3190: error messages are spread outv8.2.3190Bram Moolenaar
2021-07-10patch 8.2.3137: Vim9: no error when a line only has a variable namev8.2.3137Bram Moolenaar
2021-07-08patch 8.2.3126: Vim9: for loop error reports wrong line numberv8.2.3126Bram Moolenaar
2021-07-04patch 8.2.3099: Vim9: missing catch/finally not reported at script levelv8.2.3099Bram Moolenaar
2021-04-05patch 8.2.2725: Vim9: message about compiling is wrong when using try/catchv8.2.2725Bram Moolenaar
2021-03-26patch 8.2.2657: Vim9: error message for declaring variable in for loopv8.2.2657Bram Moolenaar
2021-03-25patch 8.2.2652: Vim9: can use command modifier without an effectv8.2.2652Bram Moolenaar
2021-02-26patch 8.2.2553: Vim9: Cannot put "|" after "{"v8.2.2553Bram Moolenaar
2021-01-27patch 8.2.2417: condition stack values may be used when not setv8.2.2417Bram Moolenaar
2021-01-03patch 8.2.2289: Vim9: 'cpo' can become emptyv8.2.2289Bram Moolenaar
2020-12-19patch 8.2.2163: crash when discarded exception is the current exceptionv8.2.2163Bram Moolenaar
2020-10-20patch 8.2.1870: Vim9: no need to keep all script variablesv8.2.1870Bram Moolenaar
2020-10-15patch 8.2.1846: Vim9: block variables are not found in compiled functionv8.2.1846Bram Moolenaar
2020-10-14patch 8.2.1845: Vim9: function defined in a block can't use block variablesv8.2.1845Bram Moolenaar