GNU bug report logs -
#63535
Master branch: Error in forw_comment (syntax.c) handling of escaped LFs
Previous Next
Reported by: Alan Mackenzie <acm <at> muc.de>
Date: Tue, 16 May 2023 10:58:02 UTC
Severity: normal
Done: Alan Mackenzie <acm <at> muc.de>
Bug is archived. No further changes may be made.
Full log
Message #26 received at 63535 <at> debbugs.gnu.org (full text, mbox):
Hi Alan,
> diff --git a/src/syntax.c b/src/syntax.c
> index e9e04e2d638..76d9f16e4ed 100644
> --- a/src/syntax.c
> +++ b/src/syntax.c
> @@ -2344,7 +2344,9 @@ forw_comment (ptrdiff_t from, ptrdiff_t from_byte, ptrdiff_t stop,
> && SYNTAX_FLAGS_COMMENT_STYLE (syntax, 0) == style
> && (SYNTAX_FLAGS_COMMENT_NESTED (syntax) ?
> (nesting > 0 && --nesting == 0) : nesting < 0)
> - && !(comment_end_can_be_escaped && char_quoted (from, from_byte)))
> + && !(comment_end_can_be_escaped &&
> + (((prev_syntax & 0xff) == Sescape)
> + || ((prev_syntax & 0xff) == Scharquote))))
> /* We have encountered a comment end of the same style
> as the comment sequence which began this comment
> section. */
AFAIK this is your code, so you should know better, but AFAICT
`prev_syntax` is not updated in the loop, so it only reflects the syntax
before the beginning of the scanned text, rather than anything near `from`.
Are you sure this is right?
Stefan
This bug report was last modified 2 years and 83 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.