M cdoc.c => cdoc.c +4 -2
@@ 538,8 538,10 @@ print_doc(struct doc const d)
if (d.source != NULL) {
puts("<pre><code>");
char** ln = d.source;
- while (*ln != NULL) {
- puts(*ln++);
+ for (; *ln != NULL; ++ln) {
+ if (!is_doc_line(*ln)) {
+ puts(*ln);
+ }
}
puts("</code></pre>");
}
M example.c => example.c +0 -1
@@ 29,7 29,6 @@ struct string
//! encoding of the buffer. Do <strong>NOT</strong> assume that data
//! points to an ASCII byte string.
char* data;
-
//! @member size
//! Length of data in bytes.
size_t size;