aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDave Love1999-05-14 09:51:02 +0000
committerDave Love1999-05-14 09:51:02 +0000
commit0beaf54f1d5e81b29447b2113256a8524a44f470 (patch)
treed254a338e8ac3f7c604c9e4cda6246a2957173d8 /src
parent9ab191054504b78970473b5765f716cdf7530162 (diff)
downloademacs-0beaf54f1d5e81b29447b2113256a8524a44f470.tar.gz
emacs-0beaf54f1d5e81b29447b2113256a8524a44f470.zip
(Fparse_partial_sexp): Correct test for element 8 to be
non-nil.
Diffstat (limited to 'src')
-rw-r--r--src/syntax.c3
1 files changed, 2 insertions, 1 deletions
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,
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))))))))));