version 1.90, 2009/11/16 06:07:49 |
version 1.92, 2010/01/01 17:14:27 |
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
*/ |
*/ |
|
#ifdef HAVE_CONFIG_H |
|
#include "config.h" |
|
#endif |
|
|
#include <sys/types.h> |
#include <sys/types.h> |
|
|
#include <assert.h> |
#include <assert.h> |
Line 89 static const char *const htmlattrs[ATTR_MAX] = { |
|
Line 93 static const char *const htmlattrs[ATTR_MAX] = { |
|
"summary", |
"summary", |
}; |
}; |
|
|
#ifdef __linux__ |
|
extern int getsubopt(char **, char * const *, char **); |
|
#endif |
|
|
|
|
|
static void print_spec(struct html *, const char *, size_t); |
static void print_spec(struct html *, const char *, size_t); |
static void print_res(struct html *, const char *, size_t); |
static void print_res(struct html *, const char *, size_t); |
static void print_ctag(struct html *, enum htmltag); |
static void print_ctag(struct html *, enum htmltag); |
Line 237 print_ofont(struct html *h, enum htmlfont font) |
|
Line 236 print_ofont(struct html *h, enum htmlfont font) |
|
|
|
/* FIXME: DECO_ROMAN should just close out preexisting. */ |
/* FIXME: DECO_ROMAN should just close out preexisting. */ |
|
|
if (h->metaf) |
if (h->metaf && h->tags.head == h->metaf) |
print_tagq(h, h->metaf); |
print_tagq(h, h->metaf); |
|
|
PAIR_CLASS_INIT(&tag, htmlfonts[font]); |
PAIR_CLASS_INIT(&tag, htmlfonts[font]); |