remove the single tab in texinfo we had
authorng0 <ng0@n0.is>
Thu, 14 Mar 2019 19:30:27 +0000 (19:30 +0000)
committerng0 <ng0@n0.is>
Thu, 14 Mar 2019 19:30:27 +0000 (19:30 +0000)
doc/handbook/chapters/developer.texi
lint/Makefile.am

index d2e8870e0ca0305253be6748f9032a21c950ea47..efda6b85a66cae6c10ed10a94f142195782de2f7 100644 (file)
@@ -8108,7 +8108,7 @@ This is done by converting to a BOX record from an existing SRV record:
 @example
 # SRV
 # _service._proto.name. TTL class SRV priority weight port target
-_sip._tcp.example.com. 14000 IN        SRV     0 0 5060 www.example.com.
+_sip._tcp.example.com. 14000 IN        SRV     0 0 5060 www.example.com.
 # BOX
 # TTL BOX flags port protocol recordtype priority weight port target
 14000 BOX n 5060 6 33 0 0 5060 www.example.com
index 6f2f22abc3d32a5881a3d2ca99b5be2c660a5ea0..59d4b60733e2337cb0ebfb2dcb10bf3c9f16a30b 100644 (file)
@@ -19,6 +19,10 @@ check-man:
 # exception to add: uref's can go above 79 chars.
 check-texinfo:
        printf "Running basic texinfo linters\n"
+       printf "...lines containing tabstops?\n" 2>&1 | tee $(top_srcdir)/doc/handbook/texinfo_handbook.log || true
+       printf "...lines containing tabstops?\n" 2>&1 | tee $(top_srcdir)/doc/tutorial/texinfo_tutorial.log || true
+       @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
+       @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
        printf "...line length over 79 chars?\n" 2>&1 | tee $(top_srcdir)/doc/handbook/texinfo_handbook.log || true
        @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
        printf "...line length over 79 chars?\n" 2>&1 | tee $(top_srcdir)/doc/tutorial/texinfo_tutorial.log || true