From 2c5767ab6e1ea37c190be1da007cc015a5d3a7ed Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Thu, 25 Mar 2004 18:32:05 +0000 Subject: Add a \quote{...} directive, working like
in HTML. [originally from svn r3978] --- bk_whlp.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'bk_whlp.c') diff --git a/bk_whlp.c b/bk_whlp.c index 85b51eb..91b07c1 100644 --- a/bk_whlp.c +++ b/bk_whlp.c @@ -241,9 +241,11 @@ void whlp_backend(paragraph *sourceform, keywordlist *keywords, break; case para_LcontPush: + case para_QuotePush: nesting++; break; case para_LcontPop: + case para_QuotePop: assert(nesting > 0); nesting--; break; -- cgit v1.1