diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-05-16 20:47:35 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-05-16 20:47:35 +0000 |
commit | 8eefe2b85bd37dcc2510261ea6898a54844805c8 (patch) | |
tree | f9e82d89bfebc67d8880663411ad1a535a4cf881 /lwlib/lwlib-utils.c | |
parent | c554da1f7d3f2dfd4b3be57101abd7bb6377cfca (diff) | |
download | emacs-8eefe2b85bd37dcc2510261ea6898a54844805c8.tar.gz |
entered into RCS
Diffstat (limited to 'lwlib/lwlib-utils.c')
-rw-r--r-- | lwlib/lwlib-utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lwlib/lwlib-utils.c b/lwlib/lwlib-utils.c index c966e9645e5..9e535c1996d 100644 --- a/lwlib/lwlib-utils.c +++ b/lwlib/lwlib-utils.c @@ -63,7 +63,7 @@ XtApplyToWidgets (w, proc, arg) int nkids = cw->composite.num_children; Widget *kids = (Widget *) malloc (sizeof (Widget) * nkids); int i; - bcopy (cw->composite.children, kids, sizeof (Widget) * nkids); + lwlib_bcopy (cw->composite.children, kids, sizeof (Widget) * nkids); for (i = 0; i < nkids; i++) /* This prevent us from using gadgets, why is it here? */ /* if (XtIsWidget (kids [i])) */ |