From a9e0990773c07818f24df08698c751bd3aa618af Mon Sep 17 00:00:00 2001 From: Mahmoud Al-Qudsi Date: Sat, 13 Apr 2019 17:24:40 -0500 Subject: [PATCH] Add changelog note about parser error propagation fix ..as this affects backwards compatibility (as witnessed by the tests that failed after making this fix). --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5db50f8f5..bcc07582a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,8 +11,8 @@ - cd now always checks the current directory, even if $CDPATH does not include it or "." (#4484). - Error messages no longer include a (rather large) help summary and the stacktrace has been shortened (#3404, #5434). - $PATH is no longer reordered in child fishes (#5456). -- `eval` is now implemented internally rather than being a function; as such, the evaluated code now -shares the same argument scope as `eval` rather than being executed in a new scope (#4443). +- `eval` is now implemented internally rather than being a function; as such, the evaluated code now shares the same argument scope as `eval` rather than being executed in a new scope (#4443). +- An issue resulting in a certain class of parser errors not resulting in a non-zero `$status` has been corrected (3e055f). ### Syntax changes and new commands - None yet.