From b45ee22a1a403d69085a54425cb1b4e81e3f1d6c Mon Sep 17 00:00:00 2001 From: Ali Gholami Rudi Date: Sun, 4 Mar 2012 23:51:22 +0330 Subject: [PATCH] fmt: handle markups in command lines I may decide to add a list of raw command lines later, but at the moment this seems enough. Now it is possible to use markups in macro lines like: .IP *this* --- fmt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fmt.c b/fmt.c index 626ec2d..8296c8f 100644 --- a/fmt.c +++ b/fmt.c @@ -199,7 +199,7 @@ static int fmt_rawline(struct fmt *fmt, int beg, int end) { if (*fmt_line(fmt, beg) != '.') return 0; - raw_lines(fmt, beg, beg + 1); + put_lines(fmt, beg, beg + 1); return 1; } -- 2.11.4.GIT