aboutsummaryrefslogtreecommitdiff
path: root/build-aux/xml2nroff
diff options
context:
space:
mode:
Diffstat (limited to 'build-aux/xml2nroff')
-rwxr-xr-xbuild-aux/xml2nroff5
1 files changed, 3 insertions, 2 deletions
diff --git a/build-aux/xml2nroff b/build-aux/xml2nroff
index 1df195e59..1f8519a20 100755
--- a/build-aux/xml2nroff
+++ b/build-aux/xml2nroff
@@ -73,9 +73,10 @@ def manpage_to_nroff(xml_file, subst, version=None):
. I "\\$1"
. RE
..
-''' % (textToNroff(program), textToNroff(section), textToNroff(title), textToNroff(version))
+''' % (text_to_nroff(program), text_to_nroff(section),
+ text_to_nroff(title), text_to_nroff(version))
- s += blockXmlToNroff(doc.childNodes) + "\n"
+ s += block_xml_to_nroff(doc.childNodes) + "\n"
return s