annotate oldXMenu/insque.c @ 47707:fd1ed358e0c8

Don't bind utf-8-translation-table-for-decode while setting up ucs-mule-8859-to-ucs-table, etc. Add `depenency' property to iso-8859-* coding systems. (ucs-unify-8859): Arguments changed to FOR-ENCODE and FOR-DECODE. If FOR-DECODE is non-nil, make ucs-mule-8859-to-mule-unicode populate the translation table named ucs-translation-table-for-decode. If FOR-ENCODE is non-nil, make ucs-mule-to-mule-unicode populates the translation table named utf-translation-table-for-encode. Call register-char-codings for mule-utf-16-be and mule-utf-16-le too. (ucs-fragment-8859): Arguments changed to FOR-ENCODE and FOR-DECODE. If FOR-DECODE is non-nil, make the translation table named ucs-translation-table-for-decode vacant. If FOR-ENCODE is non-nil, make a proper char-table populates the translation table name utf-translation-table-for-encode. Call register-char-codings for all mule-utf-* to to reset their status to the origianl. (unify-8859-on-encoding-mode): Call ucs-unify-8859 and ucs-fragment-8859 with fixed arguments. Set the version to 21.3. (unify-8859-on-decoding-mode): Likewise. Remove dependency. (ccl-encode-unicode-font): Deleted, (ucs-tables-unload-hook): Deleted.
author Kenichi Handa <handa@m17n.org>
date Mon, 30 Sep 2002 06:38:13 +0000
parents bbce331da1be
children 23a1cea22d13
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
25858
Dave Love <fx@gnu.org>
parents:
diff changeset
1 /* This file implements the emacs_insque and emacs_remque functions,
Dave Love <fx@gnu.org>
parents:
diff changeset
2 copies of the insque and remque functions of BSD. They and all
Dave Love <fx@gnu.org>
parents:
diff changeset
3 their callers have been renamed to emacs_mumble to allow us to
Dave Love <fx@gnu.org>
parents:
diff changeset
4 include this file in the menu library on all systems. */
Dave Love <fx@gnu.org>
parents:
diff changeset
5
Dave Love <fx@gnu.org>
parents:
diff changeset
6
Dave Love <fx@gnu.org>
parents:
diff changeset
7 struct qelem {
Dave Love <fx@gnu.org>
parents:
diff changeset
8 struct qelem *q_forw;
Dave Love <fx@gnu.org>
parents:
diff changeset
9 struct qelem *q_back;
Dave Love <fx@gnu.org>
parents:
diff changeset
10 char q_data[1];
Dave Love <fx@gnu.org>
parents:
diff changeset
11 };
Dave Love <fx@gnu.org>
parents:
diff changeset
12
Dave Love <fx@gnu.org>
parents:
diff changeset
13 /* Insert ELEM into a doubly-linked list, after PREV. */
Dave Love <fx@gnu.org>
parents:
diff changeset
14
Dave Love <fx@gnu.org>
parents:
diff changeset
15 void
Dave Love <fx@gnu.org>
parents:
diff changeset
16 emacs_insque (elem, prev)
Dave Love <fx@gnu.org>
parents:
diff changeset
17 struct qelem *elem, *prev;
Dave Love <fx@gnu.org>
parents:
diff changeset
18 {
Dave Love <fx@gnu.org>
parents:
diff changeset
19 struct qelem *next = prev->q_forw;
Dave Love <fx@gnu.org>
parents:
diff changeset
20 prev->q_forw = elem;
Dave Love <fx@gnu.org>
parents:
diff changeset
21 if (next)
Dave Love <fx@gnu.org>
parents:
diff changeset
22 next->q_back = elem;
Dave Love <fx@gnu.org>
parents:
diff changeset
23 elem->q_forw = next;
Dave Love <fx@gnu.org>
parents:
diff changeset
24 elem->q_back = prev;
Dave Love <fx@gnu.org>
parents:
diff changeset
25 }
Dave Love <fx@gnu.org>
parents:
diff changeset
26
Dave Love <fx@gnu.org>
parents:
diff changeset
27 /* Unlink ELEM from the doubly-linked list that it is in. */
Dave Love <fx@gnu.org>
parents:
diff changeset
28
Dave Love <fx@gnu.org>
parents:
diff changeset
29 emacs_remque (elem)
Dave Love <fx@gnu.org>
parents:
diff changeset
30 struct qelem *elem;
Dave Love <fx@gnu.org>
parents:
diff changeset
31 {
Dave Love <fx@gnu.org>
parents:
diff changeset
32 struct qelem *next = elem->q_forw;
Dave Love <fx@gnu.org>
parents:
diff changeset
33 struct qelem *prev = elem->q_back;
Dave Love <fx@gnu.org>
parents:
diff changeset
34 if (next)
Dave Love <fx@gnu.org>
parents:
diff changeset
35 next->q_back = prev;
Dave Love <fx@gnu.org>
parents:
diff changeset
36 if (prev)
Dave Love <fx@gnu.org>
parents:
diff changeset
37 prev->q_forw = next;
Dave Love <fx@gnu.org>
parents:
diff changeset
38 }