Skip to content

Commit

Permalink
Fix IXANY feature macro conditions.
Browse files Browse the repository at this point in the history
  • Loading branch information
Samuel Thibault authored and Roland McGrath committed Sep 27, 2009
1 parent ae0f0db commit 0d18040
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2009-09-28 Samuel Thibault <samuel.thibault@ens-lyon.org>

* bits/termios.h [__USE_UNIX98] (IXANY): Define macro.

2009-09-20 Andreas Schwab <schwab@linux-m68k.org>

* iconvdata/iso646.c (gconv_init): Correctly initialize the
Expand Down
4 changes: 3 additions & 1 deletion bits/termios.h
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,10 @@ struct termios
#define ICRNL (1 << 8) /* Map CR to NL on input. */
#define IXON (1 << 9) /* Enable start/stop output control. */
#define IXOFF (1 << 10) /* Enable start/stop input control. */
#ifdef __USE_BSD
#if defined __USE_BSD || defined __USE_UNIX98
# define IXANY (1 << 11) /* Any character will restart after stop. */
#endif
#ifdef __USE_BSD
# define IMAXBEL (1 << 13) /* Ring bell when input queue is full. */
#endif
#ifdef __USE_GNU
Expand Down

0 comments on commit 0d18040

Please sign in to comment.