aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/handbook/chapters/developer.texi2
-rw-r--r--lint/Makefile.am4
2 files changed, 5 insertions, 1 deletions
diff --git a/doc/handbook/chapters/developer.texi b/doc/handbook/chapters/developer.texi
index d2e8870e0..efda6b85a 100644
--- a/doc/handbook/chapters/developer.texi
+++ b/doc/handbook/chapters/developer.texi
@@ -8108,7 +8108,7 @@ This is done by converting to a BOX record from an existing SRV record:
8108@example 8108@example
8109# SRV 8109# SRV
8110# _service._proto.name. TTL class SRV priority weight port target 8110# _service._proto.name. TTL class SRV priority weight port target
8111_sip._tcp.example.com. 14000 IN SRV 0 0 5060 www.example.com. 8111_sip._tcp.example.com. 14000 IN SRV 0 0 5060 www.example.com.
8112# BOX 8112# BOX
8113# TTL BOX flags port protocol recordtype priority weight port target 8113# TTL BOX flags port protocol recordtype priority weight port target
811414000 BOX n 5060 6 33 0 0 5060 www.example.com 811414000 BOX n 5060 6 33 0 0 5060 www.example.com
diff --git a/lint/Makefile.am b/lint/Makefile.am
index 6f2f22abc..59d4b6073 100644
--- a/lint/Makefile.am
+++ b/lint/Makefile.am
@@ -19,6 +19,10 @@ check-man:
19# exception to add: uref's can go above 79 chars. 19# exception to add: uref's can go above 79 chars.
20check-texinfo: 20check-texinfo:
21 printf "Running basic texinfo linters\n" 21 printf "Running basic texinfo linters\n"
22 printf "...lines containing tabstops?\n" 2>&1 | tee $(top_srcdir)/doc/handbook/texinfo_handbook.log || true
23 printf "...lines containing tabstops?\n" 2>&1 | tee $(top_srcdir)/doc/tutorial/texinfo_tutorial.log || true
24 @cd $(top_srcdir)/doc/handbook ; find . -type f ! -path '*/.*' -name '*.texi' -print0 | xargs -0 awk '/\t/ {print FILENAME":"NR":"$$0}' > $(srcdir)/texinfo_handbook.log || true
25 @cd $(top_srcdir)/doc/tutorial ; find . -type f ! -path '*/.*' -name '*.texi' -print0 | xargs -0 awk '/\t/ {print FILENAME":"NR":"$$0}' > $(srcdir)/texinfo_tutorial.log || true
22 printf "...line length over 79 chars?\n" 2>&1 | tee $(top_srcdir)/doc/handbook/texinfo_handbook.log || true 26 printf "...line length over 79 chars?\n" 2>&1 | tee $(top_srcdir)/doc/handbook/texinfo_handbook.log || true
23 @cd $(top_srcdir)/doc/handbook ; find . -type f ! -path '*/.*' -name '*.texi' -print0 | xargs -0 awk 'length>79 {print FILENAME":"NR":"$$0}' > $(srcdir)/texinfo_handbook.log || true 27 @cd $(top_srcdir)/doc/handbook ; find . -type f ! -path '*/.*' -name '*.texi' -print0 | xargs -0 awk 'length>79 {print FILENAME":"NR":"$$0}' > $(srcdir)/texinfo_handbook.log || true
24 printf "...line length over 79 chars?\n" 2>&1 | tee $(top_srcdir)/doc/tutorial/texinfo_tutorial.log || true 28 printf "...line length over 79 chars?\n" 2>&1 | tee $(top_srcdir)/doc/tutorial/texinfo_tutorial.log || true