changeset 24728:e94104cf5891

(Fparse_partial_sexp): Correct test for element 8 to be non-nil.
author Dave Love <fx@gnu.org>
date Fri, 14 May 1999 09:51:02 +0000
parents 358a330c9931
children c16f7defd588
files src/syntax.c
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/syntax.c	Fri May 14 09:46:38 1999 +0000
+++ b/src/syntax.c	Fri May 14 09:51:02 1999 +0000
@@ -2713,7 +2713,8 @@
 			       ? (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))))))))));