aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/mdoc_macro.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2014-09-07 00:05:28 +0000
committerIngo Schwarze <schwarze@openbsd.org>2014-09-07 00:05:28 +0000
commitd54ae4264ccb3f0ca17f431c6362a41519e79ec5 (patch)
treeb7c189fa6fca5c1a6f198f3e0f7d7d91ea0bb2c5 /mdoc_macro.c
parent2745b3f22e169e51509c6a77a688756f59a2b2b9 (diff)
downloadmandoc-d54ae4264ccb3f0ca17f431c6362a41519e79ec5.tar.gz
mandoc-d54ae4264ccb3f0ca17f431c6362a41519e79ec5.tar.zst
mandoc-d54ae4264ccb3f0ca17f431c6362a41519e79ec5.zip
Allow .ll in the prologue; Daniel Levai reports Slackware Linux uses this.
Diffstat (limited to 'mdoc_macro.c')
-rw-r--r--mdoc_macro.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mdoc_macro.c b/mdoc_macro.c
index dfe350c8..f09d8b29 100644
--- a/mdoc_macro.c
+++ b/mdoc_macro.c
@@ -1,7 +1,7 @@
-/* $Id: mdoc_macro.c,v 1.142 2014/08/21 12:57:17 schwarze Exp $ */
+/* $Id: mdoc_macro.c,v 1.143 2014/09/07 00:05:28 schwarze Exp $ */
/*
* Copyright (c) 2008-2012 Kristaps Dzonsons <kristaps@bsd.lv>
- * Copyright (c) 2010, 2012, 2013 Ingo Schwarze <schwarze@openbsd.org>
+ * Copyright (c) 2010, 2012, 2013, 2014 Ingo Schwarze <schwarze@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@@ -210,7 +210,7 @@ const struct mdoc_macro __mdoc_macros[MDOC_MAX] = {
{ in_line_eoln, 0 }, /* sp */
{ in_line_eoln, 0 }, /* %U */
{ phrase_ta, MDOC_CALLABLE | MDOC_PARSED | MDOC_JOIN }, /* Ta */
- { in_line_eoln, 0 }, /* ll */
+ { in_line_eoln, MDOC_PROLOGUE }, /* ll */
};
const struct mdoc_macro * const mdoc_macros = __mdoc_macros;