Mercurial > emacs
annotate oldXMenu/XDestAssoc.c @ 74803:a7c1903d8dca
(emacs, temacs): Depend on stamp_BLD instead of $(BLD).
($(OBJ0) $(OBJ1) $(WIN32OBJ)): New dependency on stamp_BLD.
(bootstrap-temacs): Pass $(XMFLAGS) to sub-make.
| author | Eli Zaretskii <eliz@gnu.org> |
|---|---|
| date | Fri, 22 Dec 2006 19:21:50 +0000 |
| parents | ce127a46b1ca |
| children | 3d45362f1d38 6588c6259dfb |
| rev | line source |
|---|---|
| 25858 | 1 /* Copyright Massachusetts Institute of Technology 1985 */ |
| 74548 | 2 /* Copyright (C) 2001, 2002, 2003, 2004, 2005, |
|
68640
e8a3fb527b77
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
65000
diff
changeset
|
3 2006 Free Software Foundation, Inc. */ |
| 25858 | 4 |
| 5 /* | |
| 6 Permission to use, copy, modify, distribute, and sell this software and its | |
| 7 documentation for any purpose is hereby granted without fee, provided that | |
| 8 the above copyright notice appear in all copies and that both that | |
| 9 copyright notice and this permission notice appear in supporting | |
| 10 documentation, and that the name of M.I.T. not be used in advertising or | |
| 11 publicity pertaining to distribution of the software without specific, | |
| 12 written prior permission. M.I.T. makes no representations about the | |
| 13 suitability of this software for any purpose. It is provided "as is" | |
| 14 without express or implied warranty. | |
| 15 */ | |
| 16 | |
| 17 #include <X11/Xlib.h> | |
| 18 #include "X10.h" | |
| 19 | |
| 20 /* | |
| 21 * XDestroyAssocTable - Destroy (free the memory associated with) | |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
25858
diff
changeset
|
22 * an XAssocTable. |
| 25858 | 23 */ |
| 24 XDestroyAssocTable(table) | |
| 25 register XAssocTable *table; | |
| 26 { | |
| 27 register int i; | |
| 28 register XAssoc *bucket; | |
| 29 register XAssoc *Entry, *entry_next; | |
| 30 | |
| 31 /* Free the buckets. */ | |
| 32 for (i = 0; i < table->size; i++) { | |
| 33 bucket = &table->buckets[i]; | |
| 34 for ( | |
| 35 Entry = bucket->next; | |
| 36 Entry != bucket; | |
| 37 Entry = entry_next | |
| 38 ) { | |
| 39 entry_next = Entry->next; | |
| 40 free((char *)Entry); | |
| 41 } | |
| 42 } | |
| 43 | |
| 44 /* Free the bucket array. */ | |
| 45 free((char *)table->buckets); | |
| 46 | |
| 47 /* Free the table. */ | |
| 48 free((char *)table); | |
| 49 } | |
| 50 | |
| 52401 | 51 /* arch-tag: a536bf02-8d63-45f2-8c1a-c7f9fd4da2cf |
| 52 (do not change this comment) */ |
