Override the normal legalnotice processing to always render this

element if role="trademarks".  Otherwise, fall back to the default
processing (which doesn't always get displayed, depending on some
variables).
This commit is contained in:
Murray Stokely 2003-06-17 20:22:51 +00:00
parent 510f5f97ef
commit 28adb85d88
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/head/; revision=17350

View file

@ -581,6 +581,12 @@
(empty-sosofo)
(next-match)))
(element legalnotice
(if (equal? (attribute-string (normalize "role")) "trademarks")
(make sequence
(process-children))
(next-match)))
(define %body-start-indent%
0pi)