diff options
| author | Simon Tatham <anakin@pobox.com> | 2004-03-25 18:32:05 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2004-03-25 18:32:05 +0000 |
| commit | 2c5767ab6e1ea37c190be1da007cc015a5d3a7ed (patch) | |
| tree | 04b7e27edba17f8a954439376e444d1925676b38 /bk_whlp.c | |
| parent | e5650a35b3ee30edc4288fba5c1e21cc29247fdc (diff) | |
| download | halibut-2c5767ab6e1ea37c190be1da007cc015a5d3a7ed.zip halibut-2c5767ab6e1ea37c190be1da007cc015a5d3a7ed.tar.gz halibut-2c5767ab6e1ea37c190be1da007cc015a5d3a7ed.tar.bz2 halibut-2c5767ab6e1ea37c190be1da007cc015a5d3a7ed.tar.xz | |
Add a \quote{...} directive, working like <blockquote> in HTML.
[originally from svn r3978]
Diffstat (limited to 'bk_whlp.c')
| -rw-r--r-- | bk_whlp.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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; |