* fhandler_console.cc (fhandler_console::read) Handle certain key up events, to

allow pasting accented characters and typing them using the "alt + numerics"
sequences.
* include/limits.h (IOV_MAX): Set to a number which is small enough to use in
an array.
This commit is contained in:
Christopher Faylor
2003-04-08 21:19:33 +00:00
parent e3501c78ca
commit ca81cd60ce
3 changed files with 28 additions and 5 deletions

View File

@ -116,9 +116,9 @@ details. */
#define ULLONG_MAX (LLONG_MAX * 2ULL + 1)
#endif
/* Maximum number of iovcnt in a writev */
/* Maximum number of iovcnt in a writev (an arbitrary number) */
#undef IOV_MAX
#define IOV_MAX (__INT_MAX__-1)
#define IOV_MAX 1024
/* Maximum size of ssize_t */
#undef SSIZE_MAX