]> git.eshelyaron.com Git - emacs.git/commitdiff
Ulrich Mueller <ulm at gentoo.org> (tiny change)
authorGlenn Morris <rgm@gnu.org>
Wed, 30 May 2007 04:58:38 +0000 (04:58 +0000)
committerGlenn Morris <rgm@gnu.org>
Wed, 30 May 2007 04:58:38 +0000 (04:58 +0000)
(XMakeAssoc): Use malloc rather than xmalloc.

oldXMenu/ChangeLog
oldXMenu/XMakeAssoc.c

index c92563d3bc2f7be5a03203332fa0233bd91840c2..9a7f01ed9011e37c251d5dc8d661dafd5d3a0b34 100644 (file)
@@ -1,3 +1,7 @@
+2007-05-30  Ulrich Mueller  <ulm@gentoo.org>  (tiny change)
+
+       * XMakeAssoc.c (XMakeAssoc): Use malloc rather than xmalloc.
+
 2007-02-27  Glenn Morris  <rgm@gnu.org>
 
        * Imakefile: Remove unused file with no explicit legal info.
index d443084ac13089d1dc5f0fe1e23c46b73ab6346f..cf039c8f3c1f3f206be3e3ea2223219e4239d778 100644 (file)
@@ -81,7 +81,7 @@ XMakeAssoc(dpy, table, x_id, data)
        /* If we are here then the new entry should be inserted just */
        /* before the current value of "Entry". */
        /* Create a new XAssoc and load it with new provided data. */
-       new_entry = (XAssoc *) xmalloc(sizeof(XAssoc));
+       new_entry = (XAssoc *) malloc(sizeof(XAssoc));
        new_entry->display = dpy;
        new_entry->x_id = x_id;
        new_entry->data = data;