Mercurial > emacs
annotate oldXMenu/insque.c @ 90413:4ee003f8531c
If USE_FONT_BACKEND is defined, include "font.h".
Through out the file, use FONT_INFO_FROM_FACE instead of
FONT_INFO_FROM_ID, use get_per_char_metric instead of
rif->per_char_metric.
(handle_composition_prop) [USE_FONT_BACKEND]: If the composition
method is COMPOSITION_WITH_GLYPH_STRING, just set it->c to ' '.
(get_glyph_face_and_encoding, fill_composite_glyph_string)
(get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
(x_produce_glyphs) [USE_FONT_BACKEND]: If enable_font_backend is
nonzero, use font-backend mechanism.
(get_per_char_metric): New function.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Tue, 06 Jun 2006 03:52:26 +0000 |
parents | c5406394f567 |
children | 6588c6259dfb |
rev | line source |
---|---|
68640
e8a3fb527b77
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
65000
diff
changeset
|
1 /* Copyright (C) 2002, 2003, 2004, 2005, |
e8a3fb527b77
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
65000
diff
changeset
|
2 2006 Free Software Foundation, Inc. */ |
65000
3861ff8f4bf1
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
3 |
25858 | 4 /* This file implements the emacs_insque and emacs_remque functions, |
5 copies of the insque and remque functions of BSD. They and all | |
6 their callers have been renamed to emacs_mumble to allow us to | |
7 include this file in the menu library on all systems. */ | |
8 | |
9 | |
10 struct qelem { | |
11 struct qelem *q_forw; | |
12 struct qelem *q_back; | |
13 char q_data[1]; | |
14 }; | |
15 | |
16 /* Insert ELEM into a doubly-linked list, after PREV. */ | |
17 | |
18 void | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
25858
diff
changeset
|
19 emacs_insque (elem, prev) |
25858 | 20 struct qelem *elem, *prev; |
21 { | |
22 struct qelem *next = prev->q_forw; | |
23 prev->q_forw = elem; | |
24 if (next) | |
25 next->q_back = elem; | |
26 elem->q_forw = next; | |
27 elem->q_back = prev; | |
28 } | |
29 | |
30 /* Unlink ELEM from the doubly-linked list that it is in. */ | |
31 | |
32 emacs_remque (elem) | |
33 struct qelem *elem; | |
34 { | |
35 struct qelem *next = elem->q_forw; | |
36 struct qelem *prev = elem->q_back; | |
37 if (next) | |
38 next->q_back = prev; | |
39 if (prev) | |
40 prev->q_forw = next; | |
41 } | |
52401 | 42 |
43 /* arch-tag: a8719d1a-5c3f-4bce-b36b-173106d36165 | |
44 (do not change this comment) */ |