diff --git a/src/common/url.c b/src/common/url.c index 9b4751ae..3de99d1f 100644 --- a/src/common/url.c +++ b/src/common/url.c @@ -106,7 +106,8 @@ url_add (char *urltext, int len) len--; data[len] = 0; } - if (data[len - 1] == ')') /* chop trailing ) */ + /* chop trailing ) but only if there's no counterpart */ + if (data[len - 1] == ')' && strchr (data, '(') == NULL) data[len - 1] = 0; if (!url_tree) diff --git a/src/fe-gtk/xtext.c b/src/fe-gtk/xtext.c index 585555b1..23fb0dff 100644 --- a/src/fe-gtk/xtext.c +++ b/src/fe-gtk/xtext.c @@ -84,9 +84,15 @@ #endif /* is delimiter */ +#if 0 +/* () is used by Wikipedia */ #define is_del(c) \ (c == ' ' || c == '\n' || c == ')' || c == '(' || \ c == '>' || c == '<' || c == ATTR_RESET || c == ATTR_BOLD || c == 0) +#endif +#define is_del(c) \ + (c == ' ' || c == '\n' || c == '>' || c == '<' || \ + c == ATTR_RESET || c == ATTR_BOLD || c == 0) #ifdef SCROLL_HACK /* force scrolling off */