* src/syntax.c: (back_comment): Also check for syntax Scomment_fence whilst
verifying comment opener.
(scan_sexps_forward): Remove unused variable `count'.
c = FETCH_CHAR_AS_MULTIBYTE (from_byte);
syntax = SYNTAX_WITH_FLAGS (c);
code = SYNTAX (c);
- if (code != Scomment)
+ if (code != Scomment && code != Scomment_fence)
{
if (from <= stop)
return false;
EMACS_INT targetdepth, bool stopbefore,
int commentstop)
{
- ptrdiff_t count = SPECPDL_INDEX ();
struct lisp_parse_state state;
enum syntaxcode code;
int c1;