X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/463f5630a5e7cbe7f042bc1175d1fa1c4e98860f..3907e630a71d48e693062b350571990d7ba08bbb:/oldXMenu/XDelAssoc.c diff --git a/oldXMenu/XDelAssoc.c b/oldXMenu/XDelAssoc.c index df3bee6ee9..ec1d09d46e 100644 --- a/oldXMenu/XDelAssoc.c +++ b/oldXMenu/XDelAssoc.c @@ -1,36 +1,16 @@ -/* $XConsortium: XDelAssoc.c,v 10.19 91/01/06 12:06:39 rws Exp $ */ /* Copyright Massachusetts Institute of Technology 1985 */ -/* -Permission to use, copy, modify, distribute, and sell this software and its -documentation for any purpose is hereby granted without fee, provided that -the above copyright notice appear in all copies and that both that -copyright notice and this permission notice appear in supporting -documentation, and that the name of M.I.T. not be used in advertising or -publicity pertaining to distribution of the software without specific, -written prior permission. M.I.T. makes no representations about the -suitability of this software for any purpose. It is provided "as is" -without express or implied warranty. -*/ +#include "copyright.h" -#include -#include "X10.h" -void emacs_remque(); -struct qelem { - struct qelem *q_forw; - struct qelem *q_back; - char q_data[1]; -}; +#include "XMenuInt.h" /* * XDeleteAssoc - Delete an association in an XAssocTable keyed on * an XId. An association may be removed only once. Redundant * deletes are meaningless (but cause no problems). */ -XDeleteAssoc(dpy, table, x_id) - register Display *dpy; - register XAssocTable *table; - register XID x_id; +void +XDeleteAssoc(register Display *dpy, register XAssocTable *table, register XID x_id) { int hash; register XAssoc *bucket; @@ -68,4 +48,3 @@ XDeleteAssoc(dpy, table, x_id) /* It is apparently not in the table. */ return; } -