comparison src/syntax.c @ 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 b69751ec40fe
children a80acb2a8273
comparison
equal deleted inserted replaced
24727:358a330c9931 24728:e94104cf5891
2711 Fcons (make_number (state.mindepth), 2711 Fcons (make_number (state.mindepth),
2712 Fcons ((state.comstyle 2712 Fcons ((state.comstyle
2713 ? (state.comstyle == ST_COMMENT_STYLE 2713 ? (state.comstyle == ST_COMMENT_STYLE
2714 ? Qsyntax_table : Qt) : 2714 ? Qsyntax_table : Qt) :
2715 Qnil), 2715 Qnil),
2716 Fcons ((state.incomment || state.instring 2716 Fcons (((state.incomment
2717 || (state.instring >= 0))
2717 ? make_number (state.comstr_start) 2718 ? make_number (state.comstr_start)
2718 : Qnil), 2719 : Qnil),
2719 Fcons (state.levelstarts, Qnil)))))))))); 2720 Fcons (state.levelstarts, Qnil))))))))));
2720 } 2721 }
2721 2722