Mercurial > emacs
annotate oldXMenu/XDelAssoc.c @ 67057:10e217ceeee2
(comment-enter-backward): Fix last fix.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Sun, 20 Nov 2005 23:25:46 +0000 |
parents | 3861ff8f4bf1 |
children | e8a3fb527b77 2d92f5c9d6ae |
rev | line source |
---|---|
25858 | 1 /* Copyright Massachusetts Institute of Technology 1985 */ |
65000
3861ff8f4bf1
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
54770
diff
changeset
|
2 /* Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. */ |
25858 | 3 |
4 /* | |
5 Permission to use, copy, modify, distribute, and sell this software and its | |
6 documentation for any purpose is hereby granted without fee, provided that | |
7 the above copyright notice appear in all copies and that both that | |
8 copyright notice and this permission notice appear in supporting | |
9 documentation, and that the name of M.I.T. not be used in advertising or | |
10 publicity pertaining to distribution of the software without specific, | |
11 written prior permission. M.I.T. makes no representations about the | |
12 suitability of this software for any purpose. It is provided "as is" | |
13 without express or implied warranty. | |
14 */ | |
15 | |
16 #include <X11/Xlib.h> | |
17 #include "X10.h" | |
18 void emacs_remque(); | |
19 struct qelem { | |
20 struct qelem *q_forw; | |
21 struct qelem *q_back; | |
22 char q_data[1]; | |
23 }; | |
24 | |
25 /* | |
26 * XDeleteAssoc - Delete an association in an XAssocTable keyed on | |
27 * an XId. An association may be removed only once. Redundant | |
28 * deletes are meaningless (but cause no problems). | |
29 */ | |
30 XDeleteAssoc(dpy, table, x_id) | |
31 register Display *dpy; | |
32 register XAssocTable *table; | |
33 register XID x_id; | |
34 { | |
35 int hash; | |
36 register XAssoc *bucket; | |
37 register XAssoc *Entry; | |
38 | |
39 /* Hash the XId to get the bucket number. */ | |
40 hash = x_id & (table->size - 1); | |
41 /* Look up the bucket to get the entries in that bucket. */ | |
42 bucket = &table->buckets[hash]; | |
43 /* Get the first entry in the bucket. */ | |
44 Entry = bucket->next; | |
45 | |
46 /* Scan through the entries in the bucket for the right XId. */ | |
47 for (; Entry != bucket; Entry = Entry->next) { | |
48 if (Entry->x_id == x_id) { | |
49 /* We have the right XId. */ | |
50 if (Entry->display == dpy) { | |
51 /* We have the right display. */ | |
52 /* We have the right entry! */ | |
53 /* Remove it from the queue and */ | |
54 /* free the entry. */ | |
55 emacs_remque((struct qelem *)Entry); | |
56 free((char *)Entry); | |
57 return; | |
58 } | |
59 /* Oops, identical XId's on different displays! */ | |
60 continue; | |
61 } | |
62 if (Entry->x_id > x_id) { | |
63 /* We have gone past where it should be. */ | |
64 /* It is apparently not in the table. */ | |
65 return; | |
66 } | |
67 } | |
68 /* It is apparently not in the table. */ | |
69 return; | |
70 } | |
71 | |
52401 | 72 /* arch-tag: 90981a7e-601c-487a-b364-cdf55d6c475b |
73 (do not change this comment) */ |