summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1992-12-06 22:16:01 +0000
committerJim Blandy <jimb@redhat.com>1992-12-06 22:16:01 +0000
commitf76e7178ee500726e88718cd73d596798d6b0c47 (patch)
tree9d63384844ff8af6c27f0a03c6d1e84a33db7b2b /src
parent8f607ef0e32096db1b90052058e0c27ea124224f (diff)
downloademacs-f76e7178ee500726e88718cd73d596798d6b0c47.tar.gz
emacs-f76e7178ee500726e88718cd73d596798d6b0c47.tar.bz2
emacs-f76e7178ee500726e88718cd73d596798d6b0c47.zip
* dispnew.c: Remove dyked-out copy of safe_bcopy.
Diffstat (limited to 'src')
-rw-r--r--src/dispnew.c30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/dispnew.c b/src/dispnew.c
index f26d12b53b2..f9ceda64768 100644
--- a/src/dispnew.c
+++ b/src/dispnew.c
@@ -517,36 +517,6 @@ safe_bcopy (from, to, size)
}
}
-#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. */