summaryrefslogtreecommitdiffstatshomepage
path: root/macro.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-03-21 09:42:07 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-03-21 09:42:07 +0000
commit2675acb4389a4c9620cc37de681a6677cbb850c8 (patch)
treeaeab8b730fc954766854e5eb5fd9c55ea9e95c23 /macro.c
parentaa181d8c031d593d0001069e0b7d6b946ceb07fe (diff)
downloadmandoc-2675acb4389a4c9620cc37de681a6677cbb850c8.tar.gz
mandoc-2675acb4389a4c9620cc37de681a6677cbb850c8.tar.zst
mandoc-2675acb4389a4c9620cc37de681a6677cbb850c8.zip
Added %Q macro.
Diffstat (limited to 'macro.c')
-rw-r--r--macro.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/macro.c b/macro.c
index 0c0259f9..9549004d 100644
--- a/macro.c
+++ b/macro.c
@@ -1,4 +1,4 @@
-/* $Id: macro.c,v 1.75 2009/03/21 09:30:52 kristaps Exp $ */
+/* $Id: macro.c,v 1.76 2009/03/21 09:42:07 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@openbsd.org>
*
@@ -198,6 +198,7 @@ const struct mdoc_macro __mdoc_macros[MDOC_MAX] = {
{ obsolete, 0 }, /* Es */
{ obsolete, 0 }, /* En */
{ in_line_argn, MDOC_CALLABLE | MDOC_PARSED }, /* Dx */
+ { in_line_eoln, 0 }, /* %Q */
};
const struct mdoc_macro * const mdoc_macros = __mdoc_macros;