Merge pull request #436 from RichardHitt/issue435
Change is_del to remove ATTR_BOLD, ATTR_RESET -- closes issue 435
This commit is contained in:
commit
1369a20aba
|
@ -90,15 +90,8 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* is delimiter */
|
/* is delimiter */
|
||||||
#if 0
|
|
||||||
/* () is used by Wikipedia */
|
|
||||||
#define is_del(c) \
|
#define is_del(c) \
|
||||||
(c == ' ' || c == '\n' || c == ')' || c == '(' || \
|
(c == ' ' || c == '\n' || c == '>' || c == '<' || c == 0)
|
||||||
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
|
#ifdef SCROLL_HACK
|
||||||
/* force scrolling off */
|
/* force scrolling off */
|
||||||
|
|
Loading…
Reference in New Issue