aboutsummaryrefslogtreecommitdiffstats
path: root/oldXMenu
diff options
context:
space:
mode:
authorMiles Bader2007-05-30 14:44:47 +0000
committerMiles Bader2007-05-30 14:44:47 +0000
commit34c6724464237db4bfd5b3fa57e8b0f66a92f618 (patch)
treebbfe4aea433c943f0f6a67b3e49ee31647e12d92 /oldXMenu
parent30790a37efea5c6fed87ee0dd0d54c31ac9eea11 (diff)
parent7a781a5480b9a1f55d28a76e1d1f89aaa2421f97 (diff)
downloademacs-34c6724464237db4bfd5b3fa57e8b0f66a92f618.tar.gz
emacs-34c6724464237db4bfd5b3fa57e8b0f66a92f618.zip
Merge from emacs--devo--0
Patches applied: * emacs--devo--0 (patch 771-780) - Update from CVS - Merge from emacs--rel--22 - Merge from emacs--rel--22, gnus--rel--5.10 - Fix tq.el edge case * emacs--rel--22 (patch 26-32) - Update from CVS - lisp/vc-hooks.el (vc-find-root): Fix file attribute test * gnus--rel--5.10 (patch 224-225) - Merge from emacs--devo--0, emacs--rel--22 - Update from CVS Revision: emacs@sv.gnu.org/emacs--multi-tty--0--patch-18
Diffstat (limited to 'oldXMenu')
-rw-r--r--oldXMenu/ChangeLog4
-rw-r--r--oldXMenu/XMakeAssoc.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/oldXMenu/ChangeLog b/oldXMenu/ChangeLog
index c92563d3bc2..9a7f01ed901 100644
--- a/oldXMenu/ChangeLog
+++ b/oldXMenu/ChangeLog
@@ -1,3 +1,7 @@
12007-05-30 Ulrich Mueller <ulm@gentoo.org> (tiny change)
2
3 * XMakeAssoc.c (XMakeAssoc): Use malloc rather than xmalloc.
4
12007-02-27 Glenn Morris <rgm@gnu.org> 52007-02-27 Glenn Morris <rgm@gnu.org>
2 6
3 * Imakefile: Remove unused file with no explicit legal info. 7 * Imakefile: Remove unused file with no explicit legal info.
diff --git a/oldXMenu/XMakeAssoc.c b/oldXMenu/XMakeAssoc.c
index d443084ac13..cf039c8f3c1 100644
--- a/oldXMenu/XMakeAssoc.c
+++ b/oldXMenu/XMakeAssoc.c
@@ -81,7 +81,7 @@ XMakeAssoc(dpy, table, x_id, data)
81 /* If we are here then the new entry should be inserted just */ 81 /* If we are here then the new entry should be inserted just */
82 /* before the current value of "Entry". */ 82 /* before the current value of "Entry". */
83 /* Create a new XAssoc and load it with new provided data. */ 83 /* Create a new XAssoc and load it with new provided data. */
84 new_entry = (XAssoc *) xmalloc(sizeof(XAssoc)); 84 new_entry = (XAssoc *) malloc(sizeof(XAssoc));
85 new_entry->display = dpy; 85 new_entry->display = dpy;
86 new_entry->x_id = x_id; 86 new_entry->x_id = x_id;
87 new_entry->data = data; 87 new_entry->data = data;