(cua-paste): Handle x-clipboard-yank.
[bpt/emacs.git] / oldXMenu / XDelAssoc.c
CommitLineData
e745ede7 1/* Copyright Massachusetts Institute of Technology 1985 */
61e1e4e8 2/* Copyright (C) 2001, 2002, 2003, 2004, 2005,
4e6835db 3 2006, 2007 Free Software Foundation, Inc. */
e745ede7
DL
4
5/*
6Permission to use, copy, modify, distribute, and sell this software and its
7documentation for any purpose is hereby granted without fee, provided that
8the above copyright notice appear in all copies and that both that
9copyright notice and this permission notice appear in supporting
10documentation, and that the name of M.I.T. not be used in advertising or
11publicity pertaining to distribution of the software without specific,
12written prior permission. M.I.T. makes no representations about the
13suitability of this software for any purpose. It is provided "as is"
14without express or implied warranty.
15*/
16
17#include <X11/Xlib.h>
18#include "X10.h"
19void emacs_remque();
20struct qelem {
21 struct qelem *q_forw;
22 struct qelem *q_back;
23 char q_data[1];
24};
25
26/*
27 * XDeleteAssoc - Delete an association in an XAssocTable keyed on
28 * an XId. An association may be removed only once. Redundant
29 * deletes are meaningless (but cause no problems).
30 */
31XDeleteAssoc(dpy, table, x_id)
32 register Display *dpy;
33 register XAssocTable *table;
34 register XID x_id;
35{
36 int hash;
37 register XAssoc *bucket;
38 register XAssoc *Entry;
39
40 /* Hash the XId to get the bucket number. */
41 hash = x_id & (table->size - 1);
42 /* Look up the bucket to get the entries in that bucket. */
43 bucket = &table->buckets[hash];
44 /* Get the first entry in the bucket. */
45 Entry = bucket->next;
46
47 /* Scan through the entries in the bucket for the right XId. */
48 for (; Entry != bucket; Entry = Entry->next) {
49 if (Entry->x_id == x_id) {
50 /* We have the right XId. */
51 if (Entry->display == dpy) {
52 /* We have the right display. */
53 /* We have the right entry! */
54 /* Remove it from the queue and */
55 /* free the entry. */
56 emacs_remque((struct qelem *)Entry);
57 free((char *)Entry);
58 return;
59 }
60 /* Oops, identical XId's on different displays! */
61 continue;
62 }
63 if (Entry->x_id > x_id) {
64 /* We have gone past where it should be. */
65 /* It is apparently not in the table. */
66 return;
67 }
68 }
69 /* It is apparently not in the table. */
70 return;
71}
72
ab5796a9
MB
73/* arch-tag: 90981a7e-601c-487a-b364-cdf55d6c475b
74 (do not change this comment) */