=================================================================== RCS file: /cvs/mandoc/man_macro.c,v retrieving revision 1.77 retrieving revision 1.81 diff -u -p -r1.77 -r1.81 --- mandoc/man_macro.c 2013/11/11 00:37:55 1.77 +++ mandoc/man_macro.c 2014/03/30 19:47:48 1.81 @@ -1,7 +1,8 @@ -/* $Id: man_macro.c,v 1.77 2013/11/11 00:37:55 schwarze Exp $ */ +/* $Id: man_macro.c,v 1.81 2014/03/30 19:47:48 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2012, 2013 Ingo Schwarze + * Copyright (c) 2013 Franco Fichtner * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above @@ -90,6 +91,7 @@ const struct man_macro __man_macros[MAN_MAX] = { { in_line_eoln, MAN_BSCOPE }, /* EE */ { blk_exp, MAN_BSCOPE | MAN_EXPLICIT }, /* UR */ { blk_close, 0 }, /* UE */ + { in_line_eoln, 0 }, /* ll */ }; const struct man_macro * const man_macros = __man_macros; @@ -430,6 +432,15 @@ in_line_eoln(MACRO_PROT_ARGS) if ( ! man_word_alloc(man, line, la, p)) return(0); } + + /* + * Append MAN_EOS in case the last snipped argument + * ends with a dot, e.g. `.IR syslog (3).' + */ + + if (n != man->last && + mandoc_eos(man->last->string, strlen(man->last->string))) + man->last->flags |= MAN_EOS; /* * If no arguments are specified and this is MAN_SCOPED (i.e.,