diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-01-25 21:57:39 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-01-25 21:57:39 -0800 |
commit | e0dd147ff4b7a0b915323d637b8f879e06d02a1f (patch) | |
tree | e2b8519aff1e371d3b23f26e5599a8bd71876d92 /checkman.txr | |
parent | 6d538cae2993b242484d7d89ede571db45093281 (diff) | |
download | txr-e0dd147ff4b7a0b915323d637b8f879e06d02a1f.tar.gz txr-e0dd147ff4b7a0b915323d637b8f879e06d02a1f.tar.bz2 txr-e0dd147ff4b7a0b915323d637b8f879e06d02a1f.zip |
doc: fix .meti not wrapped in of .mono/.onom.
* checkman.txr (check-meti): New pattern function
which simply diagnoses any .meti. This relies on the fact that
.mono/.onom blocks are matched and consumed by by another rule.
All valid .meti lines are consumed as part of these blocks,
so any .meti that remain must be outside.
* txr.1: Fix numerous occurrences of this.
Diffstat (limited to 'checkman.txr')
-rw-r--r-- | checkman.txr | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/checkman.txr b/checkman.txr index 48df2606..13bab474 100644 --- a/checkman.txr +++ b/checkman.txr @@ -122,6 +122,14 @@ @ (throw bad ln `dangling @mac`) @(end) @;; +@;; Check for .meti not wrapped in .mono/onom. +@;; macros. +@;; +@(define check-meti ()) +.meti @(skip) +@ (throw bad ln ".meti not in .mono") +@(end) +@;; @;; Main @;; @(bind errors 0) @@ -142,6 +150,8 @@ @ (check-synb) @ (or) @ (check-spurious) +@ (or) +@ (check-meti) @ (end) @ (catch bad (line msg)) @ (do (inc errors) |