annotate oldXMenu/XDelAssoc.c @ 57051:59091995520c

(msdos.o): Depend on buffer.h, commands.h, and blockinput.h. (dosfns.o): Depend on blockinput.h, window.h, dispextern.h, charset.h, and coding.h (w16select.o): Depend on buffer.h, charset.h, coding.h, and composite.h. (term.o): Depend on window.h and keymap.h. (abbrev.o): Depend on syntax.h. (callint.o): Depend on keymap.h. (casefiddle.o): Depend on charset.h and keymap.h. (category.o): Depend on keymap.h. (coding.o): Depend on dispextern.h. (cmds.o): Depend on keyboard.h and keymap.h. (dispnew.o): Depend on indent.h and intervals.h. (doc.o): Depend on keymap.h. (editfns.o): Depend on frame.h. (emacs.o): Depend on dispextern.h. (fileio.o): Don't depend on ccl.h. (filelock.o): Depend on charset.h and coding.h. (frame.o): Depend on w32term.h and macterm.h. (insdel.o): Depend on region-cache.h. (keyboard.o): Depend on keymap.h, w32term.h, and macterm.h. (minibuf.o): Depend on $(INTERVALS_SRC) and keymap.h. (search.o): Depend on $(INTERVALS_SRC). (syntax.o): Depend on keymap.h, regex.h, and $(INTERVALS_SRC). (window.o): Depend on keymap.h, blockinput.h, $(INTERVALS_SRC), xterm.h, w32term.h, and macterm.h. (xdisp.o): Depend on keyboard.h, $(INTERVALS_SRC), xterm.h, w32term.h, and macterm.h. (xfaces.o): Depend on keyboard.h, $(INTERVALS_SRC), region-cache.h, xterm.h, w32term.h, and macterm.h. (bytecode.o): Depend on dispextern.h, frame.h, and xterm.h. (data.o): Depend on frame.h. (fns.o): Depend on keymap.h, xterm.h, and blockinput.h. (print.o): Depend on termchar.h and $(INTERVALS_SRC). (lread.o): Depend on $(INTERVALS_SRC), termhooks.h, and coding.h. (intervals.o): Depend on keymap.h.
author Eli Zaretskii <eliz@gnu.org>
date Fri, 10 Sep 2004 18:16:57 +0000
parents e8824c4f5f7e
children 3861ff8f4bf1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
25858
Dave Love <fx@gnu.org>
parents:
diff changeset
1 /* Copyright Massachusetts Institute of Technology 1985 */
Dave Love <fx@gnu.org>
parents:
diff changeset
2
Dave Love <fx@gnu.org>
parents:
diff changeset
3 /*
Dave Love <fx@gnu.org>
parents:
diff changeset
4 Permission to use, copy, modify, distribute, and sell this software and its
Dave Love <fx@gnu.org>
parents:
diff changeset
5 documentation for any purpose is hereby granted without fee, provided that
Dave Love <fx@gnu.org>
parents:
diff changeset
6 the above copyright notice appear in all copies and that both that
Dave Love <fx@gnu.org>
parents:
diff changeset
7 copyright notice and this permission notice appear in supporting
Dave Love <fx@gnu.org>
parents:
diff changeset
8 documentation, and that the name of M.I.T. not be used in advertising or
Dave Love <fx@gnu.org>
parents:
diff changeset
9 publicity pertaining to distribution of the software without specific,
Dave Love <fx@gnu.org>
parents:
diff changeset
10 written prior permission. M.I.T. makes no representations about the
Dave Love <fx@gnu.org>
parents:
diff changeset
11 suitability of this software for any purpose. It is provided "as is"
Dave Love <fx@gnu.org>
parents:
diff changeset
12 without express or implied warranty.
Dave Love <fx@gnu.org>
parents:
diff changeset
13 */
Dave Love <fx@gnu.org>
parents:
diff changeset
14
Dave Love <fx@gnu.org>
parents:
diff changeset
15 #include <X11/Xlib.h>
Dave Love <fx@gnu.org>
parents:
diff changeset
16 #include "X10.h"
Dave Love <fx@gnu.org>
parents:
diff changeset
17 void emacs_remque();
Dave Love <fx@gnu.org>
parents:
diff changeset
18 struct qelem {
Dave Love <fx@gnu.org>
parents:
diff changeset
19 struct qelem *q_forw;
Dave Love <fx@gnu.org>
parents:
diff changeset
20 struct qelem *q_back;
Dave Love <fx@gnu.org>
parents:
diff changeset
21 char q_data[1];
Dave Love <fx@gnu.org>
parents:
diff changeset
22 };
Dave Love <fx@gnu.org>
parents:
diff changeset
23
Dave Love <fx@gnu.org>
parents:
diff changeset
24 /*
Dave Love <fx@gnu.org>
parents:
diff changeset
25 * XDeleteAssoc - Delete an association in an XAssocTable keyed on
Dave Love <fx@gnu.org>
parents:
diff changeset
26 * an XId. An association may be removed only once. Redundant
Dave Love <fx@gnu.org>
parents:
diff changeset
27 * deletes are meaningless (but cause no problems).
Dave Love <fx@gnu.org>
parents:
diff changeset
28 */
Dave Love <fx@gnu.org>
parents:
diff changeset
29 XDeleteAssoc(dpy, table, x_id)
Dave Love <fx@gnu.org>
parents:
diff changeset
30 register Display *dpy;
Dave Love <fx@gnu.org>
parents:
diff changeset
31 register XAssocTable *table;
Dave Love <fx@gnu.org>
parents:
diff changeset
32 register XID x_id;
Dave Love <fx@gnu.org>
parents:
diff changeset
33 {
Dave Love <fx@gnu.org>
parents:
diff changeset
34 int hash;
Dave Love <fx@gnu.org>
parents:
diff changeset
35 register XAssoc *bucket;
Dave Love <fx@gnu.org>
parents:
diff changeset
36 register XAssoc *Entry;
Dave Love <fx@gnu.org>
parents:
diff changeset
37
Dave Love <fx@gnu.org>
parents:
diff changeset
38 /* Hash the XId to get the bucket number. */
Dave Love <fx@gnu.org>
parents:
diff changeset
39 hash = x_id & (table->size - 1);
Dave Love <fx@gnu.org>
parents:
diff changeset
40 /* Look up the bucket to get the entries in that bucket. */
Dave Love <fx@gnu.org>
parents:
diff changeset
41 bucket = &table->buckets[hash];
Dave Love <fx@gnu.org>
parents:
diff changeset
42 /* Get the first entry in the bucket. */
Dave Love <fx@gnu.org>
parents:
diff changeset
43 Entry = bucket->next;
Dave Love <fx@gnu.org>
parents:
diff changeset
44
Dave Love <fx@gnu.org>
parents:
diff changeset
45 /* Scan through the entries in the bucket for the right XId. */
Dave Love <fx@gnu.org>
parents:
diff changeset
46 for (; Entry != bucket; Entry = Entry->next) {
Dave Love <fx@gnu.org>
parents:
diff changeset
47 if (Entry->x_id == x_id) {
Dave Love <fx@gnu.org>
parents:
diff changeset
48 /* We have the right XId. */
Dave Love <fx@gnu.org>
parents:
diff changeset
49 if (Entry->display == dpy) {
Dave Love <fx@gnu.org>
parents:
diff changeset
50 /* We have the right display. */
Dave Love <fx@gnu.org>
parents:
diff changeset
51 /* We have the right entry! */
Dave Love <fx@gnu.org>
parents:
diff changeset
52 /* Remove it from the queue and */
Dave Love <fx@gnu.org>
parents:
diff changeset
53 /* free the entry. */
Dave Love <fx@gnu.org>
parents:
diff changeset
54 emacs_remque((struct qelem *)Entry);
Dave Love <fx@gnu.org>
parents:
diff changeset
55 free((char *)Entry);
Dave Love <fx@gnu.org>
parents:
diff changeset
56 return;
Dave Love <fx@gnu.org>
parents:
diff changeset
57 }
Dave Love <fx@gnu.org>
parents:
diff changeset
58 /* Oops, identical XId's on different displays! */
Dave Love <fx@gnu.org>
parents:
diff changeset
59 continue;
Dave Love <fx@gnu.org>
parents:
diff changeset
60 }
Dave Love <fx@gnu.org>
parents:
diff changeset
61 if (Entry->x_id > x_id) {
Dave Love <fx@gnu.org>
parents:
diff changeset
62 /* We have gone past where it should be. */
Dave Love <fx@gnu.org>
parents:
diff changeset
63 /* It is apparently not in the table. */
Dave Love <fx@gnu.org>
parents:
diff changeset
64 return;
Dave Love <fx@gnu.org>
parents:
diff changeset
65 }
Dave Love <fx@gnu.org>
parents:
diff changeset
66 }
Dave Love <fx@gnu.org>
parents:
diff changeset
67 /* It is apparently not in the table. */
Dave Love <fx@gnu.org>
parents:
diff changeset
68 return;
Dave Love <fx@gnu.org>
parents:
diff changeset
69 }
Dave Love <fx@gnu.org>
parents:
diff changeset
70
52401
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 25858
diff changeset
71 /* arch-tag: 90981a7e-601c-487a-b364-cdf55d6c475b
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 25858
diff changeset
72 (do not change this comment) */