]>
Commit | Line | Data |
---|---|---|
90f3f3e2 SC |
1 | # SED script for preprocessing embedded doc from source (S. Chamberlain markup) |
2 | # Final pass; cleanup work is done here. | |
3 | # | |
4 | # Within examples, make '{' and '}' printable: | |
5 | /^@lisp$/,/^@end lisp$/s/{/@{/ | |
6 | /^@lisp$/,/^@end lisp$/s/}/@}/ | |
7 | /^@example$/,/^@end example$/s/{/@{/ | |
8 | /^@example$/,/^@end example$/s/}/@}/ | |
9 | # | |
10 | # Delete empty @findex and @subsubsection entries (resulting from *proto* | |
11 | # with no further text on same line, in middle pass) | |
12 | /^@findex $/d | |
13 | /^@subsubsection @code{}/d | |
14 | # |