From 9a6b5a53a7aa2f3ae120407ab79f80a92aa9bc3f Mon Sep 17 00:00:00 2001 From: Tim Schumacher Date: Thu, 23 Mar 2023 14:02:27 +0100 Subject: [PATCH] Shell: Correctly mark the end line of a parsed list --- Userland/Shell/PosixParser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Shell/PosixParser.cpp b/Userland/Shell/PosixParser.cpp index 359c12d1f8..4659ce76ed 100644 --- a/Userland/Shell/PosixParser.cpp +++ b/Userland/Shell/PosixParser.cpp @@ -690,7 +690,7 @@ ErrorOr> Parser::parse_list() start_position.start_offset, end_position.end_offset, start_position.start_line, - start_position.end_line, + end_position.end_line, }, move(nodes), move(positions));