check-texinfo.awk: move comments to the moved code.
authorng0 <ng0@n0.is>
Sun, 1 Dec 2019 23:22:26 +0000 (23:22 +0000)
committerng0 <ng0@n0.is>
Sun, 1 Dec 2019 23:22:26 +0000 (23:22 +0000)
Makefile.am
contrib/scripts/check-texinfo.awk.in

index aea6c2f6c8151f31b18f09b2542f61695507eecb..edcd28b92afbcd0f344f1d67f4f9f050773e7585 100644 (file)
@@ -70,7 +70,5 @@ check-python:
        printf "Running flake8 and 2to3 if detected.\n"
        $(top_srcdir)/contrib/scripts/lint/lint-python.sh || true
 
-# exception to add: ignore license files.
-# exception to add: uref's can go above 79 chars.
 check-texinfo:
        @cd $(top_srcdir); find . -type f ! -path '*/.*' -name '*.texi' -print0 | xargs -0 ./contrib/scripts/check-texinfo.awk > $(srcdir)/texinfo_lint.log || true
index 12f71b5d2df7b3be0ab2761ea0ed0c30452ac25e..37e2c9f2021bc26e055ea32a6e11e0d0a3796c31 100755 (executable)
@@ -1,7 +1,11 @@
 #!@AWKEXE@ -f
-
+#
 # Dedicated to the Public Domain.
 # SPDX-License-Identifier: 0BSD
+#
+# exception to add: ignore license files.
+# exception to add: uref's can go above 79 chars.
+
 
 BEGIN {
   printf "Running basic texinfo linters\n" ;