1
0
mirror of https://github.com/moparisthebest/hexchat synced 2024-08-13 16:53:48 -04:00

Merge pull request #436 from RichardHitt/issue435

Change is_del to remove ATTR_BOLD, ATTR_RESET -- closes issue 435
This commit is contained in:
TingPing 2013-03-03 11:57:32 -08:00
commit 1369a20aba

View File

@ -90,15 +90,8 @@
#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)
(c == ' ' || c == '\n' || c == '>' || c == '<' || c == 0)
#ifdef SCROLL_HACK
/* force scrolling off */