# HG changeset patch # User Jim Blandy # Date 723680161 0 # Node ID 60a49bc9673a8cd3a2f8b95087e0d358334b2d08 # Parent c3225b8671711237f5fecc749a7ff5059f035b51 * dispnew.c: Remove dyked-out copy of safe_bcopy. diff -r c3225b867171 -r 60a49bc9673a src/dispnew.c --- a/src/dispnew.c Sun Dec 06 22:15:29 1992 +0000 +++ b/src/dispnew.c Sun Dec 06 22:16:01 1992 +0000 @@ -517,36 +517,6 @@ } } -#if 0 -void -safe_bcopy (from, to, size) - char *from, *to; - int size; -{ - register char *endf; - register char *endt; - - if (size == 0) - return; - - /* If destination is higher in memory, and overlaps source zone, - copy from the end. */ - if (from < to && from + size > to) - { - endf = from + size; - endt = to + size; - - do - *--endt = *--endf; - while (endf != from); - - return; - } - - bcopy (from, to, size); -} -#endif - /* Rotate a vector of SIZE bytes right, by DISTANCE bytes. DISTANCE may be negative. */