From 7d24aa6b61fc7c0a61348119c53447f5c9b1b892 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Wed, 26 May 2010 09:35:35 +0000 Subject: Fixed `Lb' to be in_line (reported by Ulrich Spoerlein). Added `Lb' documentation to mdoc.7. Removed harmless but superfluous pre_lb check (was just NULL entries). Added regressions for `Lb' (NOTE that these will only run on new groff, as old groff doesn't support `Lb' at all). --- mdoc_macro.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mdoc_macro.c') diff --git a/mdoc_macro.c b/mdoc_macro.c index 9919f545..f091a015 100644 --- a/mdoc_macro.c +++ b/mdoc_macro.c @@ -171,7 +171,7 @@ const struct mdoc_macro __mdoc_macros[MDOC_MAX] = { { in_line_eoln, 0 }, /* Hf */ { obsolete, 0 }, /* Fr */ { in_line_eoln, 0 }, /* Ud */ - { in_line_eoln, 0 }, /* Lb */ + { in_line, 0 }, /* Lb */ { in_line_eoln, 0 }, /* Lp */ { in_line, MDOC_CALLABLE | MDOC_PARSED }, /* Lk */ { in_line, MDOC_CALLABLE | MDOC_PARSED }, /* Mt */ -- cgit