Remove discard() total
authorDavid Levine <levinedl@acm.org>
Wed, 26 Dec 2012 01:25:43 +0000 (19:25 -0600)
committerPhilipp Takacs <philipp@bureaucracy.de>
Wed, 26 Aug 2015 21:46:44 +0000 (23:46 +0200)
discard() isn't needed in mmh anymore.

configure.ac
h/prototypes.h
sbr/Makefile.in
sbr/discard.c [deleted file]

index 2cda6e0..372f0e0 100644 (file)
@@ -318,15 +318,6 @@ AC_CHECK_HEADERS(fcntl.h crypt.h termcap.h \
                  langinfo.h wchar.h wctype.h iconv.h \
                  sys/param.h sys/time.h sys/stream.h )
 
-dnl
-dnl Checks for _IO_write_ptr. A Linuxism used by nmh on linux. We
-dnl really use a whole set of them, but this check should be
-dnl sufficient.
-dnl
-AC_CHECK_HEADER(libio.h, [
-  AC_EGREP_HEADER(_IO_write_ptr, libio.h, [
-    AC_DEFINE(LINUX_STDIO,1,[Use the Linux _IO_*_ptr defines from <libio.h>.]) ]) ])
-
 AC_CHECK_HEADER([sys/ptem.h], AC_DEFINE(WINSIZE_IN_PTEM,1,
   [Define to 1 if `struct winsize' requires <sys/ptem.h>.]),,
 [[#if HAVE_SYS_STREAM_H
index 3512ef7..848115f 100644 (file)
@@ -38,7 +38,6 @@ void context_save(void);
 void cpydata(int, int, char *, char *);
 void cpydgst(int, int, char *, char *);
 int decode_rfc2047(char *, char *, size_t);
-void discard(FILE *);
 int default_done(int);
 int execprog(char *, char **);
 int execprogl(char *, char *, ...);
index e5d8ffd..61fc96c 100644 (file)
@@ -50,7 +50,7 @@ SRCS = addrsbr.c ambigsw.c brkstring.c  \
        context_find.c context_read.c  \
        context_replace.c context_save.c \
        cpydata.c cpydgst.c crawl_folders.c  \
-       discard.c dtime.c dtimep.c  \
+       dtime.c dtimep.c  \
        error.c execprog.c ext_hook.c folder_addmsg.c folder_delmsgs.c  \
        folder_free.c folder_read.c  \
        folder_realloc.c gans.c getans.c getanswer.c  \
diff --git a/sbr/discard.c b/sbr/discard.c
deleted file mode 100644 (file)
index d3eabd0..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
-** discard.c -- discard output on a file pointer
-**
-** This code is Copyright (c) 2002, by the authors of nmh.  See the
-** COPYRIGHT file in the root directory of the nmh distribution for
-** complete copyright information.
-*/
-
-#include <h/mh.h>
-#include <termios.h>
-
-
-void
-discard(FILE *io)
-{
-       if (io == NULL)
-               return;
-
-       tcflush(fileno(io), TCOFLUSH);
-
-#if defined(_FSTDIO) || defined(__DragonFly__)
-       fpurge(io);
-#else
-# ifdef LINUX_STDIO
-       io->_IO_write_ptr = io->_IO_write_base;
-# else
-       if ((io->_ptr = io->_base))
-               io->_cnt = 0;
-# endif
-#endif
-}