From: James Addison Date: Thu, 11 Feb 2021 20:11:42 +0000 (+0000) Subject: Stability fixup: interaction between newlines and comments (#1975) X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/b8c1020b526b488a1a216d9a4d58fc8616b61a99?ds=inline;hp=b8c1020b526b488a1a216d9a4d58fc8616b61a99 Stability fixup: interaction between newlines and comments (#1975) * Add test case to illustrate the issue * Accept carriage returns as valid separators while enumerating comments Without this acceptance, escaped multi-line statments that use carriage returns will not be counted into the 'ignored_lines' variable since the emitted line values will end with a CR and not an escape character. That leads to comments associated with the line being incorrectly labeled with the STANDALONE_COMMENT type, affecting comment placement and line space management. * Remove comment linking to ephemeral build log ---