# HG changeset patch # User Roland McGrath # Date 755394564 0 # Node ID c4bf07b226be12b625f81c309ad6abc2139274bf # Parent e080f780f3819b0acaf007bcedf29ee27d671c7d (PENDING_OUTPUT_COUNT) [__GNU_LIBRARY__]: Alternate definition for the GNU C library. I changed this in version 18 in 1991, but the change never got propagated. diff -r e080f780f381 -r c4bf07b226be src/dispnew.c --- a/src/dispnew.c Sun Dec 05 18:29:24 1993 +0000 +++ b/src/dispnew.c Wed Dec 08 23:49:24 1993 +0000 @@ -52,8 +52,12 @@ /* Get number of chars of output now in the buffer of a stdio stream. This ought to be built in in stdio, but it isn't. Some s- files override this because their stdio internals differ. */ +#ifdef __GNU_LIBRARY__ +#define PENDING_OUTPUT_COUNT(FILE) ((FILE)->__bufp - (FILE)->__buffer) +#else #define PENDING_OUTPUT_COUNT(FILE) ((FILE)->_ptr - (FILE)->_base) #endif +#endif /* Nonzero upon entry to redisplay means do not assume anything about current contents of actual terminal frame; clear and redraw it. */