diff options
author | Lukas Larsson <[email protected]> | 2012-07-18 21:16:00 +0200 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2012-07-19 15:39:44 +0200 |
commit | 88c8bfd614477085bfc9f878d3812a47d16f25d4 (patch) | |
tree | 884c0a0028021a0c5dd5c9243509b95f35a03da7 /make/emd2exml.in | |
parent | 0948779bd59c07653b157789c2edfd67892d3958 (diff) | |
download | otp-88c8bfd614477085bfc9f878d3812a47d16f25d4.tar.gz otp-88c8bfd614477085bfc9f878d3812a47d16f25d4.tar.bz2 otp-88c8bfd614477085bfc9f878d3812a47d16f25d4.zip |
Add DTRACE and SYSTEMTAP howtos as User Guide
Diffstat (limited to 'make/emd2exml.in')
-rw-r--r-- | make/emd2exml.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/make/emd2exml.in b/make/emd2exml.in index 5bf7758be3..b677ef8ed4 100644 --- a/make/emd2exml.in +++ b/make/emd2exml.in @@ -266,8 +266,11 @@ parse(#state{code = true, type = blank, line = CB, code_blank = CBs} = S) -> parse(#state{code = true, code_blank = CB, list_lvl = Lvl, - type = {text, TxtLvl}, - line = Line} = S) when TxtLvl > Lvl -> + type = {Type, TxtLvl}, + line = Line} = S) when TxtLvl > Lvl, + (Type == text orelse + Type == uolist orelse + Type == olist) -> Data = code(strip_lvls(Lvl+1, Line)), parse(get_line(put_chars(S#state{code_blank = []}, [strip_code_blank(Lvl+1, CB), Data]))); |