diff options
Diffstat (limited to 'src/fe-gtk/xtext.c')
-rw-r--r-- | src/fe-gtk/xtext.c | 6 |
1 files changed, 6 insertions, 0 deletions
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 */ |