annotate oldXMenu/XLookAssoc.c @ 67894:d742983a2136

(bibtex-entry-type-whitespace) (bibtex-entry-type-str, bibtex-empty-field-re) (bibtex-search-backward-string, bibtex-preamble-prefix) (bibtex-search-entry, bibtex-enclosing-entry-maybe-empty-head): Removed. (bibtex-any-valid-entry-type): New variable. (bibtex-parse-field-name): Simplify. (bibtex-parse-string, bibtex-search-forward-string): New arg empty-key. (bibtex-preamble-prefix): Include left delimiter. (bibtex-search-forward-field, bibtex-search-backward-field): Allow unbounded search past entry boundaries (required by bibtex-pop). (bibtex-text-in-field-bounds): Use push. (bibtex-text-in-field): Do not use bibtex-narrow-to-entry. (bibtex-parse-preamble, bibtex-valid-entry) (bibtex-beginning-first-field): New functions. (bibtex-skip-to-valid-entry): Use bibtex-valid-entry. Fix regexp. (bibtex-map-entries): Fix docstring. (bibtex-flash-head): New arg prompt. Simplify. (bibtex-enclosing-field): Include code of bibtex-inside-field. (bibtex-insert-kill): Simplify. Always insert text past the current field or entry. (bibtex-format-entry): Use bibtex-parse-field. (bibtex-pop): Use bibtex-beginning-of-entry and bibtex-end-of-entry to initiate the search. Insert empty field if we found ourselves. (bibtex-print-help-message): New args field and comma. Handle entry keys. (bibtex-make-field): Use bibtex-beginning-of-entry. (bibtex-end-of-entry): Use bibtex-valid-entry. Recognize any invalid entry. (bibtex-validate): Use bibtex-valid-entry and bibtex-parse-string. Handle preambles. Simplify code for thorough test. (bibtex-next-field, bibtex-find-text, bibtex-find-text-internal): New arg comma. Handle entry heads. (bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters) (bibtex-kill-field, bibtex-copy-field-as-kil, bibtex-empty-field): New arg comma. (bibtex-kill-entry): Use bibtex-any-entry-maybe-empty-head. (bibtex-fill-field): Simplify. (bibtex-fill-entry): Use bibtex-beginning-first-field and bibtex-parse-field. (bibtex-convert-alien): Do not wait before calling bibtex-validate. (bibtex-complete): Use bibtex-parse-preamble.
author Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
date Thu, 29 Dec 2005 15:23:52 +0000
parents 3861ff8f4bf1
children e8a3fb527b77 2d92f5c9d6ae
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 */
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
Dave Love <fx@gnu.org>
parents:
diff changeset
3
Dave Love <fx@gnu.org>
parents:
diff changeset
4 /*
Dave Love <fx@gnu.org>
parents:
diff changeset
5 Permission to use, copy, modify, distribute, and sell this software and its
Dave Love <fx@gnu.org>
parents:
diff changeset
6 documentation for any purpose is hereby granted without fee, provided that
Dave Love <fx@gnu.org>
parents:
diff changeset
7 the above copyright notice appear in all copies and that both that
Dave Love <fx@gnu.org>
parents:
diff changeset
8 copyright notice and this permission notice appear in supporting
Dave Love <fx@gnu.org>
parents:
diff changeset
9 documentation, and that the name of M.I.T. not be used in advertising or
Dave Love <fx@gnu.org>
parents:
diff changeset
10 publicity pertaining to distribution of the software without specific,
Dave Love <fx@gnu.org>
parents:
diff changeset
11 written prior permission. M.I.T. makes no representations about the
Dave Love <fx@gnu.org>
parents:
diff changeset
12 suitability of this software for any purpose. It is provided "as is"
Dave Love <fx@gnu.org>
parents:
diff changeset
13 without express or implied warranty.
Dave Love <fx@gnu.org>
parents:
diff changeset
14 */
Dave Love <fx@gnu.org>
parents:
diff changeset
15
Dave Love <fx@gnu.org>
parents:
diff changeset
16 #include <X11/Xlib.h>
Dave Love <fx@gnu.org>
parents:
diff changeset
17 #include <X11/Xresource.h>
Dave Love <fx@gnu.org>
parents:
diff changeset
18 #include "X10.h"
Dave Love <fx@gnu.org>
parents:
diff changeset
19
Dave Love <fx@gnu.org>
parents:
diff changeset
20 #ifndef NULL
Dave Love <fx@gnu.org>
parents:
diff changeset
21 #define NULL 0
Dave Love <fx@gnu.org>
parents:
diff changeset
22 #endif
Dave Love <fx@gnu.org>
parents:
diff changeset
23
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 25858
diff changeset
24 /*
25858
Dave Love <fx@gnu.org>
parents:
diff changeset
25 * XLookUpAssoc - Retrieve the data stored in an XAssocTable by its XId.
Dave Love <fx@gnu.org>
parents:
diff changeset
26 * If an appropriately matching XId can be found in the table the routine will
Dave Love <fx@gnu.org>
parents:
diff changeset
27 * return apointer to the data associated with it. If the XId can not be found
Dave Love <fx@gnu.org>
parents:
diff changeset
28 * in the table the routine will return a NULL pointer. All XId's are relative
Dave Love <fx@gnu.org>
parents:
diff changeset
29 * to the currently active Display.
Dave Love <fx@gnu.org>
parents:
diff changeset
30 */
Dave Love <fx@gnu.org>
parents:
diff changeset
31 caddr_t XLookUpAssoc(dpy, table, x_id)
Dave Love <fx@gnu.org>
parents:
diff changeset
32 register Display *dpy;
Dave Love <fx@gnu.org>
parents:
diff changeset
33 register XAssocTable *table; /* XAssocTable to search in. */
Dave Love <fx@gnu.org>
parents:
diff changeset
34 register XID x_id; /* XId to search for. */
Dave Love <fx@gnu.org>
parents:
diff changeset
35 {
Dave Love <fx@gnu.org>
parents:
diff changeset
36 int hash;
Dave Love <fx@gnu.org>
parents:
diff changeset
37 register XAssoc *bucket;
Dave Love <fx@gnu.org>
parents:
diff changeset
38 register XAssoc *Entry;
Dave Love <fx@gnu.org>
parents:
diff changeset
39
Dave Love <fx@gnu.org>
parents:
diff changeset
40 /* Hash the XId to get the bucket number. */
Dave Love <fx@gnu.org>
parents:
diff changeset
41 hash = x_id & (table->size - 1);
Dave Love <fx@gnu.org>
parents:
diff changeset
42 /* Look up the bucket to get the entries in that bucket. */
Dave Love <fx@gnu.org>
parents:
diff changeset
43 bucket = &table->buckets[hash];
Dave Love <fx@gnu.org>
parents:
diff changeset
44 /* Get the first entry in the bucket. */
Dave Love <fx@gnu.org>
parents:
diff changeset
45 Entry = bucket->next;
Dave Love <fx@gnu.org>
parents:
diff changeset
46
Dave Love <fx@gnu.org>
parents:
diff changeset
47 /* Scan through the entries in the bucket for the right XId. */
Dave Love <fx@gnu.org>
parents:
diff changeset
48 for (; Entry != bucket; Entry = Entry->next) {
Dave Love <fx@gnu.org>
parents:
diff changeset
49 if (Entry->x_id == x_id) {
Dave Love <fx@gnu.org>
parents:
diff changeset
50 /* We have the right XId. */
Dave Love <fx@gnu.org>
parents:
diff changeset
51 if (Entry->display == dpy) {
Dave Love <fx@gnu.org>
parents:
diff changeset
52 /* We have the right display. */
Dave Love <fx@gnu.org>
parents:
diff changeset
53 /* We have the right entry! */
Dave Love <fx@gnu.org>
parents:
diff changeset
54 return(Entry->data);
Dave Love <fx@gnu.org>
parents:
diff changeset
55 }
Dave Love <fx@gnu.org>
parents:
diff changeset
56 /* Oops, identical XId's on different displays! */
Dave Love <fx@gnu.org>
parents:
diff changeset
57 continue;
Dave Love <fx@gnu.org>
parents:
diff changeset
58 }
Dave Love <fx@gnu.org>
parents:
diff changeset
59 if (Entry->x_id > x_id) {
Dave Love <fx@gnu.org>
parents:
diff changeset
60 /* We have gone past where it should be. */
Dave Love <fx@gnu.org>
parents:
diff changeset
61 /* It is apparently not in the table. */
Dave Love <fx@gnu.org>
parents:
diff changeset
62 return(NULL);
Dave Love <fx@gnu.org>
parents:
diff changeset
63 }
Dave Love <fx@gnu.org>
parents:
diff changeset
64 }
Dave Love <fx@gnu.org>
parents:
diff changeset
65 /* It is apparently not in the table. */
Dave Love <fx@gnu.org>
parents:
diff changeset
66 return(NULL);
Dave Love <fx@gnu.org>
parents:
diff changeset
67 }
Dave Love <fx@gnu.org>
parents:
diff changeset
68
52401
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 49600
diff changeset
69 /* arch-tag: d5075d0c-4b71-467d-b33c-3f5c4c4afcf2
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 49600
diff changeset
70 (do not change this comment) */