From: Martin Mares Date: Tue, 20 Aug 2002 18:36:37 +0000 (+0000) Subject: Forgot WT_LINK. X-Git-Tag: holmes-import~1369 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=a074a5ca192c7781834ac3977aa4ca51bf02967a;p=libucw.git Forgot WT_LINK. --- diff --git a/lib/custom.h b/lib/custom.h index c3af98c9..d7b20df0 100644 --- a/lib/custom.h +++ b/lib/custom.h @@ -20,13 +20,14 @@ enum word_type { WT_KEYWORD, /* Explicitly marked keyword */ WT_META, /* Various meta-information */ WT_ALT, /* Alternate texts for graphical elements */ + WT_LINK, /* Link text */ WT_MAX }; /* Descriptive names used for user output */ #define WORD_TYPE_USER_NAMES \ "reserved", "text", "emph", "small", "title", "hdr1", "hdr2", "keywd", \ - "meta", "alt" + "meta", "alt", "link" /* Keywords for word type names */ #define WORD_TYPE_NAMES \ @@ -40,7 +41,8 @@ enum word_type { T(HDR2, 1 << WT_BIG_HEADING) \ T(KEYWD, 1 << WT_KEYWORD) \ T(META, 1 << WT_META) \ - T(ALT, 1 << WT_ALT) + T(ALT, 1 << WT_ALT) \ + T(LINK, 1 << WT_LINK) /* These types are not shown in document contexts */ #define WORD_TYPES_HIDDEN 0