* src/html.c
html entity conversion:
move ™ to a more suitable place
add • and –
make sure — and — are both
converted the same
+2007-01-03 [paul] 2.6.1cvs94
+
+ * src/html.c
+ html entity conversion:
+ move ™ to a more suitable place
+ add • and –
+ make sure — and — are both
+ converted the same
+
2007-01-02 [colin] 2.6.1cvs93
* src/addrbook.c
( cvs diff -u -r 1.213.2.128 -r 1.213.2.129 src/folder.c; cvs diff -u -r 1.1.2.34 -r 1.1.2.35 src/imap_gtk.c; cvs diff -u -r 1.2.2.24 -r 1.2.2.25 src/mh_gtk.c; ) > 2.6.1cvs91.patchset
( cvs diff -u -r 1.1.2.31 -r 1.1.2.32 src/prefs_summaries.c; ) > 2.6.1cvs92.patchset
( cvs diff -u -r 1.22.2.10 -r 1.22.2.11 src/addrbook.c; cvs diff -u -r 1.13.2.23 -r 1.13.2.24 src/common/plugin.c; cvs diff -u -r 1.1.4.61 -r 1.1.4.62 src/etpan/imap-thread.c; ) > 2.6.1cvs93.patchset
+( cvs diff -u -r 1.12.2.16 -r 1.12.2.17 src/html.c; ) > 2.6.1cvs94.patchset
MICRO_VERSION=1
INTERFACE_AGE=0
BINARY_AGE=0
-EXTRA_VERSION=93
+EXTRA_VERSION=94
EXTRA_RELEASE=
EXTRA_GTK2_VERSION=
{"”", "\""},
{" " , " "},
{"™" , "(TM)"},
- {"™", "(TM)"},
{"…", "..."},
- {"—", "-"},
+ {"•", "*"},
+ {"–", "-"},
+ {"—", "--"},
};
static SC_HTMLSymbol ascii_symbol_list[] = {
case 96: /* backtick */
symb = "`";
break;
+ case 153: /* trademark */
+ symb = "(TM)";
+ break;
case 338: /* capital ligature OE Œ */
symb = "OE";
break;
case 8224: /* dagger † */
case 8225: /* double dagger ‡ */
break;
+ case 8226: /* bullet • */
+ symb = "*";
+ break;
case 8230: /* horizontal ellipsis … */
symb = "...";
break;