From 0beaf54f1d5e81b29447b2113256a8524a44f470 Mon Sep 17 00:00:00 2001 From: Dave Love Date: Fri, 14 May 1999 09:51:02 +0000 Subject: [PATCH] (Fparse_partial_sexp): Correct test for element 8 to be non-nil. --- src/syntax.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/syntax.c b/src/syntax.c index af2554b3e85..da41de6d5a7 100644 --- a/src/syntax.c +++ b/src/syntax.c @@ -2713,7 +2713,8 @@ DEFUN ("parse-partial-sexp", Fparse_partial_sexp, Sparse_partial_sexp, 2, 6, 0, ? (state.comstyle == ST_COMMENT_STYLE ? Qsyntax_table : Qt) : Qnil), - Fcons ((state.incomment || state.instring + Fcons (((state.incomment + || (state.instring >= 0)) ? make_number (state.comstr_start) : Qnil), Fcons (state.levelstarts, Qnil)))))))))); -- 2.39.2