annotate src/extents.c @ 412:697ef44129c6 r21-2-14

Import from CVS: tag r21-2-14
author cvs
date Mon, 13 Aug 2007 11:20:41 +0200
parents b8cc9ab3f761
children 41dbb7a9d5f2
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* Copyright (c) 1994, 1995 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (c) 1995 Sun Microsystems, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 Copyright (c) 1995, 1996 Ben Wing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 /* Synched up with: Not in FSF. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 /* This file has been Mule-ized. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 284
diff changeset
26 /* Written by Ben Wing <ben@xemacs.org>.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 [Originally written by some people at Lucid.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 Hacked on by jwz.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 Start/end-open stuff added by John Rose (john.rose@eng.sun.com).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 Rewritten from scratch by Ben Wing, December 1994.] */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 /* Commentary:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 Extents are regions over a buffer, with a start and an end position
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 denoting the region of the buffer included in the extent. In
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 addition, either end can be closed or open, meaning that the endpoint
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 is or is not logically included in the extent. Insertion of a character
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 at a closed endpoint causes the character to go inside the extent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 insertion at an open endpoint causes the character to go outside.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 Extent endpoints are stored using memory indices (see insdel.c),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 to minimize the amount of adjusting that needs to be done when
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 characters are inserted or deleted.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 (Formerly, extent endpoints at the gap could be either before or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 after the gap, depending on the open/closedness of the endpoint.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 The intent of this was to make it so that insertions would
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 automatically go inside or out of extents as necessary with no
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 further work needing to be done. It didn't work out that way,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 however, and just ended up complexifying and buggifying all the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 rest of the code.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 Extents are compared using memory indices. There are two orderings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 for extents and both orders are kept current at all times. The normal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 or "display" order is as follows:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 Extent A is "less than" extent B, that is, earlier in the display order,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 if: A-start < B-start,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 or if: A-start = B-start, and A-end > B-end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 So if two extents begin at the same position, the larger of them is the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 earlier one in the display order (EXTENT_LESS is true).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 For the e-order, the same thing holds: Extent A is "less than" extent B
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 in e-order, that is, later in the buffer,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 if: A-end < B-end,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 or if: A-end = B-end, and A-start > B-start
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 So if two extents end at the same position, the smaller of them is the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 earlier one in the e-order (EXTENT_E_LESS is true).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 The display order and the e-order are complementary orders: any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 theorem about the display order also applies to the e-order if you
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 swap all occurrences of "display order" and "e-order", "less than"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 and "greater than", and "extent start" and "extent end".
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 Extents can be zero-length, and will end up that way if their endpoints
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 are explicitly set that way or if their detachable property is nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 and all the text in the extent is deleted. (The exception is open-open
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 zero-length extents, which are barred from existing because there is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 no sensible way to define their properties. Deletion of the text in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 an open-open extent causes it to be converted into a closed-open
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 extent.) Zero-length extents are primarily used to represent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 annotations, and behave as follows:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 1) Insertion at the position of a zero-length extent expands the extent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 if both endpoints are closed; goes after the extent if it is closed-open;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 and goes before the extent if it is open-closed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 2) Deletion of a character on a side of a zero-length extent whose
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 corresponding endpoint is closed causes the extent to be detached if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 it is detachable; if the extent is not detachable or the corresponding
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 endpoint is open, the extent remains in the buffer, moving as necessary.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 Note that closed-open, non-detachable zero-length extents behave exactly
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 like markers and that open-closed, non-detachable zero-length extents
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 behave like the "point-type" marker in Mule.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 #### The following information is wrong in places.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 More about the different orders:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 --------------------------------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 The extents in a buffer are ordered by "display order" because that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 is that order that the redisplay mechanism needs to process them in.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 The e-order is an auxiliary ordering used to facilitate operations
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 over extents. The operations that can be performed on the ordered
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 list of extents in a buffer are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 1) Locate where an extent would go if inserted into the list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 2) Insert an extent into the list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 3) Remove an extent from the list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 4) Map over all the extents that overlap a range.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 (4) requires being able to determine the first and last extents
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 that overlap a range.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 NOTE: "overlap" is used as follows:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 -- two ranges overlap if they have at least one point in common.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 Whether the endpoints are open or closed makes a difference here.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 -- a point overlaps a range if the point is contained within the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 range; this is equivalent to treating a point P as the range
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 [P, P].
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 -- In the case of an *extent* overlapping a point or range, the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 extent is normally treated as having closed endpoints. This
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 applies consistently in the discussion of stacks of extents
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 and such below. Note that this definition of overlap is not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 necessarily consistent with the extents that `map-extents'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 maps over, since `map-extents' sometimes pays attention to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 whether the endpoints of an extents are open or closed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 But for our purposes, it greatly simplifies things to treat
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 all extents as having closed endpoints.
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
136
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 First, define >, <, <=, etc. as applied to extents to mean
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 comparison according to the display order. Comparison between an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 extent E and an index I means comparison between E and the range
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 [I, I].
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 Also define e>, e<, e<=, etc. to mean comparison according to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 e-order.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 For any range R, define R(0) to be the starting index of the range
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 and R(1) to be the ending index of the range.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 For any extent E, define E(next) to be the extent directly following
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 E, and E(prev) to be the extent directly preceding E. Assume
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 E(next) and E(prev) can be determined from E in constant time.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 (This is because we store the extent list as a doubly linked
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 list.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 Similarly, define E(e-next) and E(e-prev) to be the extents
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 directly following and preceding E in the e-order.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 Now:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 Let R be a range.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 Let F be the first extent overlapping R.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 Let L be the last extent overlapping R.
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
158
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 Theorem 1: R(1) lies between L and L(next), i.e. L <= R(1) < L(next).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 This follows easily from the definition of display order. The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 basic reason that this theorem applies is that the display order
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 sorts by increasing starting index.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 Therefore, we can determine L just by looking at where we would
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 insert R(1) into the list, and if we know F and are moving forward
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 over extents, we can easily determine when we've hit L by comparing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 the extent we're at to R(1).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 Theorem 2: F(e-prev) e< [1, R(0)] e<= F.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 This is the analog of Theorem 1, and applies because the e-order
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 sorts by increasing ending index.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 Therefore, F can be found in the same amount of time as operation (1),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 i.e. the time that it takes to locate where an extent would go if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 inserted into the e-order list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 If the lists were stored as balanced binary trees, then operation (1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 would take logarithmic time, which is usually quite fast. However,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 currently they're stored as simple doubly-linked lists, and instead
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 we do some caching to try to speed things up.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 Define a "stack of extents" (or "SOE") as the set of extents
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 (ordered in the display order) that overlap an index I, together with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 the SOE's "previous" extent, which is an extent that precedes I in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 the e-order. (Hopefully there will not be very many extents between
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 I and the previous extent.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 Now:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 Let I be an index, let S be the stack of extents on I, let F be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 the first extent in S, and let P be S's previous extent.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 Theorem 3: The first extent in S is the first extent that overlaps
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 any range [I, J].
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 Proof: Any extent that overlaps [I, J] but does not include I must
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 have a start index > I, and thus be greater than any extent in S.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 Therefore, finding the first extent that overlaps a range R is the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 same as finding the first extent that overlaps R(0).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 Theorem 4: Let I2 be an index such that I2 > I, and let F2 be the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 first extent that overlaps I2. Then, either F2 is in S or F2 is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 greater than any extent in S.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 Proof: If F2 does not include I then its start index is greater
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 than I and thus it is greater than any extent in S, including F.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 Otherwise, F2 includes I and thus is in S, and thus F2 >= F.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 #include <config.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 #include "lisp.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
217 #include "buffer.h"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 #include "debug.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 #include "device.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 #include "elhash.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 #include "extents.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 #include "faces.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 #include "frame.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 #include "glyphs.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 #include "insdel.h"
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
226 #include "keymap.h"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 #include "opaque.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 #include "process.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 #include "redisplay.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 /* ------------------------------- */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 /* gap array */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 /* ------------------------------- */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 /* Note that this object is not extent-specific and should perhaps be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 moved into another file. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 /* Holds a marker that moves as elements in the array are inserted and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 deleted, similar to standard markers. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 typedef struct gap_array_marker
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 int pos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 struct gap_array_marker *next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 } Gap_Array_Marker;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 /* Holds a "gap array", which is an array of elements with a gap located
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 in it. Insertions and deletions with a high degree of locality
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 are very fast, essentially in constant time. Array positions as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 used and returned in the gap array functions are independent of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 the gap. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 typedef struct gap_array
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 char *array;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 int gap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 int gapsize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 int numels;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 int elsize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 Gap_Array_Marker *markers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 } Gap_Array;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
263 Gap_Array_Marker *gap_array_marker_freelist;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 /* Convert a "memory position" (i.e. taking the gap into account) into
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 the address of the element at (i.e. after) that position. "Memory
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 positions" are only used internally and are of type Memind.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 "Array positions" are used externally and are of type int. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 #define GAP_ARRAY_MEMEL_ADDR(ga, memel) ((ga)->array + (ga)->elsize*(memel))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 /* Number of elements currently in a gap array */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 #define GAP_ARRAY_NUM_ELS(ga) ((ga)->numels)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 #define GAP_ARRAY_ARRAY_TO_MEMORY_POS(ga, pos) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 ((pos) <= (ga)->gap ? (pos) : (pos) + (ga)->gapsize)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 #define GAP_ARRAY_MEMORY_TO_ARRAY_POS(ga, pos) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 ((pos) <= (ga)->gap ? (pos) : (pos) - (ga)->gapsize)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 /* Convert an array position into the address of the element at
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 (i.e. after) that position. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 #define GAP_ARRAY_EL_ADDR(ga, pos) ((pos) < (ga)->gap ? \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 GAP_ARRAY_MEMEL_ADDR(ga, pos) : \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 GAP_ARRAY_MEMEL_ADDR(ga, (pos) + (ga)->gapsize))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 /* ------------------------------- */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 /* extent list */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 /* ------------------------------- */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 typedef struct extent_list_marker
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 Gap_Array_Marker *m;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 int endp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 struct extent_list_marker *next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 } Extent_List_Marker;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 typedef struct extent_list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 Gap_Array *start;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 Gap_Array *end;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 Extent_List_Marker *markers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 } Extent_List;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
304 Extent_List_Marker *extent_list_marker_freelist;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 #define EXTENT_LESS_VALS(e,st,nd) ((extent_start (e) < (st)) || \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 ((extent_start (e) == (st)) && \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 (extent_end (e) > (nd))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 #define EXTENT_EQUAL_VALS(e,st,nd) ((extent_start (e) == (st)) && \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 (extent_end (e) == (nd)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 #define EXTENT_LESS_EQUAL_VALS(e,st,nd) ((extent_start (e) < (st)) || \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 ((extent_start (e) == (st)) && \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 (extent_end (e) >= (nd))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 /* Is extent E1 less than extent E2 in the display order? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 #define EXTENT_LESS(e1,e2) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 EXTENT_LESS_VALS (e1, extent_start (e2), extent_end (e2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 /* Is extent E1 equal to extent E2? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 #define EXTENT_EQUAL(e1,e2) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 EXTENT_EQUAL_VALS (e1, extent_start (e2), extent_end (e2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 /* Is extent E1 less than or equal to extent E2 in the display order? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 #define EXTENT_LESS_EQUAL(e1,e2) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 EXTENT_LESS_EQUAL_VALS (e1, extent_start (e2), extent_end (e2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 #define EXTENT_E_LESS_VALS(e,st,nd) ((extent_end (e) < (nd)) || \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 ((extent_end (e) == (nd)) && \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 (extent_start (e) > (st))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 #define EXTENT_E_LESS_EQUAL_VALS(e,st,nd) ((extent_end (e) < (nd)) || \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 ((extent_end (e) == (nd)) && \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 (extent_start (e) >= (st))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 /* Is extent E1 less than extent E2 in the e-order? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 #define EXTENT_E_LESS(e1,e2) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 EXTENT_E_LESS_VALS(e1, extent_start (e2), extent_end (e2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 /* Is extent E1 less than or equal to extent E2 in the e-order? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 #define EXTENT_E_LESS_EQUAL(e1,e2) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 EXTENT_E_LESS_EQUAL_VALS (e1, extent_start (e2), extent_end (e2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 #define EXTENT_GAP_ARRAY_AT(ga, pos) (* (EXTENT *) GAP_ARRAY_EL_ADDR(ga, pos))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 /* ------------------------------- */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 /* auxiliary extent structure */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 /* ------------------------------- */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 struct extent_auxiliary extent_auxiliary_defaults;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 /* ------------------------------- */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 /* buffer-extent primitives */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 /* ------------------------------- */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 typedef struct stack_of_extents
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 Extent_List *extents;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 Memind pos; /* Position of stack of extents. EXTENTS is the list of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 all extents that overlap this position. This position
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 can be -1 if the stack of extents is invalid (this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 happens when a buffer is first created or a string's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 stack of extents is created [a string's stack of extents
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 is nuked when a GC occurs, to conserve memory]). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 } Stack_Of_Extents;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 /* ------------------------------- */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 /* map-extents */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 /* ------------------------------- */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 typedef int Endpoint_Index;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 #define memind_to_startind(x, start_open) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 ((Endpoint_Index) (((x) << 1) + !!(start_open)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 #define memind_to_endind(x, end_open) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 ((Endpoint_Index) (((x) << 1) - !!(end_open)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 /* Combination macros */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 #define bytind_to_startind(buf, x, start_open) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 memind_to_startind (bytind_to_memind (buf, x), start_open)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 #define bytind_to_endind(buf, x, end_open) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 memind_to_endind (bytind_to_memind (buf, x), end_open)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 /* ------------------------------- */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 /* buffer-or-string primitives */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 /* ------------------------------- */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 /* Similar for Bytinds and start/end indices. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 #define buffer_or_string_bytind_to_startind(obj, ind, start_open) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 memind_to_startind (buffer_or_string_bytind_to_memind (obj, ind), \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 start_open)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 #define buffer_or_string_bytind_to_endind(obj, ind, end_open) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 memind_to_endind (buffer_or_string_bytind_to_memind (obj, ind), \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 end_open)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 /* ------------------------------- */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 /* Lisp-level functions */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 /* ------------------------------- */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 /* flags for decode_extent() */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 #define DE_MUST_HAVE_BUFFER 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 #define DE_MUST_BE_ATTACHED 2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 Lisp_Object Vlast_highlighted_extent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 int mouse_highlight_priority;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 Lisp_Object Qextentp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 Lisp_Object Qextent_live_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 Lisp_Object Qall_extents_closed;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 Lisp_Object Qall_extents_open;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 Lisp_Object Qall_extents_closed_open;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 Lisp_Object Qall_extents_open_closed;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 Lisp_Object Qstart_in_region;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 Lisp_Object Qend_in_region;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 Lisp_Object Qstart_and_end_in_region;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 Lisp_Object Qstart_or_end_in_region;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 Lisp_Object Qnegate_in_region;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 Lisp_Object Qdetached;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 Lisp_Object Qdestroyed;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 Lisp_Object Qbegin_glyph;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 Lisp_Object Qend_glyph;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 Lisp_Object Qstart_open;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 Lisp_Object Qend_open;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 Lisp_Object Qstart_closed;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 Lisp_Object Qend_closed;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 Lisp_Object Qread_only;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 /* Qhighlight defined in general.c */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 Lisp_Object Qunique;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 Lisp_Object Qduplicable;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 Lisp_Object Qdetachable;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 Lisp_Object Qpriority;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 Lisp_Object Qmouse_face;
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 203
diff changeset
438 Lisp_Object Qinitial_redisplay_function;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 Lisp_Object Qglyph_layout; /* This exists only for backwards compatibility. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 Lisp_Object Qbegin_glyph_layout, Qend_glyph_layout;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 Lisp_Object Qoutside_margin;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 Lisp_Object Qinside_margin;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 Lisp_Object Qwhitespace;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 /* Qtext defined in general.c */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
447 /* partially used in redisplay */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
448 Lisp_Object Qglyph_invisible;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
449
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 Lisp_Object Qcopy_function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 Lisp_Object Qpaste_function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 /* The idea here is that if we're given a list of faces, we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 need to "memoize" this so that two lists of faces that are `equal'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 turn into the same object. When `set-extent-face' is called, we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 "memoize" into a list of actual faces; when `extent-face' is called,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 we do a reverse lookup to get the list of symbols. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 static Lisp_Object canonicalize_extent_property (Lisp_Object prop,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 Lisp_Object value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 Lisp_Object Vextent_face_memoize_hash_table;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 Lisp_Object Vextent_face_reverse_memoize_hash_table;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 Lisp_Object Vextent_face_reusable_list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 /* FSFmacs bogosity */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 Lisp_Object Vdefault_text_properties;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
467
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
468 EXFUN (Fextent_properties, 1);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
469 EXFUN (Fset_extent_property, 3);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
470
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 /* Generalized gap array */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 /* This generalizes the "array with a gap" model used to store buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 characters. This is based on the stuff in insdel.c and should
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 probably be merged with it. This is not extent-specific and should
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 perhaps be moved into a separate file. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 /* ------------------------------- */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 /* internal functions */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 /* ------------------------------- */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 /* Adjust the gap array markers in the range (FROM, TO]. Parallel to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 adjust_markers() in insdel.c. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 gap_array_adjust_markers (Gap_Array *ga, Memind from,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490 Memind to, int amount)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 Gap_Array_Marker *m;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 for (m = ga->markers; m; m = m->next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 m->pos = do_marker_adjustment (m->pos, from, to, amount);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 /* Move the gap to array position POS. Parallel to move_gap() in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 insdel.c but somewhat simplified. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 gap_array_move_gap (Gap_Array *ga, int pos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 int gap = ga->gap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 int gapsize = ga->gapsize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507 assert (ga->array);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 if (pos < gap)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 memmove (GAP_ARRAY_MEMEL_ADDR (ga, pos + gapsize),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 GAP_ARRAY_MEMEL_ADDR (ga, pos),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512 (gap - pos)*ga->elsize);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513 gap_array_adjust_markers (ga, (Memind) pos, (Memind) gap,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 gapsize);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 else if (pos > gap)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 memmove (GAP_ARRAY_MEMEL_ADDR (ga, gap),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 GAP_ARRAY_MEMEL_ADDR (ga, gap + gapsize),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 (pos - gap)*ga->elsize);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 gap_array_adjust_markers (ga, (Memind) (gap + gapsize),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 (Memind) (pos + gapsize), - gapsize);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 ga->gap = pos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 /* Make the gap INCREMENT characters longer. Parallel to make_gap() in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 insdel.c. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 gap_array_make_gap (Gap_Array *ga, int increment)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 char *ptr = ga->array;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 int real_gap_loc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 int old_gap_size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 /* If we have to get more space, get enough to last a while. We use
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
538 a geometric progression that saves on realloc space. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 increment += 100 + ga->numels / 8;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
541 ptr = (char *) xrealloc (ptr,
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
542 (ga->numels + ga->gapsize + increment)*ga->elsize);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 if (ptr == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 memory_full ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 ga->array = ptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 real_gap_loc = ga->gap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 old_gap_size = ga->gapsize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 /* Call the newly allocated space a gap at the end of the whole space. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 ga->gap = ga->numels + ga->gapsize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552 ga->gapsize = increment;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 /* Move the new gap down to be consecutive with the end of the old one.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 This adjusts the markers properly too. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 gap_array_move_gap (ga, real_gap_loc + old_gap_size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 /* Now combine the two into one large gap. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 ga->gapsize += old_gap_size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 ga->gap = real_gap_loc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 /* ------------------------------- */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 /* external functions */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565 /* ------------------------------- */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 /* Insert NUMELS elements (pointed to by ELPTR) into the specified
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 gap array at POS. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571 gap_array_insert_els (Gap_Array *ga, int pos, void *elptr, int numels)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 assert (pos >= 0 && pos <= ga->numels);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 if (ga->gapsize < numels)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 gap_array_make_gap (ga, numels - ga->gapsize);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 if (pos != ga->gap)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 gap_array_move_gap (ga, pos);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579 memcpy (GAP_ARRAY_MEMEL_ADDR (ga, ga->gap), (char *) elptr,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580 numels*ga->elsize);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 ga->gapsize -= numels;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 ga->gap += numels;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 ga->numels += numels;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 /* This is the equivalent of insert-before-markers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586 #### Should only happen if marker is "moves forward at insert" type.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589 gap_array_adjust_markers (ga, pos - 1, pos, numels);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 /* Delete NUMELS elements from the specified gap array, starting at FROM. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595 gap_array_delete_els (Gap_Array *ga, int from, int numdel)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597 int to = from + numdel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 int gapsize = ga->gapsize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 assert (from >= 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601 assert (numdel >= 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602 assert (to <= ga->numels);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604 /* Make sure the gap is somewhere in or next to what we are deleting. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605 if (to < ga->gap)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606 gap_array_move_gap (ga, to);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607 if (from > ga->gap)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 gap_array_move_gap (ga, from);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 /* Relocate all markers pointing into the new, larger gap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 to point at the end of the text before the gap. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612 gap_array_adjust_markers (ga, to + gapsize, to + gapsize,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 - numdel - gapsize);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615 ga->gapsize += numdel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 ga->numels -= numdel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 ga->gap = from;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620 static Gap_Array_Marker *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621 gap_array_make_marker (Gap_Array *ga, int pos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 Gap_Array_Marker *m;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625 assert (pos >= 0 && pos <= ga->numels);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 if (gap_array_marker_freelist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 m = gap_array_marker_freelist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629 gap_array_marker_freelist = gap_array_marker_freelist->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631 else
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
632 m = xnew (Gap_Array_Marker);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634 m->pos = GAP_ARRAY_ARRAY_TO_MEMORY_POS (ga, pos);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 m->next = ga->markers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 ga->markers = m;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 return m;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 gap_array_delete_marker (Gap_Array *ga, Gap_Array_Marker *m)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643 Gap_Array_Marker *p, *prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 for (prev = 0, p = ga->markers; p && p != m; prev = p, p = p->next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646 ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 assert (p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648 if (prev)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 prev->next = p->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 ga->markers = p->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 m->next = gap_array_marker_freelist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653 m->pos = 0xDEADBEEF; /* -559038737 as an int */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654 gap_array_marker_freelist = m;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658 gap_array_delete_all_markers (Gap_Array *ga)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 Gap_Array_Marker *p, *next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 for (p = ga->markers; p; p = next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 next = p->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 p->next = gap_array_marker_freelist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 p->pos = 0xDEADBEEF; /* -559038737 as an int */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 gap_array_marker_freelist = p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 gap_array_move_marker (Gap_Array *ga, Gap_Array_Marker *m, int pos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 assert (pos >= 0 && pos <= ga->numels);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 m->pos = GAP_ARRAY_ARRAY_TO_MEMORY_POS (ga, pos);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 #define gap_array_marker_pos(ga, m) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679 GAP_ARRAY_MEMORY_TO_ARRAY_POS (ga, (m)->pos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 static Gap_Array *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682 make_gap_array (int elsize)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
684 Gap_Array *ga = xnew_and_zero (Gap_Array);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 ga->elsize = elsize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686 return ga;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 free_gap_array (Gap_Array *ga)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692 if (ga->array)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693 xfree (ga->array);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694 gap_array_delete_all_markers (ga);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 xfree (ga);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 /* Extent list primitives */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703 /* A list of extents is maintained as a double gap array: one gap array
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 is ordered by start index (the "display order") and the other is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705 ordered by end index (the "e-order"). Note that positions in an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 extent list should logically be conceived of as referring *to*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707 a particular extent (as is the norm in programs) rather than
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708 sitting between two extents. Note also that callers of these
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 functions should not be aware of the fact that the extent list is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710 implemented as an array, except for the fact that positions are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 integers (this should be generalized to handle integers and linked
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 list equally well).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 /* Number of elements in an extent list */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 #define extent_list_num_els(el) GAP_ARRAY_NUM_ELS(el->start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718 /* Return the position at which EXTENT is located in the specified extent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 list (in the display order if ENDP is 0, in the e-order otherwise).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720 If the extent is not found, the position where the extent would
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 be inserted is returned. If ENDP is 0, the insertion would go after
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722 all other equal extents. If ENDP is not 0, the insertion would go
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 before all other equal extents. If FOUNDP is not 0, then whether
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 the extent was found will get written into it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727 extent_list_locate (Extent_List *el, EXTENT extent, int endp, int *foundp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 Gap_Array *ga = endp ? el->end : el->start;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730 int left = 0, right = GAP_ARRAY_NUM_ELS (ga);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731 int oldfoundpos, foundpos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 int found;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 while (left != right)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 /* RIGHT might not point to a valid extent (i.e. it's at the end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 of the list), so NEWPOS must round down. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738 unsigned int newpos = (left + right) >> 1;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
739 EXTENT e = EXTENT_GAP_ARRAY_AT (ga, (int) newpos);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
740
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741 if (endp ? EXTENT_E_LESS (e, extent) : EXTENT_LESS (e, extent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742 left = newpos+1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 right = newpos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747 /* Now we're at the beginning of all equal extents. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 found = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 oldfoundpos = foundpos = left;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750 while (foundpos < GAP_ARRAY_NUM_ELS (ga))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
752 EXTENT e = EXTENT_GAP_ARRAY_AT (ga, foundpos);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753 if (e == extent)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755 found = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758 if (!EXTENT_EQUAL (e, extent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760 foundpos++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762 if (foundp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763 *foundp = found;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764 if (found || !endp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 return foundpos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767 return oldfoundpos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 /* Return the position of the first extent that begins at or after POS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 (or ends at or after POS, if ENDP is not 0).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773 An out-of-range value for POS is allowed, and guarantees that the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774 position at the beginning or end of the extent list is returned. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777 extent_list_locate_from_pos (Extent_List *el, Memind pos, int endp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779 struct extent fake_extent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782 Note that if we search for [POS, POS], then we get the following:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784 -- if ENDP is 0, then all extents whose start position is <= POS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 lie before the returned position, and all extents whose start
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786 position is > POS lie at or after the returned position.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788 -- if ENDP is not 0, then all extents whose end position is < POS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789 lie before the returned position, and all extents whose end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790 position is >= POS lie at or after the returned position.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
791
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793 set_extent_start (&fake_extent, endp ? pos : pos-1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794 set_extent_end (&fake_extent, endp ? pos : pos-1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795 return extent_list_locate (el, &fake_extent, endp, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
798 /* Return the extent at POS. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800 static EXTENT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801 extent_list_at (Extent_List *el, Memind pos, int endp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803 Gap_Array *ga = endp ? el->end : el->start;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805 assert (pos >= 0 && pos < GAP_ARRAY_NUM_ELS (ga));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
806 return EXTENT_GAP_ARRAY_AT (ga, pos);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809 /* Insert an extent into an extent list. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812 extent_list_insert (Extent_List *el, EXTENT extent)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814 int pos, foundp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
816 pos = extent_list_locate (el, extent, 0, &foundp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817 assert (!foundp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
818 gap_array_insert_els (el->start, pos, &extent, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819 pos = extent_list_locate (el, extent, 1, &foundp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820 assert (!foundp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821 gap_array_insert_els (el->end, pos, &extent, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824 /* Delete an extent from an extent list. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827 extent_list_delete (Extent_List *el, EXTENT extent)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829 int pos, foundp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
831 pos = extent_list_locate (el, extent, 0, &foundp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832 assert (foundp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 gap_array_delete_els (el->start, pos, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834 pos = extent_list_locate (el, extent, 1, &foundp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835 assert (foundp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836 gap_array_delete_els (el->end, pos, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840 extent_list_delete_all (Extent_List *el)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842 gap_array_delete_els (el->start, 0, GAP_ARRAY_NUM_ELS (el->start));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843 gap_array_delete_els (el->end, 0, GAP_ARRAY_NUM_ELS (el->end));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
844 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846 static Extent_List_Marker *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847 extent_list_make_marker (Extent_List *el, int pos, int endp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849 Extent_List_Marker *m;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
851 if (extent_list_marker_freelist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
852 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853 m = extent_list_marker_freelist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 extent_list_marker_freelist = extent_list_marker_freelist->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 else
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
857 m = xnew (Extent_List_Marker);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859 m->m = gap_array_make_marker (endp ? el->end : el->start, pos);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
860 m->endp = endp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861 m->next = el->markers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862 el->markers = m;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
863 return m;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866 #define extent_list_move_marker(el, mkr, pos) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867 gap_array_move_marker((mkr)->endp ? (el)->end : (el)->start, (mkr)->m, pos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
868
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870 extent_list_delete_marker (Extent_List *el, Extent_List_Marker *m)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872 Extent_List_Marker *p, *prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
873
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
874 for (prev = 0, p = el->markers; p && p != m; prev = p, p = p->next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875 ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
876 assert (p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
877 if (prev)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
878 prev->next = p->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
879 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
880 el->markers = p->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
881 m->next = extent_list_marker_freelist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
882 extent_list_marker_freelist = m;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
883 gap_array_delete_marker (m->endp ? el->end : el->start, m->m);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
884 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
885
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
886 #define extent_list_marker_pos(el, mkr) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
887 gap_array_marker_pos ((mkr)->endp ? (el)->end : (el)->start, (mkr)->m)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
888
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
889 static Extent_List *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
890 allocate_extent_list (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
891 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
892 Extent_List *el = xnew (Extent_List);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
893 el->start = make_gap_array (sizeof(EXTENT));
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
894 el->end = make_gap_array (sizeof(EXTENT));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
895 el->markers = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
896 return el;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
897 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
898
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
899 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
900 free_extent_list (Extent_List *el)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
901 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
902 free_gap_array (el->start);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
903 free_gap_array (el->end);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
904 xfree (el);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
905 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
906
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
907
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
908 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
909 /* Auxiliary extent structure */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
910 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
911
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
912 static Lisp_Object
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
913 mark_extent_auxiliary (Lisp_Object obj, void (*markobj) (Lisp_Object))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
914 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
915 struct extent_auxiliary *data = XEXTENT_AUXILIARY (obj);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
916 markobj (data->begin_glyph);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
917 markobj (data->end_glyph);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
918 markobj (data->invisible);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
919 markobj (data->children);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
920 markobj (data->read_only);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
921 markobj (data->mouse_face);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
922 markobj (data->initial_redisplay_function);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
923 markobj (data->before_change_functions);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
924 markobj (data->after_change_functions);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
925 return data->parent;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
926 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
927
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
928 DEFINE_LRECORD_IMPLEMENTATION ("extent-auxiliary", extent_auxiliary,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
929 mark_extent_auxiliary, internal_object_printer,
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
930 0, 0, 0, struct extent_auxiliary);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
931
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
932 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
933 allocate_extent_auxiliary (EXTENT ext)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
934 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
935 Lisp_Object extent_aux;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
936 struct extent_auxiliary *data =
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
937 alloc_lcrecord_type (struct extent_auxiliary, &lrecord_extent_auxiliary);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
938
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
939 copy_lcrecord (data, &extent_auxiliary_defaults);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
940 XSETEXTENT_AUXILIARY (extent_aux, data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
941 ext->plist = Fcons (extent_aux, ext->plist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
942 ext->flags.has_aux = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
943 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
944
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
945
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
946 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
947 /* Extent info structure */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
948 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950 /* An extent-info structure consists of a list of the buffer or string's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951 extents and a "stack of extents" that lists all of the extents over
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
952 a particular position. The stack-of-extents info is used for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953 optimization purposes -- it basically caches some info that might
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
954 be expensive to compute. Certain otherwise hard computations are easy
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
955 given the stack of extents over a particular position, and if the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
956 stack of extents over a nearby position is known (because it was
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
957 calculated at some prior point in time), it's easy to move the stack
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
958 of extents to the proper position.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
960 Given that the stack of extents is an optimization, and given that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
961 it requires memory, a string's stack of extents is wiped out each
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962 time a garbage collection occurs. Therefore, any time you retrieve
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963 the stack of extents, it might not be there. If you need it to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
964 be there, use the _force version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
965
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
966 Similarly, a string may or may not have an extent_info structure.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
967 (Generally it won't if there haven't been any extents added to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
968 string.) So use the _force version if you need the extent_info
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
969 structure to be there. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
970
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
971 static struct stack_of_extents *allocate_soe (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
972 static void free_soe (struct stack_of_extents *soe);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973 static void soe_invalidate (Lisp_Object obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
975 static Lisp_Object
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
976 mark_extent_info (Lisp_Object obj, void (*markobj) (Lisp_Object))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977 {
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
978 struct extent_info *data = (struct extent_info *) XEXTENT_INFO (obj);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
979 int i;
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
980 Extent_List *list = data->extents;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
981
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
982 /* Vbuffer_defaults and Vbuffer_local_symbols are buffer-like
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
983 objects that are created specially and never have their extent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
984 list initialized (or rather, it is set to zero in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
985 nuke_all_buffer_slots()). However, these objects get
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986 garbage-collected so we have to deal.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988 (Also the list can be zero when we're dealing with a destroyed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
989 buffer.) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
990
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
991 if (list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
992 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
993 for (i = 0; i < extent_list_num_els (list); i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
994 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
995 struct extent *extent = extent_list_at (list, i, 0);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
996 Lisp_Object exobj;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
997
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
998 XSETEXTENT (exobj, extent);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
999 markobj (exobj);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1000 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1001 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1002
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1003 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1004 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1005
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1006 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1007 finalize_extent_info (void *header, int for_disksave)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1008 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1009 struct extent_info *data = (struct extent_info *) header;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1010
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1011 if (for_disksave)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1012 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1013
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1014 if (data->soe)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1015 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1016 free_soe (data->soe);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1017 data->soe = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1018 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1019 if (data->extents)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1020 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1021 free_extent_list (data->extents);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1022 data->extents = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1024 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1025
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
1026 DEFINE_LRECORD_IMPLEMENTATION ("extent-info", extent_info,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
1027 mark_extent_info, internal_object_printer,
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
1028 finalize_extent_info, 0, 0,
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
1029 struct extent_info);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
1030
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1031 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1032 allocate_extent_info (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1033 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
1034 Lisp_Object extent_info;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1035 struct extent_info *data =
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
1036 alloc_lcrecord_type (struct extent_info, &lrecord_extent_info);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1037
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1038 XSETEXTENT_INFO (extent_info, data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1039 data->extents = allocate_extent_list ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1040 data->soe = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1041 return extent_info;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1042 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1043
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1044 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1045 flush_cached_extent_info (Lisp_Object extent_info)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1046 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1047 struct extent_info *data = XEXTENT_INFO (extent_info);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1048
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1049 if (data->soe)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1050 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1051 free_soe (data->soe);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1052 data->soe = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1053 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1054 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1055
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1056
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1057 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1058 /* Buffer/string extent primitives */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1059 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1060
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1061 /* The functions in this section are the ONLY ones that should know
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1062 about the internal implementation of the extent lists. Other functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1063 should only know that there are two orderings on extents, the "display"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1064 order (sorted by start position, basically) and the e-order (sorted
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1065 by end position, basically), and that certain operations are provided
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1066 to manipulate the list. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1067
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1068 /* ------------------------------- */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1069 /* basic primitives */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1070 /* ------------------------------- */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1071
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1072 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1073 decode_buffer_or_string (Lisp_Object object)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1074 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1075 if (NILP (object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1076 XSETBUFFER (object, current_buffer);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
1077 else if (BUFFERP (object))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
1078 CHECK_LIVE_BUFFER (object);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
1079 else if (STRINGP (object))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
1080 ;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1081 else
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
1082 dead_wrong_type_argument (Qbuffer_or_string_p, object);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
1083
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1084 return object;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
1085 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1086
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1087 EXTENT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1088 extent_ancestor_1 (EXTENT e)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1089 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1090 while (e->flags.has_parent)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1091 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1092 /* There should be no circularities except in case of a logic
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1093 error somewhere in the extent code */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1094 e = XEXTENT (XEXTENT_AUXILIARY (XCAR (e->plist))->parent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1095 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1096 return e;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1097 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1098
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
1099 /* Given an extent object (string or buffer or nil), return its extent info.
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
1100 This may be 0 for a string. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1101
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1102 static struct extent_info *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1103 buffer_or_string_extent_info (Lisp_Object object)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1104 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1105 if (STRINGP (object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1106 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1107 Lisp_Object plist = XSTRING (object)->plist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1108 if (!CONSP (plist) || !EXTENT_INFOP (XCAR (plist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1109 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1110 return XEXTENT_INFO (XCAR (plist));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1111 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1112 else if (NILP (object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1114 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1115 return XEXTENT_INFO (XBUFFER (object)->extent_info);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1116 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1117
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1118 /* Given a string or buffer, return its extent list. This may be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1119 0 for a string. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1120
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1121 static Extent_List *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1122 buffer_or_string_extent_list (Lisp_Object object)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1123 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1124 struct extent_info *info = buffer_or_string_extent_info (object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1125
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1126 if (!info)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1127 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1128 return info->extents;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1129 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1130
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1131 /* Given a string or buffer, return its extent info. If it's not there,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1132 create it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1133
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1134 static struct extent_info *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1135 buffer_or_string_extent_info_force (Lisp_Object object)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1136 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1137 struct extent_info *info = buffer_or_string_extent_info (object);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
1138
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1139 if (!info)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1140 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1141 Lisp_Object extent_info;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1142
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1143 assert (STRINGP (object)); /* should never happen for buffers --
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1144 the only buffers without an extent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1145 info are those after finalization,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1146 destroyed buffers, or special
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1147 Lisp-inaccessible buffer objects. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1148 extent_info = allocate_extent_info ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1149 XSTRING (object)->plist = Fcons (extent_info, XSTRING (object)->plist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1150 return XEXTENT_INFO (extent_info);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1151 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1152
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1153 return info;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1154 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1155
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1156 /* Detach all the extents in OBJECT. Called from redisplay. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1157
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1158 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1159 detach_all_extents (Lisp_Object object)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1160 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1161 struct extent_info *data = buffer_or_string_extent_info (object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1162
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1163 if (data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1164 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1165 if (data->extents)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1166 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1167 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1168
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1169 for (i = 0; i < extent_list_num_els (data->extents); i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1170 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1171 EXTENT e = extent_list_at (data->extents, i, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1172 /* No need to do detach_extent(). Just nuke the damn things,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1173 which results in the equivalent but faster. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1174 set_extent_start (e, -1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1175 set_extent_end (e, -1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1176 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1177 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1178
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1179 /* But we need to clear all the lists containing extents or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1180 havoc will result. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1181 extent_list_delete_all (data->extents);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1182 soe_invalidate (object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1183 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1184 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1185
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1186
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1187 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1188 init_buffer_extents (struct buffer *b)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1189 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1190 b->extent_info = allocate_extent_info ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1191 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1192
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1193 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1194 uninit_buffer_extents (struct buffer *b)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1195 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1196 struct extent_info *data = XEXTENT_INFO (b->extent_info);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1197
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1198 /* Don't destroy the extents here -- there may still be children
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1199 extents pointing to the extents. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1200 detach_all_extents (make_buffer (b));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1201 finalize_extent_info (data, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1202 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1203
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1204 /* Retrieve the extent list that an extent is a member of; the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1205 return value will never be 0 except in destroyed buffers (in which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1206 case the only extents that can refer to this buffer are detached
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1207 ones). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1208
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1209 #define extent_extent_list(e) buffer_or_string_extent_list (extent_object (e))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1210
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1211 /* ------------------------------- */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1212 /* stack of extents */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1213 /* ------------------------------- */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1214
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1215 #ifdef ERROR_CHECK_EXTENTS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1216
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1217 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1218 sledgehammer_extent_check (Lisp_Object object)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1219 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1220 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1221 int endp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1222 Extent_List *el = buffer_or_string_extent_list (object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1223 struct buffer *buf = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1224
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1225 if (!el)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1226 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1227
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1228 if (BUFFERP (object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1229 buf = XBUFFER (object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1230
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1231 for (endp = 0; endp < 2; endp++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1232 for (i = 1; i < extent_list_num_els (el); i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1233 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1234 EXTENT e1 = extent_list_at (el, i-1, endp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1235 EXTENT e2 = extent_list_at (el, i, endp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1236 if (buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1237 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1238 assert (extent_start (e1) <= buf->text->gpt ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1239 extent_start (e1) > buf->text->gpt + buf->text->gap_size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1240 assert (extent_end (e1) <= buf->text->gpt ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1241 extent_end (e1) > buf->text->gpt + buf->text->gap_size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1242 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1243 assert (extent_start (e1) <= extent_end (e1));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1244 assert (endp ? (EXTENT_E_LESS_EQUAL (e1, e2)) :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1245 (EXTENT_LESS_EQUAL (e1, e2)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1246 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1247 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1248
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1249 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1250
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1251 static Stack_Of_Extents *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1252 buffer_or_string_stack_of_extents (Lisp_Object object)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1253 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1254 struct extent_info *info = buffer_or_string_extent_info (object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1255 if (!info)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1256 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1257 return info->soe;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1258 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1259
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1260 static Stack_Of_Extents *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1261 buffer_or_string_stack_of_extents_force (Lisp_Object object)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1262 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1263 struct extent_info *info = buffer_or_string_extent_info_force (object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1264 if (!info->soe)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1265 info->soe = allocate_soe ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1266 return info->soe;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1267 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1268
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1269 /* #define SOE_DEBUG */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1270
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1271 #ifdef SOE_DEBUG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1272
177
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 175
diff changeset
1273 static void print_extent_1 (char *buf, Lisp_Object extent);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1274
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1275 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1276 print_extent_2 (EXTENT e)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1277 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1278 Lisp_Object extent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1279 char buf[200];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1280
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1281 XSETEXTENT (extent, e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1282 print_extent_1 (buf, extent);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
1283 fputs (buf, stdout);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1284 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1285
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1286 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1287 soe_dump (Lisp_Object obj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1288 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1289 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1290 Stack_Of_Extents *soe = buffer_or_string_stack_of_extents (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1291 Extent_List *sel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1292 int endp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1293
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1294 if (!soe)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1295 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1296 printf ("No SOE");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1297 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1298 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1299 sel = soe->extents;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1300 printf ("SOE pos is %d (memind %d)\n",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1301 soe->pos < 0 ? soe->pos :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1302 buffer_or_string_memind_to_bytind (obj, soe->pos),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1303 soe->pos);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1304 for (endp = 0; endp < 2; endp++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1305 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1306 printf (endp ? "SOE end:" : "SOE start:");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1307 for (i = 0; i < extent_list_num_els (sel); i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1308 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1309 EXTENT e = extent_list_at (sel, i, endp);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
1310 putchar ('\t');
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1311 print_extent_2 (e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1312 }
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
1313 putchar ('\n');
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1314 }
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
1315 putchar ('\n');
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1316 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1317
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1318 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1319
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1320 /* Insert EXTENT into OBJ's stack of extents, if necessary. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1321
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1322 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1323 soe_insert (Lisp_Object obj, EXTENT extent)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1324 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1325 Stack_Of_Extents *soe = buffer_or_string_stack_of_extents (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1326
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1327 #ifdef SOE_DEBUG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1328 printf ("Inserting into SOE: ");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1329 print_extent_2 (extent);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
1330 putchar ('\n');
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1331 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1332 if (!soe || soe->pos < extent_start (extent) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1333 soe->pos > extent_end (extent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1334 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1335 #ifdef SOE_DEBUG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1336 printf ("(not needed)\n\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1337 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1338 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1339 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1340 extent_list_insert (soe->extents, extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1341 #ifdef SOE_DEBUG
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
1342 puts ("SOE afterwards is:");
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1343 soe_dump (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1344 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1345 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1346
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1347 /* Delete EXTENT from OBJ's stack of extents, if necessary. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1348
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1349 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1350 soe_delete (Lisp_Object obj, EXTENT extent)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1351 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1352 Stack_Of_Extents *soe = buffer_or_string_stack_of_extents (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1353
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1354 #ifdef SOE_DEBUG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1355 printf ("Deleting from SOE: ");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1356 print_extent_2 (extent);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
1357 putchar ('\n');
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1358 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1359 if (!soe || soe->pos < extent_start (extent) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1360 soe->pos > extent_end (extent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1361 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1362 #ifdef SOE_DEBUG
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
1363 puts ("(not needed)\n");
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1364 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1365 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1366 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1367 extent_list_delete (soe->extents, extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1368 #ifdef SOE_DEBUG
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
1369 puts ("SOE afterwards is:");
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1370 soe_dump (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1371 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1372 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1373
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1374 /* Move OBJ's stack of extents to lie over the specified position. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1375
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1376 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1377 soe_move (Lisp_Object obj, Memind pos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1378 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1379 Stack_Of_Extents *soe = buffer_or_string_stack_of_extents_force (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1380 Extent_List *sel = soe->extents;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1381 int numsoe = extent_list_num_els (sel);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1382 Extent_List *bel = buffer_or_string_extent_list (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1383 int direction;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1384 int endp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1385
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1386 #ifdef ERROR_CHECK_EXTENTS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1387 assert (bel);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1388 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1389
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1390 #ifdef SOE_DEBUG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1391 printf ("Moving SOE from %d (memind %d) to %d (memind %d)\n",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1392 soe->pos < 0 ? soe->pos :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1393 buffer_or_string_memind_to_bytind (obj, soe->pos), soe->pos,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1394 buffer_or_string_memind_to_bytind (obj, pos), pos);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1395 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1396 if (soe->pos < pos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1397 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1398 direction = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1399 endp = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1400 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1401 else if (soe->pos > pos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1402 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1403 direction = -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1404 endp = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1405 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1406 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1407 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1408 #ifdef SOE_DEBUG
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
1409 puts ("(not needed)\n");
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1410 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1411 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1412 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1413
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1414 /* For DIRECTION = 1: Any extent that overlaps POS is either in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1415 SOE (if the extent starts at or before SOE->POS) or is greater
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1416 (in the display order) than any extent in the SOE (if it starts
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1417 after SOE->POS).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1418
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1419 For DIRECTION = -1: Any extent that overlaps POS is either in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1420 SOE (if the extent ends at or after SOE->POS) or is less (in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1421 e-order) than any extent in the SOE (if it ends before SOE->POS).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1422
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1423 We proceed in two stages:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1424
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1425 1) delete all extents in the SOE that don't overlap POS.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1426 2) insert all extents into the SOE that start (or end, when
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1427 DIRECTION = -1) in (SOE->POS, POS] and that overlap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1428 POS. (Don't include SOE->POS in the range because those
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1429 extents would already be in the SOE.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1430 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1431
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1432 /* STAGE 1. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1433
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1434 if (numsoe > 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1435 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1436 /* Delete all extents in the SOE that don't overlap POS.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1437 This is all extents that end before (or start after,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1438 if DIRECTION = -1) POS.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1439 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1440
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1441 /* Deleting extents from the SOE is tricky because it changes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1442 the positions of extents. If we are deleting in the forward
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1443 direction we have to call extent_list_at() on the same position
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1444 over and over again because positions after the deleted element
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1445 get shifted back by 1. To make life simplest, we delete forward
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1446 irrespective of DIRECTION.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1447 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1448 int start, end;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1449 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1450
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1451 if (direction > 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1452 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1453 start = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1454 end = extent_list_locate_from_pos (sel, pos, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1455 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1456 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1457 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1458 start = extent_list_locate_from_pos (sel, pos+1, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1459 end = numsoe;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1460 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1461
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1462 for (i = start; i < end; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1463 extent_list_delete (sel, extent_list_at (sel, start /* see above */,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1464 !endp));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1465 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1466
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1467 /* STAGE 2. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1468
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1469 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1470 int start_pos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1471
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1472 if (direction < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1473 start_pos = extent_list_locate_from_pos (bel, soe->pos, endp) - 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1474 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1475 start_pos = extent_list_locate_from_pos (bel, soe->pos + 1, endp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1476
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1477 for (; start_pos >= 0 && start_pos < extent_list_num_els (bel);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1478 start_pos += direction)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1479 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1480 EXTENT e = extent_list_at (bel, start_pos, endp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1481 if ((direction > 0) ?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1482 (extent_start (e) > pos) :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1483 (extent_end (e) < pos))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1484 break; /* All further extents lie on the far side of POS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1485 and thus can't overlap. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1486 if ((direction > 0) ?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1487 (extent_end (e) >= pos) :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1488 (extent_start (e) <= pos))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1489 extent_list_insert (sel, e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1490 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1491 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1492
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1493 soe->pos = pos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1494 #ifdef SOE_DEBUG
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
1495 puts ("SOE afterwards is:");
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1496 soe_dump (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1497 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1498 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1499
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1500 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1501 soe_invalidate (Lisp_Object obj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1502 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1503 Stack_Of_Extents *soe = buffer_or_string_stack_of_extents (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1504
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1505 if (soe)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1506 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1507 extent_list_delete_all (soe->extents);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1508 soe->pos = -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1509 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1510 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1511
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1512 static struct stack_of_extents *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1513 allocate_soe (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1514 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1515 struct stack_of_extents *soe = xnew_and_zero (struct stack_of_extents);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1516 soe->extents = allocate_extent_list ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1517 soe->pos = -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1518 return soe;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1519 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1520
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1521 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1522 free_soe (struct stack_of_extents *soe)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1523 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1524 free_extent_list (soe->extents);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1525 xfree (soe);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1526 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1527
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1528 /* ------------------------------- */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1529 /* other primitives */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1530 /* ------------------------------- */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1531
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1532 /* Return the start (endp == 0) or end (endp == 1) of an extent as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1533 a byte index. If you want the value as a memory index, use
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1534 extent_endpoint(). If you want the value as a buffer position,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1535 use extent_endpoint_bufpos(). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1536
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
1537 static Bytind
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1538 extent_endpoint_bytind (EXTENT extent, int endp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1539 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1540 assert (EXTENT_LIVE_P (extent));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1541 assert (!extent_detached_p (extent));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1542 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
1543 Memind i = (endp) ? (extent_end (extent)) :
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
1544 (extent_start (extent));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1545 Lisp_Object obj = extent_object (extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1546 return buffer_or_string_memind_to_bytind (obj, i);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1547 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1548 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1549
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1550 static Bufpos
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1551 extent_endpoint_bufpos (EXTENT extent, int endp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1552 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1553 assert (EXTENT_LIVE_P (extent));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1554 assert (!extent_detached_p (extent));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1555 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
1556 Memind i = (endp) ? (extent_end (extent)) :
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
1557 (extent_start (extent));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1558 Lisp_Object obj = extent_object (extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1559 return buffer_or_string_memind_to_bufpos (obj, i);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1560 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1561 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1562
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1563 /* A change to an extent occurred that will change the display, so
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1564 notify redisplay. Maybe also recurse over all the extent's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1565 descendants. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1566
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1567 static void
110
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 100
diff changeset
1568 extent_changed_for_redisplay (EXTENT extent, int descendants_too,
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 100
diff changeset
1569 int invisibility_change)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1570 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1571 Lisp_Object object;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1572 Lisp_Object rest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1573
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1574 /* we could easily encounter a detached extent while traversing the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1575 children, but we should never be able to encounter a dead extent. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1576 assert (EXTENT_LIVE_P (extent));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1577
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1578 if (descendants_too)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1579 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1580 Lisp_Object children = extent_children (extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1581
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1582 if (!NILP (children))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1583 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1584 /* first mark all of the extent's children. We will lose big-time
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1585 if there are any circularities here, so we sure as hell better
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1586 ensure that there aren't. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1587 LIST_LOOP (rest, XWEAK_LIST_LIST (children))
110
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 100
diff changeset
1588 extent_changed_for_redisplay (XEXTENT (XCAR (rest)), 1,
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 100
diff changeset
1589 invisibility_change);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1590 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1591 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1592
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1593 /* now mark the extent itself. */
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
1594
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1595 object = extent_object (extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1596
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
1597 if (!BUFFERP (object) || extent_detached_p (extent))
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
1598 /* #### Can changes to string extents affect redisplay?
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
1599 I will have to think about this. What about string glyphs?
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
1600 Things in the modeline? etc. */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
1601 /* #### changes to string extents can certainly affect redisplay
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
1602 if the extent is in some generated-modeline-string: when
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
1603 we change an extent in generated-modeline-string, this changes
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
1604 its parent, which is in `modeline-format', so we should
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
1605 force the modeline to be updated. But how to determine whether
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
1606 a string is a `generated-modeline-string'? Looping through
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
1607 all buffers is not very efficient. Should we add all
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
1608 `generated-modeline-string' strings to a hash table?
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
1609 Maybe efficiency is not the greatest concern here and there's
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
1610 no big loss in looping over the buffers. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1611 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1612
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
1613 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
1614 struct buffer *b;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
1615 b = XBUFFER (object);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
1616 BUF_FACECHANGE (b)++;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
1617 MARK_EXTENTS_CHANGED;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
1618 if (invisibility_change)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
1619 MARK_CLIP_CHANGED;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
1620 buffer_extent_signal_changed_region (b,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
1621 extent_endpoint_bufpos (extent, 0),
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
1622 extent_endpoint_bufpos (extent, 1));
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
1623 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1624 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1625
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 177
diff changeset
1626 /* A change to an extent occurred that might affect redisplay.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1627 This is called when properties such as the endpoints, the layout,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1628 or the priority changes. Redisplay will be affected only if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1629 the extent has any displayable attributes. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1630
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1631 static void
110
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 100
diff changeset
1632 extent_maybe_changed_for_redisplay (EXTENT extent, int descendants_too,
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 100
diff changeset
1633 int invisibility_change)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1634 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1635 /* Retrieve the ancestor for efficiency */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1636 EXTENT anc = extent_ancestor (extent);
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 177
diff changeset
1637 if (!NILP (extent_face (anc)) ||
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 177
diff changeset
1638 !NILP (extent_begin_glyph (anc)) ||
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 177
diff changeset
1639 !NILP (extent_end_glyph (anc)) ||
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 177
diff changeset
1640 !NILP (extent_mouse_face (anc)) ||
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 177
diff changeset
1641 !NILP (extent_invisible (anc)) ||
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
1642 !NILP (extent_initial_redisplay_function (anc)) ||
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 177
diff changeset
1643 invisibility_change)
110
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 100
diff changeset
1644 extent_changed_for_redisplay (extent, descendants_too,
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 100
diff changeset
1645 invisibility_change);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1646 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1647
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1648 static EXTENT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1649 make_extent_detached (Lisp_Object object)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1650 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1651 EXTENT extent = allocate_extent ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1652
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1653 assert (NILP (object) || STRINGP (object) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1654 (BUFFERP (object) && BUFFER_LIVE_P (XBUFFER (object))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1655 extent_object (extent) = object;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1656 /* Now make sure the extent info exists. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1657 if (!NILP (object))
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 177
diff changeset
1658 buffer_or_string_extent_info_force (object);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1659 return extent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1660 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1661
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1662 /* A "real" extent is any extent other than the internal (not-user-visible)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1663 extents used by `map-extents'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1664
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1665 static EXTENT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1666 real_extent_at_forward (Extent_List *el, int pos, int endp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1667 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1668 for (; pos < extent_list_num_els (el); pos++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1669 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1670 EXTENT e = extent_list_at (el, pos, endp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1671 if (!extent_internal_p (e))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1672 return e;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1673 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1674 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1675 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1676
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1677 static EXTENT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1678 real_extent_at_backward (Extent_List *el, int pos, int endp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1679 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1680 for (; pos >= 0; pos--)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1681 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1682 EXTENT e = extent_list_at (el, pos, endp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1683 if (!extent_internal_p (e))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1684 return e;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1685 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1686 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1687 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1688
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1689 static EXTENT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1690 extent_first (Lisp_Object obj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1691 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1692 Extent_List *el = buffer_or_string_extent_list (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1693
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1694 if (!el)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1695 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1696 return real_extent_at_forward (el, 0, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1697 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1698
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1699 #ifdef DEBUG_XEMACS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1700 static EXTENT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1701 extent_e_first (Lisp_Object obj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1702 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1703 Extent_List *el = buffer_or_string_extent_list (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1704
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1705 if (!el)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1706 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1707 return real_extent_at_forward (el, 0, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1708 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1709 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1710
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1711 static EXTENT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1712 extent_next (EXTENT e)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1713 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1714 Extent_List *el = extent_extent_list (e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1715 int foundp;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
1716 int pos = extent_list_locate (el, e, 0, &foundp);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1717 assert (foundp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1718 return real_extent_at_forward (el, pos+1, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1719 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1720
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1721 #ifdef DEBUG_XEMACS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1722 static EXTENT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1723 extent_e_next (EXTENT e)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1724 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1725 Extent_List *el = extent_extent_list (e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1726 int foundp;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
1727 int pos = extent_list_locate (el, e, 1, &foundp);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1728 assert (foundp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1729 return real_extent_at_forward (el, pos+1, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1730 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1731 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1732
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1733 static EXTENT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1734 extent_last (Lisp_Object obj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1735 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1736 Extent_List *el = buffer_or_string_extent_list (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1737
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1738 if (!el)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1739 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1740 return real_extent_at_backward (el, extent_list_num_els (el) - 1, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1741 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1742
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1743 #ifdef DEBUG_XEMACS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1744 static EXTENT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1745 extent_e_last (Lisp_Object obj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1746 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1747 Extent_List *el = buffer_or_string_extent_list (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1748
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1749 if (!el)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1750 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1751 return real_extent_at_backward (el, extent_list_num_els (el) - 1, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1752 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1753 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1754
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1755 static EXTENT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1756 extent_previous (EXTENT e)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1757 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1758 Extent_List *el = extent_extent_list (e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1759 int foundp;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
1760 int pos = extent_list_locate (el, e, 0, &foundp);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1761 assert (foundp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1762 return real_extent_at_backward (el, pos-1, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1763 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1764
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1765 #ifdef DEBUG_XEMACS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1766 static EXTENT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1767 extent_e_previous (EXTENT e)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1768 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1769 Extent_List *el = extent_extent_list (e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1770 int foundp;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
1771 int pos = extent_list_locate (el, e, 1, &foundp);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1772 assert (foundp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1773 return real_extent_at_backward (el, pos-1, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1774 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1775 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1776
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1777 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1778 extent_attach (EXTENT extent)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1779 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1780 Extent_List *el = extent_extent_list (extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1781
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1782 extent_list_insert (el, extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1783 soe_insert (extent_object (extent), extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1784 /* only this extent changed */
110
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 100
diff changeset
1785 extent_maybe_changed_for_redisplay (extent, 0,
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 100
diff changeset
1786 !NILP (extent_invisible (extent)));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1787 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1788
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1789 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1790 extent_detach (EXTENT extent)
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
1791 {
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1792 Extent_List *el;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1793
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1794 if (extent_detached_p (extent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1795 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1796 el = extent_extent_list (extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1797
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1798 /* call this before messing with the extent. */
110
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 100
diff changeset
1799 extent_maybe_changed_for_redisplay (extent, 0,
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 100
diff changeset
1800 !NILP (extent_invisible (extent)));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1801 extent_list_delete (el, extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1802 soe_delete (extent_object (extent), extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1803 set_extent_start (extent, -1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1804 set_extent_end (extent, -1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1805 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1806
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1807 /* ------------------------------- */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1808 /* map-extents et al. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1809 /* ------------------------------- */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1810
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1811 /* Returns true iff map_extents() would visit the given extent.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1812 See the comments at map_extents() for info on the overlap rule.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1813 Assumes that all validation on the extent and buffer positions has
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1814 already been performed (see Fextent_in_region_p ()).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1815 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1816 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1817 extent_in_region_p (EXTENT extent, Bytind from, Bytind to,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1818 unsigned int flags)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1819 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1820 Lisp_Object obj = extent_object (extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1821 Endpoint_Index start, end, exs, exe;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1822 int start_open, end_open;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1823 unsigned int all_extents_flags = flags & ME_ALL_EXTENTS_MASK;
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1824 unsigned int in_region_flags = flags & ME_IN_REGION_MASK;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1825 int retval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1826
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1827 /* A zero-length region is treated as closed-closed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1828 if (from == to)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1829 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1830 flags |= ME_END_CLOSED;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1831 flags &= ~ME_START_OPEN;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1832 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1833
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1834 /* So is a zero-length extent. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1835 if (extent_start (extent) == extent_end (extent))
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1836 start_open = 0, end_open = 0;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1837 /* `all_extents_flags' will almost always be zero. */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1838 else if (all_extents_flags == 0)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1839 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1840 start_open = extent_start_open_p (extent);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1841 end_open = extent_end_open_p (extent);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1842 }
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1843 else
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1844 switch (all_extents_flags)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1845 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1846 case ME_ALL_EXTENTS_CLOSED: start_open = 0, end_open = 0; break;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1847 case ME_ALL_EXTENTS_OPEN: start_open = 1, end_open = 1; break;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1848 case ME_ALL_EXTENTS_CLOSED_OPEN: start_open = 0, end_open = 1; break;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1849 case ME_ALL_EXTENTS_OPEN_CLOSED: start_open = 1, end_open = 0; break;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1850 default: abort(); break;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1851 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1852
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1853 start = buffer_or_string_bytind_to_startind (obj, from,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1854 flags & ME_START_OPEN);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1855 end = buffer_or_string_bytind_to_endind (obj, to, ! (flags & ME_END_CLOSED));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1856 exs = memind_to_startind (extent_start (extent), start_open);
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1857 exe = memind_to_endind (extent_end (extent), end_open);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1858
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1859 /* It's easy to determine whether an extent lies *outside* the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1860 region -- just determine whether it's completely before
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1861 or completely after the region. Reject all such extents, so
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1862 we're now left with only the extents that overlap the region.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1863 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1864
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1865 if (exs > end || exe < start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1866 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1867
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1868 /* See if any further restrictions are called for. */
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1869 /* in_region_flags will almost always be zero. */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1870 if (in_region_flags == 0)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1871 retval = 1;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1872 else
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1873 switch (in_region_flags)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1874 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1875 case ME_START_IN_REGION:
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1876 retval = start <= exs && exs <= end; break;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1877 case ME_END_IN_REGION:
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1878 retval = start <= exe && exe <= end; break;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1879 case ME_START_AND_END_IN_REGION:
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1880 retval = start <= exs && exe <= end; break;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1881 case ME_START_OR_END_IN_REGION:
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1882 retval = (start <= exs && exs <= end) || (start <= exe && exe <= end);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1883 break;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1884 default:
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1885 abort(); break;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1886 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1887 return flags & ME_NEGATE_IN_REGION ? !retval : retval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1888 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1889
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1890 struct map_extents_struct
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1891 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1892 Extent_List *el;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1893 Extent_List_Marker *mkr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1894 EXTENT range;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1895 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1896
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1897 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1898 map_extents_unwind (Lisp_Object obj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1899 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
1900 struct map_extents_struct *closure =
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1901 (struct map_extents_struct *) get_opaque_ptr (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1902 free_opaque_ptr (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1903 if (closure->range)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1904 extent_detach (closure->range);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1905 if (closure->mkr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1906 extent_list_delete_marker (closure->el, closure->mkr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1907 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1908 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1909
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1910 /* This is the guts of `map-extents' and the other functions that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1911 map over extents. In theory the operation of this function is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1912 simple: just figure out what extents we're mapping over, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1913 call the function on each one of them in the range. Unfortunately
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1914 there are a wide variety of things that the mapping function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1915 might do, and we have to be very tricky to avoid getting messed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1916 up. Furthermore, this function needs to be very fast (it is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1917 called multiple times every time text is inserted or deleted
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1918 from a buffer), and so we can't always afford the overhead of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1919 dealing with all the possible things that the mapping function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1920 might do; thus, there are many flags that can be specified
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1921 indicating what the mapping function might or might not do.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1922
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1923 The result of all this is that this is the most complicated
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1924 function in this file. Change it at your own risk!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1925
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1926 A potential simplification to the logic below is to determine
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1927 all the extents that the mapping function should be called on
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1928 before any calls are actually made and save them in an array.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1929 That introduces its own complications, however (the array
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1930 needs to be marked for garbage-collection, and a static array
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1931 cannot be used because map_extents() needs to be reentrant).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1932 Furthermore, the results might be a little less sensible than
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1933 the logic below. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1934
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1935
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1936 static void
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
1937 map_extents_bytind (Bytind from, Bytind to, map_extents_fun fn, void *arg,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1938 Lisp_Object obj, EXTENT after, unsigned int flags)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1939 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1940 Memind st, en; /* range we're mapping over */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1941 EXTENT range = 0; /* extent for this, if ME_MIGHT_MODIFY_TEXT */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1942 Extent_List *el = 0; /* extent list we're iterating over */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1943 Extent_List_Marker *posm = 0; /* marker for extent list,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1944 if ME_MIGHT_MODIFY_EXTENTS */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1945 /* count and struct for unwind-protect, if ME_MIGHT_THROW */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1946 int count = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1947 struct map_extents_struct closure;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1948
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1949 #ifdef ERROR_CHECK_EXTENTS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1950 assert (from <= to);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1951 assert (from >= buffer_or_string_absolute_begin_byte (obj) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1952 from <= buffer_or_string_absolute_end_byte (obj) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1953 to >= buffer_or_string_absolute_begin_byte (obj) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1954 to <= buffer_or_string_absolute_end_byte (obj));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1955 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1956
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1957 if (after)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1958 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1959 assert (EQ (obj, extent_object (after)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1960 assert (!extent_detached_p (after));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1961 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1962
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
1963 el = buffer_or_string_extent_list (obj);
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
1964 if (!el || !extent_list_num_els(el))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1965 return;
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
1966 el = 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1967
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1968 st = buffer_or_string_bytind_to_memind (obj, from);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1969 en = buffer_or_string_bytind_to_memind (obj, to);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1970
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1971 if (flags & ME_MIGHT_MODIFY_TEXT)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1972 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1973 /* The mapping function might change the text in the buffer,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1974 so make an internal extent to hold the range we're mapping
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1975 over. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1976 range = make_extent_detached (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1977 set_extent_start (range, st);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1978 set_extent_end (range, en);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1979 range->flags.start_open = flags & ME_START_OPEN;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1980 range->flags.end_open = !(flags & ME_END_CLOSED);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1981 range->flags.internal = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1982 range->flags.detachable = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1983 extent_attach (range);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1984 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1985
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1986 if (flags & ME_MIGHT_THROW)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1987 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1988 /* The mapping function might throw past us so we need to use an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1989 unwind_protect() to eliminate the internal extent and range
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1990 that we use. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1991 count = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1992 closure.range = range;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1993 closure.mkr = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1994 record_unwind_protect (map_extents_unwind,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1995 make_opaque_ptr (&closure));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1996 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1997
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1998 /* ---------- Figure out where we start and what direction
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1999 we move in. This is the trickiest part of this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2000 function. ---------- */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2001
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2002 /* If ME_START_IN_REGION, ME_END_IN_REGION or ME_START_AND_END_IN_REGION
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2003 was specified and ME_NEGATE_IN_REGION was not specified, our job
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2004 is simple because of the presence of the display order and e-order.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2005 (Note that theoretically do something similar for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2006 ME_START_OR_END_IN_REGION, but that would require more trickiness
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2007 than it's worth to avoid hitting the same extent twice.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2008
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2009 In the general case, all the extents that overlap a range can be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2010 divided into two classes: those whose start position lies within
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2011 the range (including the range's end but not including the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2012 range's start), and those that overlap the start position,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2013 i.e. those in the SOE for the start position. Or equivalently,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2014 the extents can be divided into those whose end position lies
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2015 within the range and those in the SOE for the end position. Note
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2016 that for this purpose we treat both the range and all extents in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2017 the buffer as closed on both ends. If this is not what the ME_
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2018 flags specified, then we've mapped over a few too many extents,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2019 but no big deal because extent_in_region_p() will filter them
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2020 out. Ideally, we could move the SOE to the closer of the range's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2021 two ends and work forwards or backwards from there. However, in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2022 order to make the semantics of the AFTER argument work out, we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2023 have to always go in the same direction; so we choose to always
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2024 move the SOE to the start position.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2025
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2026 When it comes time to do the SOE stage, we first call soe_move()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2027 so that the SOE gets set up. Note that the SOE might get
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2028 changed while we are mapping over its contents. If we can
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2029 guarantee that the SOE won't get moved to a new position, we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2030 simply need to put a marker in the SOE and we will track deletions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2031 and insertions of extents in the SOE. If the SOE might get moved,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2032 however (this would happen as a result of a recursive invocation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2033 of map-extents or a call to a redisplay-type function), then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2034 trying to track its changes is hopeless, so we just keep a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2035 marker to the first (or last) extent in the SOE and use that as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2036 our bound.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2037
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2038 Finally, if DONT_USE_SOE is defined, we don't use the SOE at all
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2039 and instead just map from the beginning of the buffer. This is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2040 used for testing purposes and allows the SOE to be calculated
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2041 using map_extents() instead of the other way around. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2042
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2043 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2044 int range_flag; /* ME_*_IN_REGION subset of flags */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2045 int do_soe_stage = 0; /* Are we mapping over the SOE? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2046 /* Does the range stage map over start or end positions? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2047 int range_endp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2048 /* If type == 0, we include the start position in the range stage mapping.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2049 If type == 1, we exclude the start position in the range stage mapping.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2050 If type == 2, we begin at range_start_pos, an extent-list position.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2051 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2052 int range_start_type = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2053 int range_start_pos = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2054 int stage;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2055
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2056 range_flag = flags & ME_IN_REGION_MASK;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2057 if ((range_flag == ME_START_IN_REGION ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2058 range_flag == ME_START_AND_END_IN_REGION) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2059 !(flags & ME_NEGATE_IN_REGION))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2060 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2061 /* map over start position in [range-start, range-end]. No SOE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2062 stage. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2063 range_endp = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2064 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2065 else if (range_flag == ME_END_IN_REGION && !(flags & ME_NEGATE_IN_REGION))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2066 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2067 /* map over end position in [range-start, range-end]. No SOE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2068 stage. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2069 range_endp = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2070 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2071 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2072 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2073 /* Need to include the SOE extents. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2074 #ifdef DONT_USE_SOE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2075 /* Just brute-force it: start from the beginning. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2076 range_endp = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2077 range_start_type = 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2078 range_start_pos = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2079 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2080 Stack_Of_Extents *soe = buffer_or_string_stack_of_extents_force (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2081 int numsoe;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
2082
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2083 /* Move the SOE to the closer end of the range. This dictates
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2084 whether we map over start positions or end positions. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2085 range_endp = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2086 soe_move (obj, st);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2087 numsoe = extent_list_num_els (soe->extents);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2088 if (numsoe)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2089 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2090 if (flags & ME_MIGHT_MOVE_SOE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2091 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2092 int foundp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2093 /* Can't map over SOE, so just extend range to cover the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2094 SOE. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2095 EXTENT e = extent_list_at (soe->extents, 0, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2096 range_start_pos =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2097 extent_list_locate (buffer_or_string_extent_list (obj), e, 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2098 &foundp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2099 assert (foundp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2100 range_start_type = 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2101 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2102 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2103 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2104 /* We can map over the SOE. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2105 do_soe_stage = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2106 range_start_type = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2107 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2108 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2109 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2110 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2111 /* No extents in the SOE to map over, so we act just as if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2112 ME_START_IN_REGION or ME_END_IN_REGION was specified.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2113 RANGE_ENDP already specified so no need to do anything else. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2114 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2115 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2116 #endif
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
2117
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2118 /* ---------- Now loop over the extents. ---------- */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2119
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2120 /* We combine the code for the two stages because much of it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2121 overlaps. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2122 for (stage = 0; stage < 2; stage++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2123 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2124 int pos = 0; /* Position in extent list */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2125
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2126 /* First set up start conditions */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2127 if (stage == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2128 { /* The SOE stage */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2129 if (!do_soe_stage)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2130 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2131 el = buffer_or_string_stack_of_extents_force (obj)->extents;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2132 /* We will always be looping over start extents here. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2133 assert (!range_endp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2134 pos = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2135 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2136 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2137 { /* The range stage */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2138 el = buffer_or_string_extent_list (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2139 switch (range_start_type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2140 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2141 case 0:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2142 pos = extent_list_locate_from_pos (el, st, range_endp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2143 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2144 case 1:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2145 pos = extent_list_locate_from_pos (el, st + 1, range_endp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2146 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2147 case 2:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2148 pos = range_start_pos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2149 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2150 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2151 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2152
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2153 if (flags & ME_MIGHT_MODIFY_EXTENTS)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2154 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2155 /* Create a marker to track changes to the extent list */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2156 if (posm)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2157 /* Delete the marker used in the SOE stage. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2158 extent_list_delete_marker
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2159 (buffer_or_string_stack_of_extents_force (obj)->extents, posm);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2160 posm = extent_list_make_marker (el, pos, range_endp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2161 /* tell the unwind function about the marker. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2162 closure.el = el;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2163 closure.mkr = posm;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2164 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2165
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2166 /* Now loop! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2167 for (;;)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2168 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2169 EXTENT e;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2170 Lisp_Object obj2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2171
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2172 /* ----- update position in extent list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2173 and fetch next extent ----- */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2174
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2175 if (posm)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2176 /* fetch POS again to track extent insertions or deletions */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2177 pos = extent_list_marker_pos (el, posm);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2178 if (pos >= extent_list_num_els (el))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2179 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2180 e = extent_list_at (el, pos, range_endp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2181 pos++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2182 if (posm)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2183 /* now point the marker to the next one we're going to process.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2184 This ensures graceful behavior if this extent is deleted. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2185 extent_list_move_marker (el, posm, pos);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2186
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2187 /* ----- deal with internal extents ----- */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2188
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2189 if (extent_internal_p (e))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2190 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2191 if (!(flags & ME_INCLUDE_INTERNAL))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2192 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2193 else if (e == range)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2194 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2195 /* We're processing internal extents and we've
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2196 come across our own special range extent.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2197 (This happens only in adjust_extents*() and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2198 process_extents*(), which handle text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2199 insertion and deletion.) We need to omit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2200 processing of this extent; otherwise
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2201 we will probably end up prematurely
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2202 terminating this loop. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2203 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2204 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2205 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2206
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2207 /* ----- deal with AFTER condition ----- */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2208
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2209 if (after)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2210 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2211 /* if e > after, then we can stop skipping extents. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2212 if (EXTENT_LESS (after, e))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2213 after = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2214 else /* otherwise, skip this extent. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2215 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2216 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2217
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2218 /* ----- stop if we're completely outside the range ----- */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2219
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2220 /* fetch ST and EN again to track text insertions or deletions */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2221 if (range)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2222 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2223 st = extent_start (range);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2224 en = extent_end (range);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2225 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2226 if (extent_endpoint (e, range_endp) > en)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2227 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2228 /* Can't be mapping over SOE because all extents in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2229 there should overlap ST */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2230 assert (stage == 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2231 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2232 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2233
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2234 /* ----- Now actually call the function ----- */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2235
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2236 obj2 = extent_object (e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2237 if (extent_in_region_p (e,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2238 buffer_or_string_memind_to_bytind (obj2,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2239 st),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2240 buffer_or_string_memind_to_bytind (obj2,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2241 en),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2242 flags))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2243 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2244 if ((*fn)(e, arg))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2245 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2246 /* Function wants us to stop mapping. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2247 stage = 1; /* so outer for loop will terminate */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2248 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2249 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2250 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2251 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2252 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2253 /* ---------- Finished looping. ---------- */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2254 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2255
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2256 if (flags & ME_MIGHT_THROW)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2257 /* This deletes the range extent and frees the marker. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2258 unbind_to (count, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2259 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2260 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2261 /* Delete them ourselves */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2262 if (range)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2263 extent_detach (range);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2264 if (posm)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2265 extent_list_delete_marker (el, posm);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2266 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2267 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2268
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2269 void
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
2270 map_extents (Bufpos from, Bufpos to, map_extents_fun fn,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2271 void *arg, Lisp_Object obj, EXTENT after, unsigned int flags)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2272 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2273 map_extents_bytind (buffer_or_string_bufpos_to_bytind (obj, from),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2274 buffer_or_string_bufpos_to_bytind (obj, to), fn, arg,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2275 obj, after, flags);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2276 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2277
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2278 /* ------------------------------- */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2279 /* adjust_extents() */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2280 /* ------------------------------- */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2281
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2282 /* Add AMOUNT to all extent endpoints in the range (FROM, TO]. This
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2283 happens whenever the gap is moved or (under Mule) a character in a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2284 string is substituted for a different-length one. The reason for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2285 this is that extent endpoints behave just like markers (all memory
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2286 indices do) and this adjustment correct for markers -- see
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2287 adjust_markers(). Note that it is important that we visit all
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2288 extent endpoints in the range, irrespective of whether the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2289 endpoints are open or closed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2290
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2291 We could use map_extents() for this (and in fact the function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2292 was originally written that way), but the gap is in an incoherent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2293 state when this function is called and this function plays
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2294 around with extent endpoints without detaching and reattaching
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2295 the extents (this is provably correct and saves lots of time),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2296 so for safety we make it just look at the extent lists directly. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2297
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2298 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2299 adjust_extents (Lisp_Object obj, Memind from, Memind to, int amount)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2300 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2301 int endp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2302 int pos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2303 int startpos[2];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2304 Extent_List *el;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2305 Stack_Of_Extents *soe;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2306
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2307 #ifdef ERROR_CHECK_EXTENTS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2308 sledgehammer_extent_check (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2309 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2310 el = buffer_or_string_extent_list (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2311
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
2312 if (!el || !extent_list_num_els(el))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2313 return;
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
2314
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2315 /* IMPORTANT! Compute the starting positions of the extents to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2316 modify BEFORE doing any modification! Otherwise the starting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2317 position for the second time through the loop might get
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2318 incorrectly calculated (I got bit by this bug real bad). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2319 startpos[0] = extent_list_locate_from_pos (el, from+1, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2320 startpos[1] = extent_list_locate_from_pos (el, from+1, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2321 for (endp = 0; endp < 2; endp++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2322 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2323 for (pos = startpos[endp]; pos < extent_list_num_els (el);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2324 pos++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2325 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2326 EXTENT e = extent_list_at (el, pos, endp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2327 if (extent_endpoint (e, endp) > to)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2328 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2329 set_extent_endpoint (e,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2330 do_marker_adjustment (extent_endpoint (e, endp),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2331 from, to, amount),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2332 endp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2333 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2334 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2335
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2336 /* The index for the buffer's SOE is a memory index and thus
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2337 needs to be adjusted like a marker. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2338 soe = buffer_or_string_stack_of_extents (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2339 if (soe && soe->pos >= 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2340 soe->pos = do_marker_adjustment (soe->pos, from, to, amount);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2341 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2342
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2343 /* ------------------------------- */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2344 /* adjust_extents_for_deletion() */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2345 /* ------------------------------- */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2346
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2347 struct adjust_extents_for_deletion_arg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2348 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2349 EXTENT_dynarr *list;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2350 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2351
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2352 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2353 adjust_extents_for_deletion_mapper (EXTENT extent, void *arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2354 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2355 struct adjust_extents_for_deletion_arg *closure =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2356 (struct adjust_extents_for_deletion_arg *) arg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2357
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2358 Dynarr_add (closure->list, extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2359 return 0; /* continue mapping */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2360 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2361
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2362 /* For all extent endpoints in the range (FROM, TO], move them to the beginning
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2363 of the new gap. Note that it is important that we visit all extent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2364 endpoints in the range, irrespective of whether the endpoints are open or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2365 closed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2366
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2367 This function deals with weird stuff such as the fact that extents
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2368 may get reordered.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2369
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2370 There is no string correspondent for this because you can't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2371 delete characters from a string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2372 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2373
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2374 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2375 adjust_extents_for_deletion (Lisp_Object object, Bytind from,
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 96
diff changeset
2376 Bytind to, int gapsize, int numdel,
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 96
diff changeset
2377 int movegapsize)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2378 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2379 struct adjust_extents_for_deletion_arg closure;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2380 int i;
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 96
diff changeset
2381 Memind adjust_to = (Memind) (to + gapsize);
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 96
diff changeset
2382 Bytecount amount = - numdel - movegapsize;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
2383 Memind oldsoe = 0, newsoe = 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2384 Stack_Of_Extents *soe = buffer_or_string_stack_of_extents (object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2385
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2386 #ifdef ERROR_CHECK_EXTENTS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2387 sledgehammer_extent_check (object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2388 #endif
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2389 closure.list = Dynarr_new (EXTENT);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2390
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2391 /* We're going to be playing weird games below with extents and the SOE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2392 and such, so compute the list now of all the extents that we're going
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2393 to muck with. If we do the mapping and adjusting together, things can
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2394 get all screwed up. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2395
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2396 map_extents_bytind (from, to, adjust_extents_for_deletion_mapper,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2397 (void *) &closure, object, 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2398 /* extent endpoints move like markers regardless
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2399 of their open/closeness. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2400 ME_ALL_EXTENTS_CLOSED | ME_END_CLOSED |
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2401 ME_START_OR_END_IN_REGION | ME_INCLUDE_INTERNAL);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2402
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2403 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2404 Old and new values for the SOE's position. (It gets adjusted
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2405 like a marker, just like extent endpoints.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2406 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2407
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2408 if (soe)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2409 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2410 oldsoe = soe->pos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2411 if (soe->pos >= 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2412 newsoe = do_marker_adjustment (soe->pos,
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 96
diff changeset
2413 adjust_to, adjust_to,
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 96
diff changeset
2414 amount);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2415 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2416 newsoe = soe->pos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2417 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2418
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2419 for (i = 0; i < Dynarr_length (closure.list); i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2420 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2421 EXTENT extent = Dynarr_at (closure.list, i);
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 96
diff changeset
2422 Memind new_start = extent_start (extent);
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 96
diff changeset
2423 Memind new_end = extent_end (extent);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2424
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2425 /* do_marker_adjustment() will not adjust values that should not be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2426 adjusted. We're passing the same funky arguments to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2427 do_marker_adjustment() as buffer_delete_range() does. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2428 new_start =
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 96
diff changeset
2429 do_marker_adjustment (new_start,
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 96
diff changeset
2430 adjust_to, adjust_to,
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 96
diff changeset
2431 amount);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2432 new_end =
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 96
diff changeset
2433 do_marker_adjustment (new_end,
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 96
diff changeset
2434 adjust_to, adjust_to,
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 96
diff changeset
2435 amount);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2436
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2437 /* We need to be very careful here so that the SOE doesn't get
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2438 corrupted. We are shrinking extents out of the deleted region
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2439 and simultaneously moving the SOE's pos out of the deleted
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2440 region, so the SOE should contain the same extents at the end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2441 as at the beginning. However, extents may get reordered
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2442 by this process, so we have to operate by pulling the extents
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2443 out of the buffer and SOE, changing their bounds, and then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2444 reinserting them. In order for the SOE not to get screwed up,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2445 we have to make sure that the SOE's pos points to its old
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2446 location whenever we pull an extent out, and points to its
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2447 new location whenever we put the extent back in.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2448 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2449
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2450 if (new_start != extent_start (extent) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2451 new_end != extent_end (extent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2452 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2453 extent_detach (extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2454 set_extent_start (extent, new_start);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2455 set_extent_end (extent, new_end);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2456 if (soe)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2457 soe->pos = newsoe;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2458 extent_attach (extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2459 if (soe)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2460 soe->pos = oldsoe;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2461 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2462 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2463
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2464 if (soe)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2465 soe->pos = newsoe;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2466
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2467 #ifdef ERROR_CHECK_EXTENTS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2468 sledgehammer_extent_check (object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2469 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2470 Dynarr_free (closure.list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2471 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2472
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2473 /* ------------------------------- */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2474 /* extent fragments */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2475 /* ------------------------------- */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2476
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2477 /* Imagine that the buffer is divided up into contiguous,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2478 nonoverlapping "runs" of text such that no extent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2479 starts or ends within a run (extents that abut the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2480 run don't count).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2481
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2482 An extent fragment is a structure that holds data about
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2483 the run that contains a particular buffer position (if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2484 the buffer position is at the junction of two runs, the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2485 run after the position is used) -- the beginning and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2486 end of the run, a list of all of the extents in that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2487 run, the "merged face" that results from merging all of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2488 the faces corresponding to those extents, the begin and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2489 end glyphs at the beginning of the run, etc. This is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2490 the information that redisplay needs in order to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2491 display this run.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2492
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2493 Extent fragments have to be very quick to update to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2494 a new buffer position when moving linearly through
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2495 the buffer. They rely on the stack-of-extents code,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2496 which does the heavy-duty algorithmic work of determining
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2497 which extents overly a particular position. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2498
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2499 /* This function returns the position of the beginning of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2500 the first run that begins after POS, or returns POS if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2501 there are no such runs. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2502
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2503 static Bytind
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2504 extent_find_end_of_run (Lisp_Object obj, Bytind pos, int outside_accessible)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2505 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2506 Extent_List *sel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2507 Extent_List *bel = buffer_or_string_extent_list (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2508 Bytind pos1, pos2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2509 int elind1, elind2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2510 Memind mempos = buffer_or_string_bytind_to_memind (obj, pos);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2511 Bytind limit = outside_accessible ?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2512 buffer_or_string_absolute_end_byte (obj) :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2513 buffer_or_string_accessible_end_byte (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2514
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
2515 if (!bel || !extent_list_num_els(bel))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2516 return limit;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2517
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2518 sel = buffer_or_string_stack_of_extents_force (obj)->extents;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2519 soe_move (obj, mempos);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2520
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2521 /* Find the first start position after POS. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2522 elind1 = extent_list_locate_from_pos (bel, mempos+1, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2523 if (elind1 < extent_list_num_els (bel))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2524 pos1 = buffer_or_string_memind_to_bytind
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2525 (obj, extent_start (extent_list_at (bel, elind1, 0)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2526 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2527 pos1 = limit;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2528
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2529 /* Find the first end position after POS. The extent corresponding
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2530 to this position is either in the SOE or is greater than or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2531 equal to POS1, so we just have to look in the SOE. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2532 elind2 = extent_list_locate_from_pos (sel, mempos+1, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2533 if (elind2 < extent_list_num_els (sel))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2534 pos2 = buffer_or_string_memind_to_bytind
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2535 (obj, extent_end (extent_list_at (sel, elind2, 1)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2536 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2537 pos2 = limit;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2538
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2539 return min (min (pos1, pos2), limit);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2540 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2541
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2542 static Bytind
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2543 extent_find_beginning_of_run (Lisp_Object obj, Bytind pos,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2544 int outside_accessible)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2545 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2546 Extent_List *sel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2547 Extent_List *bel = buffer_or_string_extent_list (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2548 Bytind pos1, pos2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2549 int elind1, elind2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2550 Memind mempos = buffer_or_string_bytind_to_memind (obj, pos);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2551 Bytind limit = outside_accessible ?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2552 buffer_or_string_absolute_begin_byte (obj) :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2553 buffer_or_string_accessible_begin_byte (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2554
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
2555 if (!bel || !extent_list_num_els(bel))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2556 return limit;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2557
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2558 sel = buffer_or_string_stack_of_extents_force (obj)->extents;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2559 soe_move (obj, mempos);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2560
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2561 /* Find the first end position before POS. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2562 elind1 = extent_list_locate_from_pos (bel, mempos, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2563 if (elind1 > 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2564 pos1 = buffer_or_string_memind_to_bytind
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2565 (obj, extent_end (extent_list_at (bel, elind1 - 1, 1)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2566 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2567 pos1 = limit;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2568
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2569 /* Find the first start position before POS. The extent corresponding
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2570 to this position is either in the SOE or is less than or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2571 equal to POS1, so we just have to look in the SOE. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2572 elind2 = extent_list_locate_from_pos (sel, mempos, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2573 if (elind2 > 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2574 pos2 = buffer_or_string_memind_to_bytind
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2575 (obj, extent_start (extent_list_at (sel, elind2 - 1, 0)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2576 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2577 pos2 = limit;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2578
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2579 return max (max (pos1, pos2), limit);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2580 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2581
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2582 struct extent_fragment *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2583 extent_fragment_new (Lisp_Object buffer_or_string, struct frame *frm)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2584 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2585 struct extent_fragment *ef = xnew_and_zero (struct extent_fragment);
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2586
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2587 ef->object = buffer_or_string;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2588 ef->frm = frm;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2589 ef->extents = Dynarr_new (EXTENT);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2590 ef->begin_glyphs = Dynarr_new (glyph_block);
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2591 ef->end_glyphs = Dynarr_new (glyph_block);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2592
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2593 return ef;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2594 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2595
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2596 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2597 extent_fragment_delete (struct extent_fragment *ef)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2598 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2599 Dynarr_free (ef->extents);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2600 Dynarr_free (ef->begin_glyphs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2601 Dynarr_free (ef->end_glyphs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2602 xfree (ef);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2603 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2604
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
2605 /* Note: CONST is losing, but `const' is part of the interface of qsort() */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2606 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2607 extent_priority_sort_function (const void *humpty, const void *dumpty)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2608 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
2609 CONST EXTENT foo = * (CONST EXTENT *) humpty;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
2610 CONST EXTENT bar = * (CONST EXTENT *) dumpty;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2611 if (extent_priority (foo) < extent_priority (bar))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2612 return -1;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
2613 return extent_priority (foo) > extent_priority (bar);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2614 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2615
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2616 static void
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2617 extent_fragment_sort_by_priority (EXTENT_dynarr *extarr)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2618 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2619 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2620
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2621 /* Sort our copy of the stack by extent_priority. We use a bubble
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2622 sort here because it's going to be faster than qsort() for small
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2623 numbers of extents (less than 10 or so), and 99.999% of the time
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2624 there won't ever be more extents than this in the stack. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2625 if (Dynarr_length (extarr) < 10)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2626 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2627 for (i = 1; i < Dynarr_length (extarr); i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2628 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2629 int j = i - 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2630 while (j >= 0 &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2631 (extent_priority (Dynarr_at (extarr, j)) >
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2632 extent_priority (Dynarr_at (extarr, j+1))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2633 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2634 EXTENT tmp = Dynarr_at (extarr, j);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2635 Dynarr_at (extarr, j) = Dynarr_at (extarr, j+1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2636 Dynarr_at (extarr, j+1) = tmp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2637 j--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2638 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2639 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2640 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2641 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2642 /* But some loser programs mess up and may create a large number
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2643 of extents overlapping the same spot. This will result in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2644 catastrophic behavior if we use the bubble sort above. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2645 qsort (Dynarr_atp (extarr, 0), Dynarr_length (extarr),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2646 sizeof (EXTENT), extent_priority_sort_function);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2647 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2648
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2649 /* If PROP is the `invisible' property of an extent,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2650 this is 1 if the extent should be treated as invisible. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2651
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2652 #define EXTENT_PROP_MEANS_INVISIBLE(buf, prop) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2653 (EQ (buf->invisibility_spec, Qt) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2654 ? ! NILP (prop) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2655 : invisible_p (prop, buf->invisibility_spec))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2656
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2657 /* If PROP is the `invisible' property of a extent,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2658 this is 1 if the extent should be treated as invisible
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2659 and should have an ellipsis. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2660
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2661 #define EXTENT_PROP_MEANS_INVISIBLE_WITH_ELLIPSIS(buf, prop) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2662 (EQ (buf->invisibility_spec, Qt) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2663 ? 0 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2664 : invisible_ellipsis_p (prop, buf->invisibility_spec))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2665
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2666 /* This is like a combination of memq and assq.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2667 Return 1 if PROPVAL appears as an element of LIST
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2668 or as the car of an element of LIST.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2669 If PROPVAL is a list, compare each element against LIST
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2670 in that way, and return 1 if any element of PROPVAL is found in LIST.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2671 Otherwise return 0.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2672 This function cannot quit. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2673
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2674 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2675 invisible_p (REGISTER Lisp_Object propval, Lisp_Object list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2676 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2677 REGISTER Lisp_Object tail, proptail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2678 for (tail = list; CONSP (tail); tail = XCDR (tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2679 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2680 REGISTER Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2681 tem = XCAR (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2682 if (EQ (propval, tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2683 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2684 if (CONSP (tem) && EQ (propval, XCAR (tem)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2685 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2686 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2687 if (CONSP (propval))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2688 for (proptail = propval; CONSP (proptail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2689 proptail = XCDR (proptail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2690 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2691 Lisp_Object propelt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2692 propelt = XCAR (proptail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2693 for (tail = list; CONSP (tail); tail = XCDR (tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2694 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2695 REGISTER Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2696 tem = XCAR (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2697 if (EQ (propelt, tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2698 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2699 if (CONSP (tem) && EQ (propelt, XCAR (tem)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2700 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2701 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2702 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2703 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2704 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2705
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2706 /* Return 1 if PROPVAL appears as the car of an element of LIST
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2707 and the cdr of that element is non-nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2708 If PROPVAL is a list, check each element of PROPVAL in that way,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2709 and the first time some element is found,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2710 return 1 if the cdr of that element is non-nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2711 Otherwise return 0.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2712 This function cannot quit. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2713
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2714 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2715 invisible_ellipsis_p (REGISTER Lisp_Object propval, Lisp_Object list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2716 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2717 REGISTER Lisp_Object tail, proptail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2718 for (tail = list; CONSP (tail); tail = XCDR (tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2719 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2720 REGISTER Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2721 tem = XCAR (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2722 if (CONSP (tem) && EQ (propval, XCAR (tem)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2723 return ! NILP (XCDR (tem));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2724 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2725 if (CONSP (propval))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2726 for (proptail = propval; CONSP (proptail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2727 proptail = XCDR (proptail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2728 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2729 Lisp_Object propelt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2730 propelt = XCAR (proptail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2731 for (tail = list; CONSP (tail); tail = XCDR (tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2732 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2733 REGISTER Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2734 tem = XCAR (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2735 if (CONSP (tem) && EQ (propelt, XCAR (tem)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2736 return ! NILP (XCDR (tem));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2737 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2738 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2739 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2740 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2741
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2742 face_index
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2743 extent_fragment_update (struct window *w, struct extent_fragment *ef,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2744 Bytind pos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2745 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2746 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2747 Extent_List *sel =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2748 buffer_or_string_stack_of_extents_force (ef->object)->extents;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2749 EXTENT lhe = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2750 struct extent dummy_lhe_extent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2751 Memind mempos = buffer_or_string_bytind_to_memind (ef->object, pos);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2752
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2753 #ifdef ERROR_CHECK_EXTENTS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2754 assert (pos >= buffer_or_string_accessible_begin_byte (ef->object)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2755 && pos <= buffer_or_string_accessible_end_byte (ef->object));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2756 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2757
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2758 Dynarr_reset (ef->extents);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2759 Dynarr_reset (ef->begin_glyphs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2760 Dynarr_reset (ef->end_glyphs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2761
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2762 ef->previously_invisible = ef->invisible;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2763 if (ef->invisible)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2764 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2765 if (ef->invisible_ellipses)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2766 ef->invisible_ellipses_already_displayed = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2767 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2768 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2769 ef->invisible_ellipses_already_displayed = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2770 ef->invisible = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2771 ef->invisible_ellipses = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2772
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2773 /* Set up the begin and end positions. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2774 ef->pos = pos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2775 ef->end = extent_find_end_of_run (ef->object, pos, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2776
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2777 /* Note that extent_find_end_of_run() already moved the SOE for us. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2778 /* soe_move (ef->object, mempos); */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2779
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2780 /* Determine the begin glyphs at POS. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2781 for (i = 0; i < extent_list_num_els (sel); i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2782 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2783 EXTENT e = extent_list_at (sel, i, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2784 if (extent_start (e) == mempos && !NILP (extent_begin_glyph (e)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2785 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2786 Lisp_Object glyph = extent_begin_glyph (e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2787 struct glyph_block gb;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
2788
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2789 gb.glyph = glyph;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2790 XSETEXTENT (gb.extent, e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2791 Dynarr_add (ef->begin_glyphs, gb);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2792 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2793 }
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
2794
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2795 /* Determine the end glyphs at POS. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2796 for (i = 0; i < extent_list_num_els (sel); i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2797 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2798 EXTENT e = extent_list_at (sel, i, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2799 if (extent_end (e) == mempos && !NILP (extent_end_glyph (e)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2800 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2801 Lisp_Object glyph = extent_end_glyph (e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2802 struct glyph_block gb;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
2803
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2804 gb.glyph = glyph;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2805 XSETEXTENT (gb.extent, e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2806 Dynarr_add (ef->end_glyphs, gb);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2807 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2808 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2809
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2810 /* We tried determining all the charsets used in the run here,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2811 but that fails even if we only do the current line -- display
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2812 tables or non-printable characters might cause other charsets
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2813 to be used. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2814
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2815 /* Determine whether the last-highlighted-extent is present. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2816 if (EXTENTP (Vlast_highlighted_extent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2817 lhe = XEXTENT (Vlast_highlighted_extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2818
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2819 /* Now add all extents that overlap the character after POS and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2820 have a non-nil face. Also check if the character is invisible. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2821 for (i = 0; i < extent_list_num_els (sel); i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2822 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2823 EXTENT e = extent_list_at (sel, i, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2824 if (extent_end (e) > mempos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2825 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2826 Lisp_Object invis_prop = extent_invisible (e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2827
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2828 if (!NILP (invis_prop))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2829 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2830 if (!BUFFERP (ef->object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2831 /* #### no `string-invisibility-spec' */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2832 ef->invisible = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2833 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2834 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2835 if (!ef->invisible_ellipses_already_displayed &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2836 EXTENT_PROP_MEANS_INVISIBLE_WITH_ELLIPSIS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2837 (XBUFFER (ef->object), invis_prop))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2838 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2839 ef->invisible = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2840 ef->invisible_ellipses = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2841 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2842 else if (EXTENT_PROP_MEANS_INVISIBLE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2843 (XBUFFER (ef->object), invis_prop))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2844 ef->invisible = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2845 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2846 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2847
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2848 /* Remember that one of the extents in the list might be our
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2849 dummy extent representing the highlighting that is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2850 attached to some other extent that is currently
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2851 mouse-highlighted. When an extent is mouse-highlighted,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2852 it is as if there are two extents there, of potentially
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2853 different priorities: the extent being highlighted, with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2854 whatever face and priority it has; and an ephemeral
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2855 extent in the `mouse-face' face with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2856 `mouse-highlight-priority'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2857 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2858
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2859 if (!NILP (extent_face (e)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2860 Dynarr_add (ef->extents, e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2861 if (e == lhe)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2862 {
253
157b30c96d03 Import from CVS: tag r20-5b25
cvs
parents: 223
diff changeset
2863 Lisp_Object f;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
2864 /* zeroing isn't really necessary; we only deref `priority'
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2865 and `face' */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
2866 xzero (dummy_lhe_extent);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2867 set_extent_priority (&dummy_lhe_extent,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2868 mouse_highlight_priority);
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
2869 /* Need to break up the following expression, due to an */
253
157b30c96d03 Import from CVS: tag r20-5b25
cvs
parents: 223
diff changeset
2870 /* error in the Digital UNIX 3.2g C compiler (Digital */
157b30c96d03 Import from CVS: tag r20-5b25
cvs
parents: 223
diff changeset
2871 /* UNIX Compiler Driver 3.11). */
157b30c96d03 Import from CVS: tag r20-5b25
cvs
parents: 223
diff changeset
2872 f = extent_mouse_face (lhe);
157b30c96d03 Import from CVS: tag r20-5b25
cvs
parents: 223
diff changeset
2873 extent_face (&dummy_lhe_extent) = f;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2874 Dynarr_add (ef->extents, &dummy_lhe_extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2875 }
189
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
2876 /* since we are looping anyway, we might as well do this here */
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 203
diff changeset
2877 if ((!NILP(extent_initial_redisplay_function (e))) &&
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 203
diff changeset
2878 !extent_in_red_event_p(e))
189
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
2879 {
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 203
diff changeset
2880 Lisp_Object function = extent_initial_redisplay_function (e);
189
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
2881 Lisp_Object obj;
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
2882
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
2883 /* printf ("initial redisplay function called!\n "); */
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
2884
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
2885 /* print_extent_2 (e);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
2886 printf ("\n"); */
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
2887
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 203
diff changeset
2888 /* FIXME: One should probably inhibit the displaying of
189
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
2889 this extent to reduce flicker */
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 203
diff changeset
2890 extent_in_red_event_p(e) = 1;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
2891
189
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
2892 /* call the function */
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
2893 XSETEXTENT(obj,e);
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
2894 if(!NILP(function))
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
2895 Fenqueue_eval_event(function,obj);
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
2896 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2897 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2898 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2899
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2900 extent_fragment_sort_by_priority (ef->extents);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2901
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2902 /* Now merge the faces together into a single face. The code to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2903 do this is in faces.c because it involves manipulating faces. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2904 return get_extent_fragment_face_cache_index (w, ef);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
2905 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2906
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2907
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2908 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2909 /* extent-object methods */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2910 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2911
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2912 /* These are the basic helper functions for handling the allocation of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2913 extent objects. They are similar to the functions for other
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2914 lrecord objects. allocate_extent() is in alloc.c, not here. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2915
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
2916 static Lisp_Object mark_extent (Lisp_Object, void (*) (Lisp_Object));
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
2917 static int extent_equal (Lisp_Object, Lisp_Object, int depth);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
2918 static unsigned long extent_hash (Lisp_Object obj, int depth);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
2919 static void print_extent (Lisp_Object obj, Lisp_Object printcharfun,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
2920 int escapeflag);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
2921 static Lisp_Object extent_getprop (Lisp_Object obj, Lisp_Object prop);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
2922 static int extent_putprop (Lisp_Object obj, Lisp_Object prop,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
2923 Lisp_Object value);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
2924 static int extent_remprop (Lisp_Object obj, Lisp_Object prop);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
2925 static Lisp_Object extent_plist (Lisp_Object obj);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
2926
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
2927 DEFINE_BASIC_LRECORD_IMPLEMENTATION_WITH_PROPS ("extent", extent,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
2928 mark_extent,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
2929 print_extent,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
2930 /* NOTE: If you declare a
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
2931 finalization method here,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
2932 it will NOT be called.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
2933 Shaft city. */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
2934 0,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
2935 extent_equal, extent_hash,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
2936 extent_getprop, extent_putprop,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
2937 extent_remprop, extent_plist,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
2938 struct extent);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
2939
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2940 static Lisp_Object
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
2941 mark_extent (Lisp_Object obj, void (*markobj) (Lisp_Object))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2942 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2943 struct extent *extent = XEXTENT (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2944
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
2945 markobj (extent_object (extent));
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
2946 markobj (extent_no_chase_normal_field (extent, face));
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
2947 return extent->plist;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2948 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2949
177
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 175
diff changeset
2950 static void
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
2951 print_extent_1 (Lisp_Object obj, Lisp_Object printcharfun, int escapeflag)
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
2952 {
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
2953 EXTENT ext = XEXTENT (obj);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2954 EXTENT anc = extent_ancestor (ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2955 Lisp_Object tail;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
2956 char buf[64], *bp = buf;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2957
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2958 /* Retrieve the ancestor and use it, for faster retrieval of properties */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2959
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2960 if (!NILP (extent_begin_glyph (anc))) *bp++ = '*';
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2961 *bp++ = (extent_start_open_p (anc) ? '(': '[');
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2962 if (extent_detached_p (ext))
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
2963 strcpy (bp, "detached");
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2964 else
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
2965 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
2966 Bufpos from = XINT (Fextent_start_position (obj));
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
2967 Bufpos to = XINT (Fextent_end_position (obj));
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
2968 sprintf (bp, "%d, %d", from, to);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
2969 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2970 bp += strlen (bp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2971 *bp++ = (extent_end_open_p (anc) ? ')': ']');
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2972 if (!NILP (extent_end_glyph (anc))) *bp++ = '*';
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2973 *bp++ = ' ';
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2974
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2975 if (!NILP (extent_read_only (anc))) *bp++ = '%';
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2976 if (!NILP (extent_mouse_face (anc))) *bp++ = 'H';
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2977 if (extent_unique_p (anc)) *bp++ = 'U';
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2978 else if (extent_duplicable_p (anc)) *bp++ = 'D';
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2979 if (!NILP (extent_invisible (anc))) *bp++ = 'I';
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2980
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2981 if (!NILP (extent_read_only (anc)) || !NILP (extent_mouse_face (anc)) ||
96
dbb370e3c29e Import from CVS: tag r20-0final
cvs
parents: 80
diff changeset
2982 extent_unique_p (anc) ||
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2983 extent_duplicable_p (anc) || !NILP (extent_invisible (anc)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2984 *bp++ = ' ';
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
2985 *bp = '\0';
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
2986 write_c_string (buf, printcharfun);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2987
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2988 tail = extent_plist_slot (anc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2989
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2990 for (; !NILP (tail); tail = Fcdr (Fcdr (tail)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2991 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2992 Lisp_Object v = XCAR (XCDR (tail));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2993 if (NILP (v)) continue;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
2994 print_internal (XCAR (tail), printcharfun, escapeflag);
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
2995 write_c_string (" ", printcharfun);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2996 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2997
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
2998 sprintf (buf, "0x%lx", (long) ext);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
2999 write_c_string (buf, printcharfun);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3000 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3001
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3002 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3003 print_extent (Lisp_Object obj, Lisp_Object printcharfun, int escapeflag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3004 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3005 if (escapeflag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3006 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
3007 CONST char *title = "";
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
3008 CONST char *name = "";
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
3009 CONST char *posttitle = "";
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3010 Lisp_Object obj2 = Qnil;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
3011
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3012 /* Destroyed extents have 't' in the object field, causing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3013 extent_object() to abort (maybe). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3014 if (EXTENT_LIVE_P (XEXTENT (obj)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3015 obj2 = extent_object (XEXTENT (obj));
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
3016
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3017 if (NILP (obj2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3018 title = "no buffer";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3019 else if (BUFFERP (obj2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3020 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3021 if (BUFFER_LIVE_P (XBUFFER (obj2)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3022 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3023 title = "buffer ";
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
3024 name = (char *) XSTRING_DATA (XBUFFER (obj2)->name);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3025 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3026 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3027 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3028 title = "Killed Buffer";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3029 name = "";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3030 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3031 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3032 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3033 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3034 assert (STRINGP (obj2));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3035 title = "string \"";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3036 posttitle = "\"";
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
3037 name = (char *) XSTRING_DATA (obj2);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3038 }
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
3039
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3040 if (print_readably)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3041 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3042 if (!EXTENT_LIVE_P (XEXTENT (obj)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3043 error ("printing unreadable object #<destroyed extent>");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3044 else
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
3045 error ("printing unreadable object #<extent 0x%lx>",
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
3046 (long) XEXTENT (obj));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3047 }
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
3048
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3049 if (!EXTENT_LIVE_P (XEXTENT (obj)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3050 write_c_string ("#<destroyed extent", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3051 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3052 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3053 char *buf = (char *)
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3054 alloca (strlen (title) + strlen (name) + strlen (posttitle) + 1);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3055 write_c_string ("#<extent ", printcharfun);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
3056 print_extent_1 (obj, printcharfun, escapeflag);
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
3057 write_c_string (extent_detached_p (XEXTENT (obj))
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
3058 ? " from " : " in ", printcharfun);
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
3059 sprintf (buf, "%s%s%s", title, name, posttitle);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3060 write_c_string (buf, printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3061 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3062 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3063 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3064 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3065 if (print_readably)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3066 error ("printing unreadable object #<extent>");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3067 write_c_string ("#<extent", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3068 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3069 write_c_string (">", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3070 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3071
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3072 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3073 properties_equal (EXTENT e1, EXTENT e2, int depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3074 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3075 /* When this function is called, all indirections have been followed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3076 Thus, the indirection checks in the various macros below will not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3077 amount to anything, and could be removed. However, the time
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3078 savings would probably not be significant. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3079 if (!(EQ (extent_face (e1), extent_face (e2)) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3080 extent_priority (e1) == extent_priority (e2) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3081 internal_equal (extent_begin_glyph (e1), extent_begin_glyph (e2),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3082 depth + 1) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3083 internal_equal (extent_end_glyph (e1), extent_end_glyph (e2),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3084 depth + 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3085 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3086
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3087 /* compare the bit flags. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3088 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3089 /* The has_aux field should not be relevant. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3090 int e1_has_aux = e1->flags.has_aux;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3091 int e2_has_aux = e2->flags.has_aux;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3092 int value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3093
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3094 e1->flags.has_aux = e2->flags.has_aux = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3095 value = memcmp (&e1->flags, &e2->flags, sizeof (e1->flags));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3096 e1->flags.has_aux = e1_has_aux;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3097 e2->flags.has_aux = e2_has_aux;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3098 if (value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3099 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3100 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3101
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3102 /* compare the random elements of the plists. */
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
3103 return !plists_differ (extent_no_chase_plist (e1),
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
3104 extent_no_chase_plist (e2),
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
3105 0, 0, depth + 1);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3106 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3107
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3108 static int
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
3109 extent_equal (Lisp_Object obj1, Lisp_Object obj2, int depth)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
3110 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
3111 struct extent *e1 = XEXTENT (obj1);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
3112 struct extent *e2 = XEXTENT (obj2);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3113 return
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3114 (extent_start (e1) == extent_start (e2) &&
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
3115 extent_end (e1) == extent_end (e2) &&
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3116 internal_equal (extent_object (e1), extent_object (e2), depth + 1) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3117 properties_equal (extent_ancestor (e1), extent_ancestor (e2),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3118 depth));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3119 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3120
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3121 static unsigned long
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3122 extent_hash (Lisp_Object obj, int depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3123 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3124 struct extent *e = XEXTENT (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3125 /* No need to hash all of the elements; that would take too long.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3126 Just hash the most common ones. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3127 return HASH3 (extent_start (e), extent_end (e),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3128 internal_hash (extent_object (e), depth + 1));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3129 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3130
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3131 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3132 extent_getprop (Lisp_Object obj, Lisp_Object prop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3133 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3134 return Fextent_property (obj, prop, Qunbound);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3135 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3136
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3137 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3138 extent_putprop (Lisp_Object obj, Lisp_Object prop, Lisp_Object value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3139 {
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
3140 Fset_extent_property (obj, prop, value);
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
3141 return 1;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3142 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3143
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3144 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3145 extent_remprop (Lisp_Object obj, Lisp_Object prop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3146 {
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
3147 EXTENT ext = XEXTENT (obj);
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
3148
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
3149 /* This list is taken from Fset_extent_property, and should be kept
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
3150 in synch. */
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
3151 if (EQ (prop, Qread_only)
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
3152 || EQ (prop, Qunique)
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
3153 || EQ (prop, Qduplicable)
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
3154 || EQ (prop, Qinvisible)
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
3155 || EQ (prop, Qdetachable)
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
3156 || EQ (prop, Qdetached)
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
3157 || EQ (prop, Qdestroyed)
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
3158 || EQ (prop, Qpriority)
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
3159 || EQ (prop, Qface)
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
3160 || EQ (prop, Qinitial_redisplay_function)
373
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
3161 || EQ (prop, Qafter_change_functions)
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
3162 || EQ (prop, Qbefore_change_functions)
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
3163 || EQ (prop, Qmouse_face)
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
3164 || EQ (prop, Qhighlight)
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
3165 || EQ (prop, Qbegin_glyph_layout)
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
3166 || EQ (prop, Qend_glyph_layout)
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
3167 || EQ (prop, Qglyph_layout)
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
3168 || EQ (prop, Qbegin_glyph)
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
3169 || EQ (prop, Qend_glyph)
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
3170 || EQ (prop, Qstart_open)
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
3171 || EQ (prop, Qend_open)
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
3172 || EQ (prop, Qstart_closed)
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
3173 || EQ (prop, Qend_closed)
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
3174 || EQ (prop, Qkeymap))
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
3175 {
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
3176 /* #### Is this correct, anyway? */
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
3177 return -1;
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
3178 }
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
3179
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
3180 return external_remprop (&ext->plist, prop, 0, ERROR_ME);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3181 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3182
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3183 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3184 extent_plist (Lisp_Object obj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3185 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3186 return Fextent_properties (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3187 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3188
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3189
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3190 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3191 /* basic extent accessors */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3192 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3193
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3194 /* These functions are for checking externally-passed extent objects
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3195 and returning an extent's basic properties, which include the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3196 buffer the extent is associated with, the endpoints of the extent's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3197 range, the open/closed-ness of those endpoints, and whether the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3198 extent is detached. Manipulating these properties requires
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3199 manipulating the ordered lists that hold extents; thus, functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3200 to do that are in a later section. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3201
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3202 /* Given a Lisp_Object that is supposed to be an extent, make sure it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3203 is OK and return an extent pointer. Extents can be in one of four
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3204 states:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3205
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3206 1) destroyed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3207 2) detached and not associated with a buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3208 3) detached and associated with a buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3209 4) attached to a buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3210
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3211 If FLAGS is 0, types 2-4 are allowed. If FLAGS is DE_MUST_HAVE_BUFFER,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3212 types 3-4 are allowed. If FLAGS is DE_MUST_BE_ATTACHED, only type 4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3213 is allowed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3214 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3215
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3216 static EXTENT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3217 decode_extent (Lisp_Object extent_obj, unsigned int flags)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3218 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3219 EXTENT extent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3220 Lisp_Object obj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3221
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3222 CHECK_LIVE_EXTENT (extent_obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3223 extent = XEXTENT (extent_obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3224 obj = extent_object (extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3225
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3226 /* the following condition will fail if we're dealing with a freed extent */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3227 assert (NILP (obj) || BUFFERP (obj) || STRINGP (obj));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3228
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3229 if (flags & DE_MUST_BE_ATTACHED)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3230 flags |= DE_MUST_HAVE_BUFFER;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3231
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3232 /* if buffer is dead, then convert extent to have no buffer. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3233 if (BUFFERP (obj) && !BUFFER_LIVE_P (XBUFFER (obj)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3234 obj = extent_object (extent) = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3235
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3236 assert (!NILP (obj) || extent_detached_p (extent));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3237
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
3238 if ((NILP (obj) && (flags & DE_MUST_HAVE_BUFFER))
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
3239 || (extent_detached_p (extent) && (flags & DE_MUST_BE_ATTACHED)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3240 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3241 signal_simple_error ("extent doesn't belong to a buffer or string",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3242 extent_obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3243 }
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
3244
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3245 return extent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3246 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3247
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3248 /* Note that the returned value is a buffer position, not a byte index. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3249
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3250 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3251 extent_endpoint_external (Lisp_Object extent_obj, int endp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3252 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3253 EXTENT extent = decode_extent (extent_obj, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3254
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3255 if (extent_detached_p (extent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3256 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3257 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3258 return make_int (extent_endpoint_bufpos (extent, endp));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3259 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3260
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3261 DEFUN ("extentp", Fextentp, 1, 1, 0, /*
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
3262 Return t if OBJECT is an extent.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3263 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3264 (object))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3265 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
3266 return EXTENTP (object) ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3267 }
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
3268
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3269 DEFUN ("extent-live-p", Fextent_live_p, 1, 1, 0, /*
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
3270 Return t if OBJECT is an extent that has not been destroyed.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3271 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3272 (object))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3273 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
3274 return EXTENTP (object) && EXTENT_LIVE_P (XEXTENT (object)) ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3275 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3276
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3277 DEFUN ("extent-detached-p", Fextent_detached_p, 1, 1, 0, /*
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
3278 Return t if EXTENT is detached.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3279 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3280 (extent))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3281 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
3282 return extent_detached_p (decode_extent (extent, 0)) ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3283 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3284
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3285 DEFUN ("extent-object", Fextent_object, 1, 1, 0, /*
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
3286 Return object (buffer or string) that EXTENT refers to.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3287 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3288 (extent))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3289 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3290 return extent_object (decode_extent (extent, 0));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3291 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3292
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3293 DEFUN ("extent-start-position", Fextent_start_position, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3294 Return start position of EXTENT, or nil if EXTENT is detached.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3295 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3296 (extent))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3297 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3298 return extent_endpoint_external (extent, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3299 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3300
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3301 DEFUN ("extent-end-position", Fextent_end_position, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3302 Return end position of EXTENT, or nil if EXTENT is detached.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3303 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3304 (extent))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3305 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3306 return extent_endpoint_external (extent, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3307 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3308
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3309 DEFUN ("extent-length", Fextent_length, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3310 Return length of EXTENT in characters.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3311 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3312 (extent))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3313 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3314 EXTENT e = decode_extent (extent, DE_MUST_BE_ATTACHED);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3315 return make_int (extent_endpoint_bufpos (e, 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3316 - extent_endpoint_bufpos (e, 0));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3317 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3318
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3319 DEFUN ("next-extent", Fnext_extent, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3320 Find next extent after EXTENT.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3321 If EXTENT is a buffer return the first extent in the buffer; likewise
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3322 for strings.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3323 Extents in a buffer are ordered in what is called the "display"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3324 order, which sorts by increasing start positions and then by *decreasing*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3325 end positions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3326 If you want to perform an operation on a series of extents, use
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3327 `map-extents' instead of this function; it is much more efficient.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3328 The primary use of this function should be to enumerate all the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3329 extents in a buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3330 Note: The display order is not necessarily the order that `map-extents'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3331 processes extents in!
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3332 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3333 (extent))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3334 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3335 Lisp_Object val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3336 EXTENT next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3337
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3338 if (EXTENTP (extent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3339 next = extent_next (decode_extent (extent, DE_MUST_BE_ATTACHED));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3340 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3341 next = extent_first (decode_buffer_or_string (extent));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3342
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3343 if (!next)
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
3344 return Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3345 XSETEXTENT (val, next);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
3346 return val;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3347 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3348
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3349 DEFUN ("previous-extent", Fprevious_extent, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3350 Find last extent before EXTENT.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3351 If EXTENT is a buffer return the last extent in the buffer; likewise
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3352 for strings.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3353 This function is analogous to `next-extent'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3354 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3355 (extent))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3356 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3357 Lisp_Object val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3358 EXTENT prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3359
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3360 if (EXTENTP (extent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3361 prev = extent_previous (decode_extent (extent, DE_MUST_BE_ATTACHED));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3362 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3363 prev = extent_last (decode_buffer_or_string (extent));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3364
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3365 if (!prev)
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
3366 return Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3367 XSETEXTENT (val, prev);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
3368 return val;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3369 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3370
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3371 #ifdef DEBUG_XEMACS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3372
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3373 DEFUN ("next-e-extent", Fnext_e_extent, 1, 1, 0, /*
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3374 Find next extent after EXTENT using the "e" order.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3375 If EXTENT is a buffer return the first extent in the buffer; likewise
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3376 for strings.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3377 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3378 (extent))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3379 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3380 Lisp_Object val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3381 EXTENT next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3382
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3383 if (EXTENTP (extent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3384 next = extent_e_next (decode_extent (extent, DE_MUST_BE_ATTACHED));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3385 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3386 next = extent_e_first (decode_buffer_or_string (extent));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3387
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3388 if (!next)
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
3389 return Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3390 XSETEXTENT (val, next);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
3391 return val;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3392 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3393
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3394 DEFUN ("previous-e-extent", Fprevious_e_extent, 1, 1, 0, /*
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3395 Find last extent before EXTENT using the "e" order.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3396 If EXTENT is a buffer return the last extent in the buffer; likewise
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3397 for strings.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3398 This function is analogous to `next-e-extent'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3399 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3400 (extent))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3401 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3402 Lisp_Object val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3403 EXTENT prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3404
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3405 if (EXTENTP (extent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3406 prev = extent_e_previous (decode_extent (extent, DE_MUST_BE_ATTACHED));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3407 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3408 prev = extent_e_last (decode_buffer_or_string (extent));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3409
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3410 if (!prev)
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
3411 return Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3412 XSETEXTENT (val, prev);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
3413 return val;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3414 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3415
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3416 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3417
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3418 DEFUN ("next-extent-change", Fnext_extent_change, 1, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3419 Return the next position after POS where an extent begins or ends.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3420 If POS is at the end of the buffer or string, POS will be returned;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3421 otherwise a position greater than POS will always be returned.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3422 If BUFFER is nil, the current buffer is assumed.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3423 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3424 (pos, object))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3425 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3426 Lisp_Object obj = decode_buffer_or_string (object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3427 Bytind bpos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3428
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3429 bpos = get_buffer_or_string_pos_byte (obj, pos, GB_ALLOW_PAST_ACCESSIBLE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3430 bpos = extent_find_end_of_run (obj, bpos, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3431 return make_int (buffer_or_string_bytind_to_bufpos (obj, bpos));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3432 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3433
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3434 DEFUN ("previous-extent-change", Fprevious_extent_change, 1, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3435 Return the last position before POS where an extent begins or ends.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3436 If POS is at the beginning of the buffer or string, POS will be returned;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3437 otherwise a position less than POS will always be returned.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3438 If OBJECT is nil, the current buffer is assumed.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3439 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3440 (pos, object))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3441 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3442 Lisp_Object obj = decode_buffer_or_string (object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3443 Bytind bpos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3444
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3445 bpos = get_buffer_or_string_pos_byte (obj, pos, GB_ALLOW_PAST_ACCESSIBLE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3446 bpos = extent_find_beginning_of_run (obj, bpos, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3447 return make_int (buffer_or_string_bytind_to_bufpos (obj, bpos));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3448 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3449
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3450
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3451 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3452 /* parent and children stuff */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3453 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3454
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3455 DEFUN ("extent-parent", Fextent_parent, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3456 Return the parent (if any) of EXTENT.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3457 If an extent has a parent, it derives all its properties from that extent
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3458 and has no properties of its own. (The only "properties" that the
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3459 extent keeps are the buffer/string it refers to and the start and end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3460 points.) It is possible for an extent's parent to itself have a parent.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3461 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3462 (extent))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3463 /* do I win the prize for the strangest split infinitive? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3464 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3465 EXTENT e = decode_extent (extent, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3466 return extent_parent (e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3467 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3468
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3469 DEFUN ("extent-children", Fextent_children, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3470 Return a list of the children (if any) of EXTENT.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3471 The children of an extent are all those extents whose parent is that extent.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3472 This function does not recursively trace children of children.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3473 \(To do that, use `extent-descendants'.)
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3474 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3475 (extent))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3476 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3477 EXTENT e = decode_extent (extent, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3478 Lisp_Object children = extent_children (e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3479
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3480 if (!NILP (children))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3481 return Fcopy_sequence (XWEAK_LIST_LIST (children));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3482 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3483 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3484 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3485
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3486 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3487 remove_extent_from_children_list (EXTENT e, Lisp_Object child)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3488 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3489 Lisp_Object children = extent_children (e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3490
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3491 #ifdef ERROR_CHECK_EXTENTS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3492 assert (!NILP (memq_no_quit (child, XWEAK_LIST_LIST (children))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3493 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3494 XWEAK_LIST_LIST (children) =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3495 delq_no_quit (child, XWEAK_LIST_LIST (children));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3496 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3497
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3498 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3499 add_extent_to_children_list (EXTENT e, Lisp_Object child)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3500 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3501 Lisp_Object children = extent_children (e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3502
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3503 if (NILP (children))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3504 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3505 children = make_weak_list (WEAK_LIST_SIMPLE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3506 set_extent_no_chase_aux_field (e, children, children);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3507 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3508
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3509 #ifdef ERROR_CHECK_EXTENTS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3510 assert (NILP (memq_no_quit (child, XWEAK_LIST_LIST (children))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3511 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3512 XWEAK_LIST_LIST (children) = Fcons (child, XWEAK_LIST_LIST (children));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3513 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3514
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3515 DEFUN ("set-extent-parent", Fset_extent_parent, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3516 Set the parent of EXTENT to PARENT (may be nil).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3517 See `extent-parent'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3518 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3519 (extent, parent))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3520 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3521 EXTENT e = decode_extent (extent, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3522 Lisp_Object cur_parent = extent_parent (e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3523 Lisp_Object rest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3524
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3525 XSETEXTENT (extent, e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3526 if (!NILP (parent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3527 CHECK_LIVE_EXTENT (parent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3528 if (EQ (parent, cur_parent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3529 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3530 for (rest = parent; !NILP (rest); rest = extent_parent (XEXTENT (rest)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3531 if (EQ (rest, extent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3532 signal_simple_error ("Circular parent chain would result", extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3533 if (NILP (parent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3534 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3535 remove_extent_from_children_list (XEXTENT (cur_parent), extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3536 set_extent_no_chase_aux_field (e, parent, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3537 e->flags.has_parent = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3538 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3539 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3540 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3541 add_extent_to_children_list (XEXTENT (parent), extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3542 set_extent_no_chase_aux_field (e, parent, parent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3543 e->flags.has_parent = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3544 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3545 /* changing the parent also changes the properties of all children. */
110
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 100
diff changeset
3546 {
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 100
diff changeset
3547 int old_invis = (!NILP (cur_parent) &&
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 100
diff changeset
3548 !NILP (extent_invisible (XEXTENT (cur_parent))));
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 100
diff changeset
3549 int new_invis = (!NILP (parent) &&
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 100
diff changeset
3550 !NILP (extent_invisible (XEXTENT (parent))));
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 100
diff changeset
3551
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 100
diff changeset
3552 extent_maybe_changed_for_redisplay (e, 1, new_invis != old_invis);
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 100
diff changeset
3553 }
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 100
diff changeset
3554
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3555 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3556 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3557
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3558
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3559 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3560 /* basic extent mutators */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3561 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3562
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3563 /* Note: If you track non-duplicable extents by undo, you'll get bogus
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3564 undo records for transient extents via update-extent.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3565 For example, query-replace will do this.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3566 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3567
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3568 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3569 set_extent_endpoints_1 (EXTENT extent, Memind start, Memind end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3570 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3571 #ifdef ERROR_CHECK_EXTENTS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3572 Lisp_Object obj = extent_object (extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3573
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3574 assert (start <= end);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3575 if (BUFFERP (obj))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3576 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3577 assert (valid_memind_p (XBUFFER (obj), start));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3578 assert (valid_memind_p (XBUFFER (obj), end));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3579 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3580 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3581
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3582 /* Optimization: if the extent is already where we want it to be,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3583 do nothing. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3584 if (!extent_detached_p (extent) && extent_start (extent) == start &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3585 extent_end (extent) == end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3586 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3587
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3588 if (extent_detached_p (extent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3589 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3590 if (extent_duplicable_p (extent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3591 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3592 Lisp_Object extent_obj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3593 XSETEXTENT (extent_obj, extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3594 record_extent (extent_obj, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3595 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3596 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3597 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3598 extent_detach (extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3599
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3600 set_extent_start (extent, start);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3601 set_extent_end (extent, end);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3602 extent_attach (extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3603 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3604
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3605 /* Set extent's endpoints to S and E, and put extent in buffer or string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3606 OBJECT. (If OBJECT is nil, do not change the extent's object.) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3607
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3608 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3609 set_extent_endpoints (EXTENT extent, Bytind s, Bytind e, Lisp_Object object)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3610 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3611 Memind start, end;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3612
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3613 if (NILP (object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3614 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3615 object = extent_object (extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3616 assert (!NILP (object));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3617 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3618 else if (!EQ (object, extent_object (extent)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3619 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3620 extent_detach (extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3621 extent_object (extent) = object;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3622 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3623
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3624 start = s < 0 ? extent_start (extent) :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3625 buffer_or_string_bytind_to_memind (object, s);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3626 end = e < 0 ? extent_end (extent) :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3627 buffer_or_string_bytind_to_memind (object, e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3628 set_extent_endpoints_1 (extent, start, end);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3629 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3630
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3631 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3632 set_extent_openness (EXTENT extent, int start_open, int end_open)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3633 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
3634 if (start_open != -1)
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
3635 extent_start_open_p (extent) = start_open;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
3636 if (end_open != -1)
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
3637 extent_end_open_p (extent) = end_open;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3638 /* changing the open/closedness of an extent does not affect
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3639 redisplay. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3640 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3641
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3642 static EXTENT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3643 make_extent_internal (Lisp_Object object, Bytind from, Bytind to)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3644 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3645 EXTENT extent;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
3646
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3647 extent = make_extent_detached (object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3648 set_extent_endpoints (extent, from, to, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3649 return extent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3650 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3651
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3652 static EXTENT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3653 copy_extent (EXTENT original, Bytind from, Bytind to, Lisp_Object object)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3654 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3655 EXTENT e;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3656
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3657 e = make_extent_detached (object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3658 if (from >= 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3659 set_extent_endpoints (e, from, to, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3660
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3661 e->plist = Fcopy_sequence (original->plist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3662 memcpy (&e->flags, &original->flags, sizeof (e->flags));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3663 if (e->flags.has_aux)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3664 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3665 /* also need to copy the aux struct. It won't work for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3666 this extent to share the same aux struct as the original
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3667 one. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3668 struct extent_auxiliary *data =
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3669 alloc_lcrecord_type (struct extent_auxiliary,
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
3670 &lrecord_extent_auxiliary);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3671
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3672 copy_lcrecord (data, XEXTENT_AUXILIARY (XCAR (original->plist)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3673 XSETEXTENT_AUXILIARY (XCAR (e->plist), data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3674 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3675
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3676 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3677 /* we may have just added another child to the parent extent. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3678 Lisp_Object parent = extent_parent (e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3679 if (!NILP (parent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3680 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3681 Lisp_Object extent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3682 XSETEXTENT (extent, e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3683 add_extent_to_children_list (XEXTENT (parent), extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3684 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3685 }
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
3686
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3687 return e;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3688 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3689
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
3690 static void
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
3691 destroy_extent (EXTENT extent)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3692 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3693 Lisp_Object rest, nextrest, children;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
3694 Lisp_Object extent_obj;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3695
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3696 if (!extent_detached_p (extent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3697 extent_detach (extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3698 /* disassociate the extent from its children and parent */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3699 children = extent_children (extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3700 if (!NILP (children))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3701 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3702 LIST_LOOP_DELETING (rest, nextrest, XWEAK_LIST_LIST (children))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3703 Fset_extent_parent (XCAR (rest), Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3704 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3705 XSETEXTENT (extent_obj, extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3706 Fset_extent_parent (extent_obj, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3707 /* mark the extent as destroyed */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3708 extent_object (extent) = Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3709 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3710
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3711 DEFUN ("make-extent", Fmake_extent, 2, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3712 Make an extent for the range [FROM, TO) in BUFFER-OR-STRING.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3713 BUFFER-OR-STRING defaults to the current buffer. Insertions at point
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3714 TO will be outside of the extent; insertions at FROM will be inside the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3715 extent, causing the extent to grow. (This is the same way that markers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3716 behave.) You can change the behavior of insertions at the endpoints
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3717 using `set-extent-property'. The extent is initially detached if both
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3718 FROM and TO are nil, and in this case BUFFER-OR-STRING defaults to nil,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3719 meaning the extent is in no buffer and no string.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3720 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3721 (from, to, buffer_or_string))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3722 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
3723 Lisp_Object extent_obj;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3724 Lisp_Object obj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3725
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3726 obj = decode_buffer_or_string (buffer_or_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3727 if (NILP (from) && NILP (to))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3728 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3729 if (NILP (buffer_or_string))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3730 obj = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3731 XSETEXTENT (extent_obj, make_extent_detached (obj));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3732 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3733 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3734 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3735 Bytind start, end;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3736
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3737 get_buffer_or_string_range_byte (obj, from, to, &start, &end,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3738 GB_ALLOW_PAST_ACCESSIBLE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3739 XSETEXTENT (extent_obj, make_extent_internal (obj, start, end));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3740 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3741 return extent_obj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3742 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3743
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3744 DEFUN ("copy-extent", Fcopy_extent, 1, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3745 Make a copy of EXTENT. It is initially detached.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3746 Optional argument BUFFER-OR-STRING defaults to EXTENT's buffer or string.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3747 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3748 (extent, buffer_or_string))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3749 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3750 EXTENT ext = decode_extent (extent, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3751
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3752 if (NILP (buffer_or_string))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3753 buffer_or_string = extent_object (ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3754 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3755 buffer_or_string = decode_buffer_or_string (buffer_or_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3756
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3757 XSETEXTENT (extent, copy_extent (ext, -1, -1, buffer_or_string));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3758 return extent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3759 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3760
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3761 DEFUN ("delete-extent", Fdelete_extent, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3762 Remove EXTENT from its buffer and destroy it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3763 This does not modify the buffer's text, only its display properties.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3764 The extent cannot be used thereafter.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3765 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3766 (extent))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3767 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3768 EXTENT ext;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3769
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3770 /* We do not call decode_extent() here because already-destroyed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3771 extents are OK. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3772 CHECK_EXTENT (extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3773 ext = XEXTENT (extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3774
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3775 if (!EXTENT_LIVE_P (ext))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3776 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3777 destroy_extent (ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3778 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3779 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3780
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3781 DEFUN ("detach-extent", Fdetach_extent, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3782 Remove EXTENT from its buffer in such a way that it can be re-inserted.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3783 An extent is also detached when all of its characters are all killed by a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3784 deletion, unless its `detachable' property has been unset.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3785
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3786 Extents which have the `duplicable' attribute are tracked by the undo
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3787 mechanism. Detachment via `detach-extent' and string deletion is recorded,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3788 as is attachment via `insert-extent' and string insertion. Extent motion,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3789 face changes, and attachment via `make-extent' and `set-extent-endpoints'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3790 are not recorded. This means that extent changes which are to be undo-able
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3791 must be performed by character editing, or by insertion and detachment of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3792 duplicable extents.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3793 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3794 (extent))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3795 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3796 EXTENT ext = decode_extent (extent, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3797
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3798 if (extent_detached_p (ext))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3799 return extent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3800 if (extent_duplicable_p (ext))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3801 record_extent (extent, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3802 extent_detach (ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3803
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3804 return extent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3805 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3806
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3807 DEFUN ("set-extent-endpoints", Fset_extent_endpoints, 3, 4, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3808 Set the endpoints of EXTENT to START, END.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3809 If START and END are null, call detach-extent on EXTENT.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3810 BUFFER-OR-STRING specifies the new buffer or string that the extent should
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3811 be in, and defaults to EXTENT's buffer or string. (If nil, and EXTENT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3812 is in no buffer and no string, it defaults to the current buffer.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3813 See documentation on `detach-extent' for a discussion of undo recording.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3814 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3815 (extent, start, end, buffer_or_string))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3816 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3817 EXTENT ext;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3818 Bytind s, e;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3819
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3820 ext = decode_extent (extent, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3821
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3822 if (NILP (buffer_or_string))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3823 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3824 buffer_or_string = extent_object (ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3825 if (NILP (buffer_or_string))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3826 buffer_or_string = Fcurrent_buffer ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3827 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3828 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3829 buffer_or_string = decode_buffer_or_string (buffer_or_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3830
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3831 if (NILP (start) && NILP (end))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3832 return Fdetach_extent (extent);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
3833
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3834 get_buffer_or_string_range_byte (buffer_or_string, start, end, &s, &e,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3835 GB_ALLOW_PAST_ACCESSIBLE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3836
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3837 set_extent_endpoints (ext, s, e, buffer_or_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3838 return extent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3839 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3840
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3841
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3842 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3843 /* mapping over extents */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3844 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3845
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3846 static unsigned int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3847 decode_map_extents_flags (Lisp_Object flags)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3848 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3849 unsigned int retval = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3850 unsigned int all_extents_specified = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3851 unsigned int in_region_specified = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3852
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3853 if (EQ (flags, Qt)) /* obsoleteness compatibility */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3854 return ME_END_CLOSED;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3855 if (NILP (flags))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3856 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3857 if (SYMBOLP (flags))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3858 flags = Fcons (flags, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3859 while (!NILP (flags))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3860 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3861 Lisp_Object sym;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3862 CHECK_CONS (flags);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3863 sym = XCAR (flags);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3864 CHECK_SYMBOL (sym);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3865 if (EQ (sym, Qall_extents_closed) || EQ (sym, Qall_extents_open) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3866 EQ (sym, Qall_extents_closed_open) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3867 EQ (sym, Qall_extents_open_closed))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3868 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3869 if (all_extents_specified)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3870 error ("Only one `all-extents-*' flag may be specified");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3871 all_extents_specified = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3872 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3873 if (EQ (sym, Qstart_in_region) || EQ (sym, Qend_in_region) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3874 EQ (sym, Qstart_and_end_in_region) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3875 EQ (sym, Qstart_or_end_in_region))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3876 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3877 if (in_region_specified)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3878 error ("Only one `*-in-region' flag may be specified");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3879 in_region_specified = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3880 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3881
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3882 /* I do so love that conditional operator ... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3883 retval |=
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
3884 EQ (sym, Qend_closed) ? ME_END_CLOSED :
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
3885 EQ (sym, Qstart_open) ? ME_START_OPEN :
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
3886 EQ (sym, Qall_extents_closed) ? ME_ALL_EXTENTS_CLOSED :
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
3887 EQ (sym, Qall_extents_open) ? ME_ALL_EXTENTS_OPEN :
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3888 EQ (sym, Qall_extents_closed_open) ? ME_ALL_EXTENTS_CLOSED_OPEN :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3889 EQ (sym, Qall_extents_open_closed) ? ME_ALL_EXTENTS_OPEN_CLOSED :
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
3890 EQ (sym, Qstart_in_region) ? ME_START_IN_REGION :
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
3891 EQ (sym, Qend_in_region) ? ME_END_IN_REGION :
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3892 EQ (sym, Qstart_and_end_in_region) ? ME_START_AND_END_IN_REGION :
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
3893 EQ (sym, Qstart_or_end_in_region) ? ME_START_OR_END_IN_REGION :
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
3894 EQ (sym, Qnegate_in_region) ? ME_NEGATE_IN_REGION :
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3895 (signal_simple_error ("Invalid `map-extents' flag", sym), 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3896
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3897 flags = XCDR (flags);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3898 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3899 return retval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3900 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3901
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3902 DEFUN ("extent-in-region-p", Fextent_in_region_p, 1, 4, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3903 Return whether EXTENT overlaps a specified region.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3904 This is equivalent to whether `map-extents' would visit EXTENT when called
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3905 with these args.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3906 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3907 (extent, from, to, flags))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3908 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3909 Bytind start, end;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
3910 EXTENT ext = decode_extent (extent, DE_MUST_BE_ATTACHED);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
3911 Lisp_Object obj = extent_object (ext);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
3912
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3913 get_buffer_or_string_range_byte (obj, from, to, &start, &end, GB_ALLOW_NIL |
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3914 GB_ALLOW_PAST_ACCESSIBLE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3915
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
3916 return extent_in_region_p (ext, start, end, decode_map_extents_flags (flags)) ?
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
3917 Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3918 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3919
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3920 struct slow_map_extents_arg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3921 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3922 Lisp_Object map_arg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3923 Lisp_Object map_routine;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3924 Lisp_Object result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3925 Lisp_Object property;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3926 Lisp_Object value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3927 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3928
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3929 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3930 slow_map_extents_function (EXTENT extent, void *arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3931 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3932 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3933 struct slow_map_extents_arg *closure = (struct slow_map_extents_arg *) arg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3934 Lisp_Object extent_obj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3935
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3936 XSETEXTENT (extent_obj, extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3937
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3938 /* make sure this extent qualifies according to the PROPERTY
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3939 and VALUE args */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3940
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3941 if (!NILP (closure->property))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3942 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3943 Lisp_Object value = Fextent_property (extent_obj, closure->property,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3944 Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3945 if ((NILP (closure->value) && NILP (value)) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3946 (!NILP (closure->value) && !EQ (value, closure->value)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3947 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3948 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3949
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3950 closure->result = call2 (closure->map_routine, extent_obj,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3951 closure->map_arg);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
3952 return !NILP (closure->result);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3953 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3954
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3955 DEFUN ("map-extents", Fmap_extents, 1, 8, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3956 Map FUNCTION over the extents which overlap a region in OBJECT.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3957 OBJECT is normally a buffer or string but could be an extent (see below).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3958 The region is normally bounded by [FROM, TO) (i.e. the beginning of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3959 region is closed and the end of the region is open), but this can be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3960 changed with the FLAGS argument (see below for a complete discussion).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3961
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3962 FUNCTION is called with the arguments (extent, MAPARG). The arguments
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3963 OBJECT, FROM, TO, MAPARG, and FLAGS are all optional and default to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3964 the current buffer, the beginning of OBJECT, the end of OBJECT, nil,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3965 and nil, respectively. `map-extents' returns the first non-nil result
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3966 produced by FUNCTION, and no more calls to FUNCTION are made after it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3967 returns non-nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3968
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3969 If OBJECT is an extent, FROM and TO default to the extent's endpoints,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3970 and the mapping omits that extent and its predecessors. This feature
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3971 supports restarting a loop based on `map-extents'. Note: OBJECT must
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3972 be attached to a buffer or string, and the mapping is done over that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3973 buffer or string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3974
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3975 An extent overlaps the region if there is any point in the extent that is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3976 also in the region. (For the purpose of overlap, zero-length extents and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3977 regions are treated as closed on both ends regardless of their endpoints'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3978 specified open/closedness.) Note that the endpoints of an extent or region
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3979 are considered to be in that extent or region if and only if the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3980 corresponding end is closed. For example, the extent [5,7] overlaps the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3981 region [2,5] because 5 is in both the extent and the region. However, (5,7]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3982 does not overlap [2,5] because 5 is not in the extent, and neither [5,7] nor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3983 \(5,7] overlaps the region [2,5) because 5 is not in the region.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3984
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3985 The optional FLAGS can be a symbol or a list of one or more symbols,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3986 modifying the behavior of `map-extents'. Allowed symbols are:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3987
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3988 end-closed The region's end is closed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3989
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3990 start-open The region's start is open.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3991
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3992 all-extents-closed Treat all extents as closed on both ends for the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3993 purpose of determining whether they overlap the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3994 region, irrespective of their actual open- or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3995 closedness.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3996 all-extents-open Treat all extents as open on both ends.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3997 all-extents-closed-open Treat all extents as start-closed, end-open.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3998 all-extents-open-closed Treat all extents as start-open, end-closed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3999
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4000 start-in-region In addition to the above conditions for extent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4001 overlap, the extent's start position must lie within
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4002 the specified region. Note that, for this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4003 condition, open start positions are treated as if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4004 0.5 was added to the endpoint's value, and open
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4005 end positions are treated as if 0.5 was subtracted
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4006 from the endpoint's value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4007 end-in-region The extent's end position must lie within the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4008 region.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4009 start-and-end-in-region Both the extent's start and end positions must lie
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4010 within the region.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4011 start-or-end-in-region Either the extent's start or end position must lie
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4012 within the region.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4013
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4014 negate-in-region The condition specified by a `*-in-region' flag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4015 must NOT hold for the extent to be considered.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4016
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4017
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4018 At most one of `all-extents-closed', `all-extents-open',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4019 `all-extents-closed-open', and `all-extents-open-closed' may be specified.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4020
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4021 At most one of `start-in-region', `end-in-region',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4022 `start-and-end-in-region', and `start-or-end-in-region' may be specified.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4023
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4024 If optional arg PROPERTY is non-nil, only extents with that property set
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4025 on them will be visited. If optional arg VALUE is non-nil, only extents
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4026 whose value for that property is `eq' to VALUE will be visited.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4027 */
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
4028 (function, object, from, to, maparg, flags, property, value))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4029 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4030 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4031 struct slow_map_extents_arg closure;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4032 unsigned int me_flags;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4033 Bytind start, end;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4034 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4035 EXTENT after = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4036
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4037 if (EXTENTP (object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4038 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4039 after = decode_extent (object, DE_MUST_BE_ATTACHED);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4040 if (NILP (from))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4041 from = Fextent_start_position (object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4042 if (NILP (to))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4043 to = Fextent_end_position (object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4044 object = extent_object (after);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4045 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4046 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4047 object = decode_buffer_or_string (object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4048
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4049 get_buffer_or_string_range_byte (object, from, to, &start, &end,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4050 GB_ALLOW_NIL | GB_ALLOW_PAST_ACCESSIBLE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4051
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4052 me_flags = decode_map_extents_flags (flags);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4053
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4054 if (!NILP (property))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4055 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4056 if (!NILP (value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4057 value = canonicalize_extent_property (property, value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4058 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4059
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4060 GCPRO5 (function, maparg, object, property, value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4061
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4062 closure.map_arg = maparg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4063 closure.map_routine = function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4064 closure.result = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4065 closure.property = property;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4066 closure.value = value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4067
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4068 map_extents_bytind (start, end, slow_map_extents_function,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4069 (void *) &closure, object, after,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4070 /* You never know what the user might do ... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4071 me_flags | ME_MIGHT_CALL_ELISP);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4072
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4073 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4074 return closure.result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4075 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4076
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4077
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4078 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4079 /* mapping over extents -- other functions */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4080 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4081
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4082 /* ------------------------------- */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4083 /* map-extent-children */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4084 /* ------------------------------- */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4085
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4086 struct slow_map_extent_children_arg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4087 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4088 Lisp_Object map_arg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4089 Lisp_Object map_routine;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4090 Lisp_Object result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4091 Lisp_Object property;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4092 Lisp_Object value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4093 Bytind start_min;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4094 Bytind prev_start;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4095 Bytind prev_end;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4096 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4097
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4098 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4099 slow_map_extent_children_function (EXTENT extent, void *arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4100 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4101 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4102 struct slow_map_extent_children_arg *closure =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4103 (struct slow_map_extent_children_arg *) arg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4104 Lisp_Object extent_obj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4105 Bytind start = extent_endpoint_bytind (extent, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4106 Bytind end = extent_endpoint_bytind (extent, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4107 /* Make sure the extent starts inside the region of interest,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4108 rather than just overlaps it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4109 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4110 if (start < closure->start_min)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4111 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4112 /* Make sure the extent is not a child of a previous visited one.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4113 We know already, because of extent ordering,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4114 that start >= prev_start, and that if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4115 start == prev_start, then end <= prev_end.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4116 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4117 if (start == closure->prev_start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4118 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4119 if (end < closure->prev_end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4120 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4121 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4122 else /* start > prev_start */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4123 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4124 if (start < closure->prev_end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4125 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4126 /* corner case: prev_end can be -1 if there is no prev */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4127 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4128 XSETEXTENT (extent_obj, extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4129
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4130 /* make sure this extent qualifies according to the PROPERTY
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4131 and VALUE args */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4132
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4133 if (!NILP (closure->property))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4134 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4135 Lisp_Object value = Fextent_property (extent_obj, closure->property,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4136 Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4137 if ((NILP (closure->value) && NILP (value)) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4138 (!NILP (closure->value) && !EQ (value, closure->value)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4139 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4140 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4141
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4142 closure->result = call2 (closure->map_routine, extent_obj,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4143 closure->map_arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4144
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4145 /* Since the callback may change the buffer, compute all stored
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4146 buffer positions here.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4147 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4148 closure->start_min = -1; /* no need for this any more */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4149 closure->prev_start = extent_endpoint_bytind (extent, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4150 closure->prev_end = extent_endpoint_bytind (extent, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4151
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
4152 return !NILP (closure->result);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4153 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4154
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4155 DEFUN ("map-extent-children", Fmap_extent_children, 1, 8, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4156 Map FUNCTION over the extents in the region from FROM to TO.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4157 FUNCTION is called with arguments (extent, MAPARG). See `map-extents'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4158 for a full discussion of the arguments FROM, TO, and FLAGS.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4159
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4160 The arguments are the same as for `map-extents', but this function differs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4161 in that it only visits extents which start in the given region, and also
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4162 in that, after visiting an extent E, it skips all other extents which start
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4163 inside E but end before E's end.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4164
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4165 Thus, this function may be used to walk a tree of extents in a buffer:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4166 (defun walk-extents (buffer &optional ignore)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4167 (map-extent-children 'walk-extents buffer))
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4168 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4169 (function, object, from, to, maparg, flags, property, value))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4170 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4171 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4172 struct slow_map_extent_children_arg closure;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4173 unsigned int me_flags;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4174 Bytind start, end;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4175 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4176 EXTENT after = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4177
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4178 if (EXTENTP (object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4179 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4180 after = decode_extent (object, DE_MUST_BE_ATTACHED);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4181 if (NILP (from))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4182 from = Fextent_start_position (object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4183 if (NILP (to))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4184 to = Fextent_end_position (object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4185 object = extent_object (after);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4186 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4187 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4188 object = decode_buffer_or_string (object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4189
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4190 get_buffer_or_string_range_byte (object, from, to, &start, &end,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4191 GB_ALLOW_NIL | GB_ALLOW_PAST_ACCESSIBLE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4192
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4193 me_flags = decode_map_extents_flags (flags);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4194
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4195 if (!NILP (property))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4196 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4197 if (!NILP (value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4198 value = canonicalize_extent_property (property, value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4199 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4200
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4201 GCPRO5 (function, maparg, object, property, value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4202
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4203 closure.map_arg = maparg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4204 closure.map_routine = function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4205 closure.result = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4206 closure.property = property;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4207 closure.value = value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4208 closure.start_min = start;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4209 closure.prev_start = -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4210 closure.prev_end = -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4211 map_extents_bytind (start, end, slow_map_extent_children_function,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4212 (void *) &closure, object, after,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4213 /* You never know what the user might do ... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4214 me_flags | ME_MIGHT_CALL_ELISP);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4215
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4216 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4217 return closure.result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4218 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4219
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4220 /* ------------------------------- */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4221 /* extent-at */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4222 /* ------------------------------- */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4223
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4224 /* find "smallest" matching extent containing pos -- (flag == 0) means
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4225 all extents match, else (EXTENT_FLAGS (extent) & flag) must be true;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4226 for more than one matching extent with precisely the same endpoints,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4227 we choose the last extent in the extents_list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4228 The search stops just before "before", if that is non-null.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4229 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4230
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4231 struct extent_at_arg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4232 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4233 EXTENT best_match;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4234 Memind best_start;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4235 Memind best_end;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4236 Lisp_Object prop;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4237 EXTENT before;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4238 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4239
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4240 enum extent_at_flag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4241 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4242 EXTENT_AT_AFTER,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4243 EXTENT_AT_BEFORE,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4244 EXTENT_AT_AT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4245 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4246
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4247 static enum extent_at_flag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4248 decode_extent_at_flag (Lisp_Object at_flag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4249 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4250 if (NILP (at_flag))
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
4251 return EXTENT_AT_AFTER;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
4252
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
4253 CHECK_SYMBOL (at_flag);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
4254 if (EQ (at_flag, Qafter)) return EXTENT_AT_AFTER;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
4255 if (EQ (at_flag, Qbefore)) return EXTENT_AT_BEFORE;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
4256 if (EQ (at_flag, Qat)) return EXTENT_AT_AT;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
4257
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
4258 signal_simple_error ("Invalid AT-FLAG in `extent-at'", at_flag);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
4259 return EXTENT_AT_AFTER; /* unreached */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4260 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4261
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4262 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4263 extent_at_mapper (EXTENT e, void *arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4264 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4265 struct extent_at_arg *closure = (struct extent_at_arg *) arg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4266
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4267 if (e == closure->before)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4268 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4269
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4270 /* If closure->prop is non-nil, then the extent is only acceptable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4271 if it has a non-nil value for that property. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4272 if (!NILP (closure->prop))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4273 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4274 Lisp_Object extent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4275 XSETEXTENT (extent, e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4276 if (NILP (Fextent_property (extent, closure->prop, Qnil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4277 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4278 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4279
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4280 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4281 EXTENT current = closure->best_match;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4282
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4283 if (!current)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4284 goto accept;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4285 /* redundant but quick test */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4286 else if (extent_start (current) > extent_start (e))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4287 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4288
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4289 /* we return the "last" best fit, instead of the first --
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4290 this is because then the glyph closest to two equivalent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4291 extents corresponds to the "extent-at" the text just past
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4292 that same glyph */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4293 else if (!EXTENT_LESS_VALS (e, closure->best_start,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4294 closure->best_end))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4295 goto accept;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4296 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4297 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4298 accept:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4299 closure->best_match = e;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4300 closure->best_start = extent_start (e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4301 closure->best_end = extent_end (e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4302 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4303
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4304 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4305 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4306
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4307 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4308 extent_at_bytind (Bytind position, Lisp_Object object, Lisp_Object property,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4309 EXTENT before, enum extent_at_flag at_flag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4310 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4311 struct extent_at_arg closure;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
4312 Lisp_Object extent_obj;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4313
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4314 /* it might be argued that invalid positions should cause
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4315 errors, but the principle of least surprise dictates that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4316 nil should be returned (extent-at is often used in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4317 response to a mouse event, and in many cases previous events
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4318 have changed the buffer contents).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4319
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4320 Also, the openness stuff in the text-property code currently
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4321 does not check its limits and might go off the end. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4322 if ((at_flag == EXTENT_AT_BEFORE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4323 ? position <= buffer_or_string_absolute_begin_byte (object)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4324 : position < buffer_or_string_absolute_begin_byte (object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4325 || (at_flag == EXTENT_AT_AFTER
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4326 ? position >= buffer_or_string_absolute_end_byte (object)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4327 : position > buffer_or_string_absolute_end_byte (object)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4328 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4329
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4330 closure.best_match = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4331 closure.prop = property;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4332 closure.before = before;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4333
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4334 map_extents_bytind (at_flag == EXTENT_AT_BEFORE ? position - 1 : position,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4335 at_flag == EXTENT_AT_AFTER ? position + 1 : position,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4336 extent_at_mapper, (void *) &closure, object, 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4337 ME_START_OPEN | ME_ALL_EXTENTS_CLOSED);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4338
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4339 if (!closure.best_match)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4340 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4341
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4342 XSETEXTENT (extent_obj, closure.best_match);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4343 return extent_obj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4344 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4345
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4346 DEFUN ("extent-at", Fextent_at, 1, 5, 0, /*
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4347 Find "smallest" extent at POS in OBJECT having PROPERTY set.
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4348 Normally, an extent is "at" POS if it overlaps the region (POS, POS+1);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4349 i.e. if it covers the character after POS. (However, see the definition
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4350 of AT-FLAG.) "Smallest" means the extent that comes last in the display
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4351 order; this normally means the extent whose start position is closest to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4352 POS. See `next-extent' for more information.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4353 OBJECT specifies a buffer or string and defaults to the current buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4354 PROPERTY defaults to nil, meaning that any extent will do.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4355 Properties are attached to extents with `set-extent-property', which see.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4356 Returns nil if POS is invalid or there is no matching extent at POS.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4357 If the fourth argument BEFORE is not nil, it must be an extent; any returned
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4358 extent will precede that extent. This feature allows `extent-at' to be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4359 used by a loop over extents.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4360 AT-FLAG controls how end cases are handled, and should be one of:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4361
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4362 nil or `after' An extent is at POS if it covers the character
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4363 after POS. This is consistent with the way
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4364 that text properties work.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4365 `before' An extent is at POS if it covers the character
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4366 before POS.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4367 `at' An extent is at POS if it overlaps or abuts POS.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4368 This includes all zero-length extents at POS.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4369
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4370 Note that in all cases, the start-openness and end-openness of the extents
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4371 considered is ignored. If you want to pay attention to those properties,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4372 you should use `map-extents', which gives you more control.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4373 */
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 48
diff changeset
4374 (pos, object, property, before, at_flag))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4375 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4376 Bytind position;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4377 EXTENT before_extent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4378 enum extent_at_flag fl;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4379
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4380 object = decode_buffer_or_string (object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4381 position = get_buffer_or_string_pos_byte (object, pos, GB_NO_ERROR_IF_BAD);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4382 if (NILP (before))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4383 before_extent = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4384 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4385 before_extent = decode_extent (before, DE_MUST_BE_ATTACHED);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4386 if (before_extent && !EQ (object, extent_object (before_extent)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4387 signal_simple_error ("extent not in specified buffer or string", object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4388 fl = decode_extent_at_flag (at_flag);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4389
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4390 return extent_at_bytind (position, object, property, before_extent, fl);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4391 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4392
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4393 /* ------------------------------- */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4394 /* verify_extent_modification() */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4395 /* ------------------------------- */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4396
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4397 /* verify_extent_modification() is called when a buffer or string is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4398 modified to check whether the modification is occuring inside a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4399 read-only extent.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4400 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4401
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4402 struct verify_extents_arg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4403 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4404 Lisp_Object object;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4405 Memind start;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4406 Memind end;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4407 Lisp_Object iro; /* value of inhibit-read-only */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4408 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4409
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4410 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4411 verify_extent_mapper (EXTENT extent, void *arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4412 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4413 struct verify_extents_arg *closure = (struct verify_extents_arg *) arg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4414 Lisp_Object prop = extent_read_only (extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4415
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4416 if (NILP (prop))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4417 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4418
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4419 if (CONSP (closure->iro) && !NILP (Fmemq (prop, closure->iro)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4420 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4421
100
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 98
diff changeset
4422 #if 0 /* Nobody seems to care for this any more -sb */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4423 /* Allow deletion if the extent is completely contained in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4424 the region being deleted.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4425 This is important for supporting tokens which are internally
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4426 write-protected, but which can be killed and yanked as a whole.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4427 Ignore open/closed distinctions at this point.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4428 -- Rose
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4429 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4430 if (closure->start != closure->end &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4431 extent_start (extent) >= closure->start &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4432 extent_end (extent) <= closure->end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4433 return 0;
100
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 98
diff changeset
4434 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4435
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4436 while (1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4437 Fsignal (Qbuffer_read_only, (list1 (closure->object)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4438
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4439 RETURN_NOT_REACHED(0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4440 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4441
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4442 /* Value of Vinhibit_read_only is precomputed and passed in for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4443 efficiency */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4444
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4445 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4446 verify_extent_modification (Lisp_Object object, Bytind from, Bytind to,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4447 Lisp_Object inhibit_read_only_value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4448 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4449 int closed;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4450 struct verify_extents_arg closure;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4451
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4452 /* If insertion, visit closed-endpoint extents touching the insertion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4453 point because the text would go inside those extents. If deletion,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4454 treat the range as open on both ends so that touching extents are not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4455 visited. Note that we assume that an insertion is occurring if the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4456 changed range has zero length, and a deletion otherwise. This
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4457 fails if a change (i.e. non-insertion, non-deletion) is happening.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4458 As far as I know, this doesn't currently occur in XEmacs. --ben */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4459 closed = (from==to);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4460 closure.object = object;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4461 closure.start = buffer_or_string_bytind_to_memind (object, from);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4462 closure.end = buffer_or_string_bytind_to_memind (object, to);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4463 closure.iro = inhibit_read_only_value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4464
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4465 map_extents_bytind (from, to, verify_extent_mapper, (void *) &closure,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4466 object, 0, closed ? ME_END_CLOSED : ME_START_OPEN);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4467 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4468
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4469 /* ------------------------------------ */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4470 /* process_extents_for_insertion() */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4471 /* ------------------------------------ */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4472
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4473 struct process_extents_for_insertion_arg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4474 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4475 Bytind opoint;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4476 int length;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4477 Lisp_Object object;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4478 };
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4479
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4480 /* A region of length LENGTH was just inserted at OPOINT. Modify all
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4481 of the extents as required for the insertion, based on their
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4482 start-open/end-open properties.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4483 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4484
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4485 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4486 process_extents_for_insertion_mapper (EXTENT extent, void *arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4487 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4488 struct process_extents_for_insertion_arg *closure =
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4489 (struct process_extents_for_insertion_arg *) arg;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4490 Memind indice = buffer_or_string_bytind_to_memind (closure->object,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4491 closure->opoint);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4492
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4493 /* When this function is called, one end of the newly-inserted text should
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4494 be adjacent to some endpoint of the extent, or disjoint from it. If
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4495 the insertion overlaps any existing extent, something is wrong.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4496 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4497 #ifdef ERROR_CHECK_EXTENTS
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4498 if (extent_start (extent) > indice &&
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4499 extent_start (extent) < indice + closure->length)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4500 abort ();
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4501 if (extent_end (extent) > indice &&
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4502 extent_end (extent) < indice + closure->length)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4503 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4504 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4505
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4506 /* The extent-adjustment code adjusted the extent's endpoints as if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4507 they were markers -- endpoints at the gap (i.e. the insertion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4508 point) go to the left of the insertion point, which is correct
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4509 for [) extents. We need to fix the other kinds of extents.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4510
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4511 Note that both conditions below will hold for zero-length (]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4512 extents at the gap. Zero-length () extents would get adjusted
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4513 such that their start is greater than their end; we treat them
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4514 as [) extents. This is unfortunately an inelegant part of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4515 extent model, but there is no way around it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4516
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4517 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4518 Memind new_start, new_end;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4519
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4520 new_start = extent_start (extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4521 new_end = extent_end (extent);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4522 if (indice == extent_start (extent) && extent_start_open_p (extent) &&
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4523 /* coerce zero-length () extents to [) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4524 new_start != new_end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4525 new_start += closure->length;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4526 if (indice == extent_end (extent) && !extent_end_open_p (extent))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4527 new_end += closure->length;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4528 set_extent_endpoints_1 (extent, new_start, new_end);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4529 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4530
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4531 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4532 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4533
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4534 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4535 process_extents_for_insertion (Lisp_Object object, Bytind opoint,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4536 Bytecount length)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4537 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4538 struct process_extents_for_insertion_arg closure;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4539
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4540 closure.opoint = opoint;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4541 closure.length = length;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4542 closure.object = object;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4543
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4544 map_extents_bytind (opoint, opoint + length,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4545 process_extents_for_insertion_mapper,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4546 (void *) &closure, object, 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4547 ME_END_CLOSED | ME_MIGHT_MODIFY_EXTENTS |
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4548 ME_INCLUDE_INTERNAL);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4549 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4550
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4551 /* ------------------------------------ */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4552 /* process_extents_for_deletion() */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4553 /* ------------------------------------ */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4554
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4555 struct process_extents_for_deletion_arg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4556 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4557 Memind start, end;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4558 int destroy_included_extents;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4559 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4560
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4561 /* This function is called when we're about to delete the range [from, to].
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4562 Detach all of the extents that are completely inside the range [from, to],
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4563 if they're detachable or open-open. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4564
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4565 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4566 process_extents_for_deletion_mapper (EXTENT extent, void *arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4567 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4568 struct process_extents_for_deletion_arg *closure =
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4569 (struct process_extents_for_deletion_arg *) arg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4570
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4571 /* If the extent lies completely within the range that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4572 is being deleted, then nuke the extent if it's detachable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4573 (otherwise, it will become a zero-length extent). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4574
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4575 if (closure->start <= extent_start (extent) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4576 extent_end (extent) <= closure->end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4577 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4578 if (extent_detachable_p (extent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4579 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4580 if (closure->destroy_included_extents)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4581 destroy_extent (extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4582 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4583 extent_detach (extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4584 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4585 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4586
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4587 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4588 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4589
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4590 /* DESTROY_THEM means destroy the extents instead of just deleting them.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4591 It is unused currently, but perhaps might be used (there used to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4592 be a function process_extents_for_destruction(), #if 0'd out,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4593 that did the equivalent). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4594 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4595 process_extents_for_deletion (Lisp_Object object, Bytind from,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4596 Bytind to, int destroy_them)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4597 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4598 struct process_extents_for_deletion_arg closure;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4599
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4600 closure.start = buffer_or_string_bytind_to_memind (object, from);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4601 closure.end = buffer_or_string_bytind_to_memind (object, to);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4602 closure.destroy_included_extents = destroy_them;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4603
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4604 map_extents_bytind (from, to, process_extents_for_deletion_mapper,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4605 (void *) &closure, object, 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4606 ME_END_CLOSED | ME_MIGHT_MODIFY_EXTENTS);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4607 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4608
373
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4609 /* ------------------------------- */
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4610 /* report_extent_modification() */
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4611 /* ------------------------------- */
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4612 struct report_extent_modification_closure {
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4613 Lisp_Object buffer;
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4614 Bufpos start, end;
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4615 int afterp;
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4616 int speccount;
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4617 };
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4618
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
4619 /* This juggling with the pointer to another file's global variable is
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
4620 kind of yucky. Perhaps I should just export the variable. */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
4621 static int *inside_change_hook_pointer;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
4622
373
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4623 static Lisp_Object
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4624 report_extent_modification_restore (Lisp_Object buffer)
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4625 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
4626 *inside_change_hook_pointer = 0;
373
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4627 if (current_buffer != XBUFFER (buffer))
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4628 Fset_buffer (buffer);
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4629 return Qnil;
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4630 }
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4631
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4632 static int
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4633 report_extent_modification_mapper (EXTENT extent, void *arg)
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4634 {
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4635 struct report_extent_modification_closure *closure =
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4636 (struct report_extent_modification_closure *)arg;
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4637 Lisp_Object exobj, startobj, endobj;
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4638 Lisp_Object hook = (closure->afterp
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4639 ? extent_after_change_functions (extent)
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4640 : extent_before_change_functions (extent));
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4641 if (NILP (hook))
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4642 return 0;
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4643
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4644 XSETEXTENT (exobj, extent);
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4645 XSETINT (startobj, closure->start);
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4646 XSETINT (endobj, closure->end);
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4647
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4648 /* Now that we are sure to call elisp, set up an unwind-protect so
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4649 inside_change_hook gets restored in case we throw. Also record
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4650 the current buffer, in case we change it. Do the recording only
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
4651 once. */
373
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4652 if (closure->speccount == -1)
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4653 {
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4654 closure->speccount = specpdl_depth ();
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4655 record_unwind_protect (report_extent_modification_restore,
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4656 Fcurrent_buffer ());
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4657 }
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4658
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4659 /* The functions will expect closure->buffer to be the current
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4660 buffer, so change it if it isn't. */
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4661 if (current_buffer != XBUFFER (closure->buffer))
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4662 Fset_buffer (closure->buffer);
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4663
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4664 /* #### It's a shame that we can't use any of the existing run_hook*
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4665 functions here. This is so because all of them work with
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4666 symbols, to be able to retrieve default values of local hooks.
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
4667 <sigh> */
373
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4668
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4669 if (!CONSP (hook) || EQ (XCAR (hook), Qlambda))
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4670 call3 (hook, exobj, startobj, endobj);
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4671 else
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4672 {
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4673 Lisp_Object tail;
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4674 EXTERNAL_LIST_LOOP (tail, hook)
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4675 call3 (XCAR (tail), exobj, startobj, endobj);
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4676 }
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4677 return 0;
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4678 }
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4679
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4680 void
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4681 report_extent_modification (Lisp_Object buffer, Bufpos start, Bufpos end,
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
4682 int *inside, int afterp)
373
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4683 {
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4684 struct report_extent_modification_closure closure;
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4685
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4686 closure.buffer = buffer;
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4687 closure.start = start;
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4688 closure.end = end;
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4689 closure.afterp = afterp;
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4690 closure.speccount = -1;
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4691
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
4692 inside_change_hook_pointer = inside;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
4693 *inside = 1;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
4694
373
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4695 map_extents (start, end, report_extent_modification_mapper, (void *)&closure,
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4696 buffer, NULL, ME_MIGHT_CALL_ELISP);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
4697
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
4698 if (closure.speccount == -1)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
4699 *inside = 0;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
4700 else
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
4701 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
4702 /* We mustn't unbind when closure.speccount != -1 because
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
4703 map_extents_bytind has already done that. */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
4704 assert (*inside == 0);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
4705 }
373
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4706 }
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4707
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4708
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4709 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4710 /* extent properties */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4711 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4712
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4713 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4714 set_extent_invisible (EXTENT extent, Lisp_Object value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4715 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4716 if (!EQ (extent_invisible (extent), value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4717 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4718 set_extent_invisible_1 (extent, value);
110
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 100
diff changeset
4719 extent_changed_for_redisplay (extent, 1, 1);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4720 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4721 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4722
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4723 /* This function does "memoization" -- similar to the interning
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4724 that happens with symbols. Given a list of faces, an equivalent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4725 list is returned such that if this function is called twice with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4726 input that is `equal', the resulting outputs will be `eq'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4727
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4728 Note that the inputs and outputs are in general *not* `equal' --
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4729 faces in symbol form become actual face objects in the output.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4730 This is necessary so that temporary faces stay around. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4731
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4732 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4733 memoize_extent_face_internal (Lisp_Object list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4734 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4735 int len;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4736 int thelen;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4737 Lisp_Object cons, thecons;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4738 Lisp_Object oldtail, tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4739 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4740
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4741 if (NILP (list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4742 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4743 if (!CONSP (list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4744 return Fget_face (list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4745
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4746 /* To do the memoization, we use a hash table mapping from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4747 external lists to internal lists. We do `equal' comparisons
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4748 on the keys so the memoization works correctly.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4749
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4750 Note that we canonicalize things so that the keys in the
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
4751 hash table (the external lists) always contain symbols and
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4752 the values (the internal lists) always contain face objects.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4753
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4754 We also maintain a "reverse" table that maps from the internal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4755 lists to the external equivalents. The idea here is twofold:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4756
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4757 1) `extent-face' wants to return a list containing face symbols
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4758 rather than face objects.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4759 2) We don't want things to get quite so messed up if the user
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4760 maliciously side-effects the returned lists.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4761 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4762
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4763 len = XINT (Flength (list));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4764 thelen = XINT (Flength (Vextent_face_reusable_list));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4765 oldtail = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4766 tail = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4767 GCPRO1 (oldtail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4768
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4769 /* We canonicalize the given list into another list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4770 We try to avoid consing except when necessary, so we have
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4771 a reusable list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4772 */
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4773
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4774 if (thelen < len)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4775 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4776 cons = Vextent_face_reusable_list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4777 while (!NILP (XCDR (cons)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4778 cons = XCDR (cons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4779 XCDR (cons) = Fmake_list (make_int (len - thelen), Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4780 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4781 else if (thelen > len)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4782 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4783 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4784
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4785 /* Truncate the list temporarily so it's the right length;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4786 remember the old tail. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4787 cons = Vextent_face_reusable_list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4788 for (i = 0; i < len - 1; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4789 cons = XCDR (cons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4790 tail = cons;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4791 oldtail = XCDR (cons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4792 XCDR (cons) = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4793 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4794
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4795 thecons = Vextent_face_reusable_list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4796 EXTERNAL_LIST_LOOP (cons, list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4797 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4798 Lisp_Object face = Fget_face (XCAR (cons));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4799
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4800 XCAR (thecons) = Fface_name (face);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4801 thecons = XCDR (thecons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4802 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4803
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4804 list = Fgethash (Vextent_face_reusable_list, Vextent_face_memoize_hash_table,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4805 Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4806 if (NILP (list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4807 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4808 Lisp_Object symlist = Fcopy_sequence (Vextent_face_reusable_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4809 Lisp_Object facelist = Fcopy_sequence (Vextent_face_reusable_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4810
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4811 LIST_LOOP (cons, facelist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4812 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4813 XCAR (cons) = Fget_face (XCAR (cons));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4814 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4815 Fputhash (symlist, facelist, Vextent_face_memoize_hash_table);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4816 Fputhash (facelist, symlist, Vextent_face_reverse_memoize_hash_table);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4817 list = facelist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4818 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4819
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4820 /* Now restore the truncated tail of the reusable list, if necessary. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4821 if (!NILP (tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4822 XCDR (tail) = oldtail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4823
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4824 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4825 return list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4826 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4827
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4828 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4829 external_of_internal_memoized_face (Lisp_Object face)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4830 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4831 if (NILP (face))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4832 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4833 else if (!CONSP (face))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4834 return XFACE (face)->name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4835 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4836 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4837 face = Fgethash (face, Vextent_face_reverse_memoize_hash_table,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4838 Qunbound);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4839 assert (!UNBOUNDP (face));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4840 return face;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4841 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4842 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4843
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4844 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4845 canonicalize_extent_property (Lisp_Object prop, Lisp_Object value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4846 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4847 if (EQ (prop, Qface) || EQ (prop, Qmouse_face))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4848 value = (external_of_internal_memoized_face
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4849 (memoize_extent_face_internal (value)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4850 return value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4851 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4852
189
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
4853 /* Do we need a lisp-level function ? */
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
4854 DEFUN ("set-extent-initial-redisplay-function", Fset_extent_initial_redisplay_function,
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
4855 2,2,0,/*
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 203
diff changeset
4856 Note: This feature is experimental!
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
4857
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 203
diff changeset
4858 Set initial-redisplay-function of EXTENT to the function
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 203
diff changeset
4859 FUNCTION.
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 203
diff changeset
4860
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 203
diff changeset
4861 The first time the EXTENT is (re)displayed, an eval event will be
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
4862 dispatched calling FUNCTION with EXTENT as its only argument.
189
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
4863 */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
4864 (extent, function))
189
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
4865 {
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
4866 EXTENT e = decode_extent(extent, DE_MUST_BE_ATTACHED);
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
4867
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
4868 e = extent_ancestor (e); /* Is this needed? Macro also does chasing!*/
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 203
diff changeset
4869 set_extent_initial_redisplay_function(e,function);
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 203
diff changeset
4870 extent_in_red_event_p(e) = 0; /* If the function changed we can spawn
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
4871 new events */
189
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
4872 extent_changed_for_redisplay(e,1,0); /* Do we need to mark children too ?*/
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
4873
189
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
4874 return function;
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
4875 }
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
4876
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4877 DEFUN ("extent-face", Fextent_face, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4878 Return the name of the face in which EXTENT is displayed, or nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4879 if the extent's face is unspecified. This might also return a list
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
4880 of face names.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4881 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4882 (extent))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4883 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4884 Lisp_Object face;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4885
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4886 CHECK_EXTENT (extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4887 face = extent_face (XEXTENT (extent));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4888
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4889 return external_of_internal_memoized_face (face);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4890 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4891
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4892 DEFUN ("set-extent-face", Fset_extent_face, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4893 Make the given EXTENT have the graphic attributes specified by FACE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4894 FACE can also be a list of faces, and all faces listed will apply,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4895 with faces earlier in the list taking priority over those later in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4896 list.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4897 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4898 (extent, face))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4899 {
110
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 100
diff changeset
4900 EXTENT e = decode_extent(extent, 0);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4901 Lisp_Object orig_face = face;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4902
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4903 /* retrieve the ancestor for efficiency and proper redisplay noting. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4904 e = extent_ancestor (e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4905
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4906 face = memoize_extent_face_internal (face);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4907
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4908 extent_face (e) = face;
110
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 100
diff changeset
4909 extent_changed_for_redisplay (e, 1, 0);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4910
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4911 return orig_face;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4912 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4913
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4914
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4915 DEFUN ("extent-mouse-face", Fextent_mouse_face, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4916 Return the face used to highlight EXTENT when the mouse passes over it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4917 The return value will be a face name, a list of face names, or nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4918 if the extent's mouse face is unspecified.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4919 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4920 (extent))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4921 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4922 Lisp_Object face;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4923
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4924 CHECK_EXTENT (extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4925 face = extent_mouse_face (XEXTENT (extent));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4926
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4927 return external_of_internal_memoized_face (face);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4928 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4929
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4930 DEFUN ("set-extent-mouse-face", Fset_extent_mouse_face, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4931 Set the face used to highlight EXTENT when the mouse passes over it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4932 FACE can also be a list of faces, and all faces listed will apply,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4933 with faces earlier in the list taking priority over those later in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4934 list.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4935 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
4936 (extent, face))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4937 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4938 EXTENT e;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4939 Lisp_Object orig_face = face;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4940
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4941 CHECK_EXTENT (extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4942 e = XEXTENT (extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4943 /* retrieve the ancestor for efficiency and proper redisplay noting. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4944 e = extent_ancestor (e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4945
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4946 face = memoize_extent_face_internal (face);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4947
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4948 set_extent_mouse_face (e, face);
110
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 100
diff changeset
4949 extent_changed_for_redisplay (e, 1, 0);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4950
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4951 return orig_face;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4952 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4953
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4954 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4955 set_extent_glyph (EXTENT extent, Lisp_Object glyph, int endp,
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
4956 glyph_layout layout)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4957 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4958 extent = extent_ancestor (extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4959
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4960 if (!endp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4961 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4962 set_extent_begin_glyph (extent, glyph);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4963 extent_begin_glyph_layout (extent) = layout;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4964 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4965 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4966 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4967 set_extent_end_glyph (extent, glyph);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4968 extent_end_glyph_layout (extent) = layout;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4969 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4970
110
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 100
diff changeset
4971 extent_changed_for_redisplay (extent, 1, 0);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4972 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4973
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4974 static Lisp_Object
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
4975 glyph_layout_to_symbol (glyph_layout layout)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4976 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4977 switch (layout)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4978 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
4979 case GL_TEXT: return Qtext;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4980 case GL_OUTSIDE_MARGIN: return Qoutside_margin;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
4981 case GL_INSIDE_MARGIN: return Qinside_margin;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
4982 case GL_WHITESPACE: return Qwhitespace;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
4983 default:
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
4984 abort ();
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
4985 return Qnil; /* unreached */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4986 }
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
4987 }
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
4988
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
4989 static glyph_layout
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4990 symbol_to_glyph_layout (Lisp_Object layout_obj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4991 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4992 if (NILP (layout_obj))
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
4993 return GL_TEXT;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
4994
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
4995 CHECK_SYMBOL (layout_obj);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
4996 if (EQ (layout_obj, Qoutside_margin)) return GL_OUTSIDE_MARGIN;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
4997 if (EQ (layout_obj, Qinside_margin)) return GL_INSIDE_MARGIN;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
4998 if (EQ (layout_obj, Qwhitespace)) return GL_WHITESPACE;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
4999 if (EQ (layout_obj, Qtext)) return GL_TEXT;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5000
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
5001 signal_simple_error ("Unknown glyph layout type", layout_obj);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5002 return GL_TEXT; /* unreached */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5003 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5004
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5005 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5006 set_extent_glyph_1 (Lisp_Object extent_obj, Lisp_Object glyph, int endp,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5007 Lisp_Object layout_obj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5008 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
5009 EXTENT extent = decode_extent (extent_obj, DE_MUST_HAVE_BUFFER);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5010 glyph_layout layout = symbol_to_glyph_layout (layout_obj);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5011
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
5012 /* Make sure we've actually been given a valid glyph or it's nil
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
5013 (meaning we're deleting a glyph from an extent). */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5014 if (!NILP (glyph))
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
5015 CHECK_BUFFER_GLYPH (glyph);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5016
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5017 set_extent_glyph (extent, glyph, endp, layout);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5018 return glyph;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5019 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5020
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5021 DEFUN ("set-extent-begin-glyph", Fset_extent_begin_glyph, 2, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5022 Display a bitmap, subwindow or string at the beginning of EXTENT.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5023 BEGIN-GLYPH must be a glyph object. The layout policy defaults to `text'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5024 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5025 (extent, begin_glyph, layout))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5026 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5027 return set_extent_glyph_1 (extent, begin_glyph, 0, layout);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5028 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5029
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5030 DEFUN ("set-extent-end-glyph", Fset_extent_end_glyph, 2, 3, 0, /*
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
5031 Display a bitmap, subwindow or string at the end of EXTENT.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5032 END-GLYPH must be a glyph object. The layout policy defaults to `text'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5033 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5034 (extent, end_glyph, layout))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5035 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5036 return set_extent_glyph_1 (extent, end_glyph, 1, layout);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5037 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5038
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5039 DEFUN ("extent-begin-glyph", Fextent_begin_glyph, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5040 Return the glyph object displayed at the beginning of EXTENT.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5041 If there is none, nil is returned.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5042 */
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
5043 (extent))
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
5044 {
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
5045 return extent_begin_glyph (decode_extent (extent, 0));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5046 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5047
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5048 DEFUN ("extent-end-glyph", Fextent_end_glyph, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5049 Return the glyph object displayed at the end of EXTENT.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5050 If there is none, nil is returned.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5051 */
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
5052 (extent))
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
5053 {
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
5054 return extent_end_glyph (decode_extent (extent, 0));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5055 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5056
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5057 DEFUN ("set-extent-begin-glyph-layout", Fset_extent_begin_glyph_layout, 2, 2, 0, /*
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
5058 Set the layout policy of EXTENT's begin glyph.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5059 Access this using the `extent-begin-glyph-layout' function.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5060 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5061 (extent, layout))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5062 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5063 EXTENT e = decode_extent (extent, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5064 e = extent_ancestor (e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5065 extent_begin_glyph_layout (e) = symbol_to_glyph_layout (layout);
110
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 100
diff changeset
5066 extent_maybe_changed_for_redisplay (e, 1, 0);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5067 return layout;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5068 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5069
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5070 DEFUN ("set-extent-end-glyph-layout", Fset_extent_end_glyph_layout, 2, 2, 0, /*
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
5071 Set the layout policy of EXTENT's end glyph.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5072 Access this using the `extent-end-glyph-layout' function.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5073 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5074 (extent, layout))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5075 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5076 EXTENT e = decode_extent (extent, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5077 e = extent_ancestor (e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5078 extent_end_glyph_layout (e) = symbol_to_glyph_layout (layout);
110
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 100
diff changeset
5079 extent_maybe_changed_for_redisplay (e, 1, 0);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5080 return layout;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5081 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5082
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5083 DEFUN ("extent-begin-glyph-layout", Fextent_begin_glyph_layout, 1, 1, 0, /*
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
5084 Return the layout policy associated with EXTENT's begin glyph.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5085 Set this using the `set-extent-begin-glyph-layout' function.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5086 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5087 (extent))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5088 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5089 EXTENT e = decode_extent (extent, 0);
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
5090 return glyph_layout_to_symbol ((glyph_layout) extent_begin_glyph_layout (e));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5091 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5092
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5093 DEFUN ("extent-end-glyph-layout", Fextent_end_glyph_layout, 1, 1, 0, /*
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
5094 Return the layout policy associated with EXTENT's end glyph.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5095 Set this using the `set-extent-end-glyph-layout' function.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5096 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5097 (extent))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5098 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5099 EXTENT e = decode_extent (extent, 0);
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
5100 return glyph_layout_to_symbol ((glyph_layout) extent_end_glyph_layout (e));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5101 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5102
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5103 DEFUN ("set-extent-priority", Fset_extent_priority, 2, 2, 0, /*
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5104 Set the display priority of EXTENT to PRIORITY (an integer).
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5105 When the extent attributes are being merged for display, the priority
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5106 is used to determine which extent takes precedence in the event of a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5107 conflict (two extents whose faces both specify font, for example: the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5108 font of the extent with the higher priority will be used).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5109 Extents are created with priority 0; priorities may be negative.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5110 */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5111 (extent, priority))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5112 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5113 EXTENT e = decode_extent (extent, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5114
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5115 CHECK_INT (priority);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5116 e = extent_ancestor (e);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5117 set_extent_priority (e, XINT (priority));
110
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 100
diff changeset
5118 extent_maybe_changed_for_redisplay (e, 1, 0);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5119 return priority;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5120 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5121
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5122 DEFUN ("extent-priority", Fextent_priority, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5123 Return the display priority of EXTENT; see `set-extent-priority'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5124 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5125 (extent))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5126 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5127 EXTENT e = decode_extent (extent, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5128 return make_int (extent_priority (e));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5129 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5130
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5131 DEFUN ("set-extent-property", Fset_extent_property, 3, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5132 Change a property of an extent.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5133 PROPERTY may be any symbol; the value stored may be accessed with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5134 the `extent-property' function.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5135 The following symbols have predefined meanings:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5136
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5137 detached Removes the extent from its buffer; setting this is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5138 the same as calling `detach-extent'.
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
5139
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5140 destroyed Removes the extent from its buffer, and makes it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5141 unusable in the future; this is the same calling
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5142 `delete-extent'.
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
5143
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5144 priority Change redisplay priority; same as `set-extent-priority'.
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
5145
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5146 start-open Whether the set of characters within the extent is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5147 treated being open on the left, that is, whether
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5148 the start position is an exclusive, rather than
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5149 inclusive, boundary. If true, then characters
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5150 inserted exactly at the beginning of the extent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5151 will remain outside of the extent; otherwise they
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5152 will go into the extent, extending it.
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
5153
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5154 end-open Whether the set of characters within the extent is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5155 treated being open on the right, that is, whether
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5156 the end position is an exclusive, rather than
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5157 inclusive, boundary. If true, then characters
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5158 inserted exactly at the end of the extent will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5159 remain outside of the extent; otherwise they will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5160 go into the extent, extending it.
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
5161
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5162 By default, extents have the `end-open' but not the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5163 `start-open' property set.
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
5164
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5165 read-only Text within this extent will be unmodifiable.
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
5166
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 203
diff changeset
5167 initial-redisplay-function (EXPERIMENTAL)
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 203
diff changeset
5168 function to be called the first time (part of) the extent
189
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
5169 is redisplayed. It will be called with the extent as its
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 203
diff changeset
5170 first argument.
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 203
diff changeset
5171 Note: The function will not be called immediately
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 203
diff changeset
5172 during redisplay, an eval event will be dispatched.
189
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
5173
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5174 detachable Whether the extent gets detached (as with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5175 `detach-extent') when all the text within the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5176 extent is deleted. This is true by default. If
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5177 this property is not set, the extent becomes a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5178 zero-length extent when its text is deleted. (In
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5179 such a case, the `start-open' property is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5180 automatically removed if both the `start-open' and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5181 `end-open' properties are set, since zero-length
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5182 extents open on both ends are not allowed.)
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
5183
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5184 face The face in which to display the text. Setting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5185 this is the same as calling `set-extent-face'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5186
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5187 mouse-face If non-nil, the extent will be highlighted in this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5188 face when the mouse moves over it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5189
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5190 pointer If non-nil, and a valid pointer glyph, this specifies
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5191 the shape of the mouse pointer while over the extent.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5192
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5193 highlight Obsolete: Setting this property is equivalent to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5194 setting a `mouse-face' property of `highlight'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5195 Reading this property returns non-nil if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5196 the extent has a non-nil `mouse-face' property.
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
5197
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5198 duplicable Whether this extent should be copied into strings,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5199 so that kill, yank, and undo commands will restore
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5200 or copy it. `duplicable' extents are copied from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5201 an extent into a string when `buffer-substring' or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5202 a similar function creates a string. The extents
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5203 in a string are copied into other strings created
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5204 from the string using `concat' or `substring'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5205 When `insert' or a similar function inserts the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5206 string into a buffer, the extents are copied back
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5207 into the buffer.
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
5208
96
dbb370e3c29e Import from CVS: tag r20-0final
cvs
parents: 80
diff changeset
5209 unique Meaningful only in conjunction with `duplicable'.
dbb370e3c29e Import from CVS: tag r20-0final
cvs
parents: 80
diff changeset
5210 When this is set, there may be only one instance
dbb370e3c29e Import from CVS: tag r20-0final
cvs
parents: 80
diff changeset
5211 of this extent attached at a time: if it is copied
dbb370e3c29e Import from CVS: tag r20-0final
cvs
parents: 80
diff changeset
5212 to the kill ring and then yanked, the extent is
dbb370e3c29e Import from CVS: tag r20-0final
cvs
parents: 80
diff changeset
5213 not copied. If, however, it is killed (removed
dbb370e3c29e Import from CVS: tag r20-0final
cvs
parents: 80
diff changeset
5214 from the buffer) and then yanked, it will be
dbb370e3c29e Import from CVS: tag r20-0final
cvs
parents: 80
diff changeset
5215 re-attached at the new position.
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
5216
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5217 invisible If the value is non-nil, text under this extent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5218 may be treated as not present for the purpose of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5219 redisplay, or may be displayed using an ellipsis
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5220 or other marker; see `buffer-invisibility-spec'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5221 and `invisible-text-glyph'. In all cases,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5222 however, the text is still visible to other
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5223 functions that examine a buffer's text.
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
5224
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5225 keymap This keymap is consulted for mouse clicks on this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5226 extent, or keypresses made while point is within the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5227 extent.
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
5228
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5229 copy-function This is a hook that is run when a duplicable extent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5230 is about to be copied from a buffer to a string (or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5231 the kill ring). It is called with three arguments,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5232 the extent, and the buffer-positions within it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5233 which are being copied. If this function returns
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5234 nil, then the extent will not be copied; otherwise
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5235 it will.
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
5236
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5237 paste-function This is a hook that is run when a duplicable extent is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5238 about to be copied from a string (or the kill ring)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5239 into a buffer. It is called with three arguments,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5240 the original extent, and the buffer positions which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5241 the copied extent will occupy. (This hook is run
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5242 after the corresponding text has already been
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5243 inserted into the buffer.) Note that the extent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5244 argument may be detached when this function is run.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5245 If this function returns nil, no extent will be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5246 inserted. Otherwise, there will be an extent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5247 covering the range in question.
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
5248
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5249 If the original extent is not attached to a buffer,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5250 then it will be re-attached at this range.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5251 Otherwise, a copy will be made, and that copy
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5252 attached here.
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
5253
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5254 The copy-function and paste-function are meaningful
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5255 only for extents with the `duplicable' flag set,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5256 and if they are not specified, behave as if `t' was
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5257 the returned value. When these hooks are invoked,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5258 the current buffer is the buffer which the extent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5259 is being copied from/to, respectively.
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
5260
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5261 begin-glyph A glyph to be displayed at the beginning of the extent,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5262 or nil.
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
5263
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5264 end-glyph A glyph to be displayed at the end of the extent,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5265 or nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5266
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5267 begin-glyph-layout The layout policy (one of `text', `whitespace',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5268 `inside-margin', or `outside-margin') of the extent's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5269 begin glyph.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5270
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 96
diff changeset
5271 end-glyph-layout The layout policy of the extent's end glyph.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 96
diff changeset
5272 */
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5273 (extent, property, value))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5274 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5275 /* This function can GC if property is `keymap' */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5276 EXTENT e = decode_extent (extent, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5277
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5278 if (EQ (property, Qread_only))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5279 set_extent_read_only (e, value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5280 else if (EQ (property, Qunique))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5281 extent_unique_p (e) = !NILP (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5282 else if (EQ (property, Qduplicable))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5283 extent_duplicable_p (e) = !NILP (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5284 else if (EQ (property, Qinvisible))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5285 set_extent_invisible (e, value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5286 else if (EQ (property, Qdetachable))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5287 extent_detachable_p (e) = !NILP (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5288
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5289 else if (EQ (property, Qdetached))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5290 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5291 if (NILP (value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5292 error ("can only set `detached' to t");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5293 Fdetach_extent (extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5294 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5295 else if (EQ (property, Qdestroyed))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5296 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5297 if (NILP (value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5298 error ("can only set `destroyed' to t");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5299 Fdelete_extent (extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5300 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5301 else if (EQ (property, Qpriority))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5302 Fset_extent_priority (extent, value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5303 else if (EQ (property, Qface))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5304 Fset_extent_face (extent, value);
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 203
diff changeset
5305 else if (EQ (property, Qinitial_redisplay_function))
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 203
diff changeset
5306 Fset_extent_initial_redisplay_function (extent, value);
373
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
5307 else if (EQ (property, Qbefore_change_functions))
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
5308 set_extent_before_change_functions (e, value);
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
5309 else if (EQ (property, Qafter_change_functions))
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
5310 set_extent_after_change_functions (e, value);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5311 else if (EQ (property, Qmouse_face))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5312 Fset_extent_mouse_face (extent, value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5313 /* Obsolete: */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5314 else if (EQ (property, Qhighlight))
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
5315 Fset_extent_mouse_face (extent, Qhighlight);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5316 else if (EQ (property, Qbegin_glyph_layout))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5317 Fset_extent_begin_glyph_layout (extent, value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5318 else if (EQ (property, Qend_glyph_layout))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5319 Fset_extent_end_glyph_layout (extent, value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5320 /* For backwards compatibility. We use begin glyph because it is by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5321 far the more used of the two. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5322 else if (EQ (property, Qglyph_layout))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5323 Fset_extent_begin_glyph_layout (extent, value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5324 else if (EQ (property, Qbegin_glyph))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5325 Fset_extent_begin_glyph (extent, value, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5326 else if (EQ (property, Qend_glyph))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5327 Fset_extent_end_glyph (extent, value, Qnil);
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
5328 else if (EQ (property, Qstart_open))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
5329 set_extent_openness (e, !NILP (value), -1);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
5330 else if (EQ (property, Qend_open))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
5331 set_extent_openness (e, -1, !NILP (value));
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
5332 /* Support (but don't document...) the obvious *_closed antonyms. */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
5333 else if (EQ (property, Qstart_closed))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
5334 set_extent_openness (e, NILP (value), -1);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
5335 else if (EQ (property, Qend_closed))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
5336 set_extent_openness (e, -1, NILP (value));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5337 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5338 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5339 if (EQ (property, Qkeymap))
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 203
diff changeset
5340 while (!NILP (value) && NILP (Fkeymapp (value)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5341 value = wrong_type_argument (Qkeymapp, value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5342
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5343 external_plist_put (extent_plist_addr (e), property, value, 0, ERROR_ME);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5344 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5345
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5346 return value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5347 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5348
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 189
diff changeset
5349 DEFUN ("set-extent-properties", Fset_extent_properties, 2, 2, 0, /*
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 189
diff changeset
5350 Change some properties of EXTENT.
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 189
diff changeset
5351 PLIST is a property list.
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 189
diff changeset
5352 For a list of built-in properties, see `set-extent-property'.
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 189
diff changeset
5353 */
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 189
diff changeset
5354 (extent, plist))
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 189
diff changeset
5355 {
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 189
diff changeset
5356 /* This function can GC, if one of the properties is `keymap' */
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 189
diff changeset
5357 Lisp_Object property, value;
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 189
diff changeset
5358 struct gcpro gcpro1;
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 189
diff changeset
5359 GCPRO1 (plist);
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 189
diff changeset
5360
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 189
diff changeset
5361 plist = Fcopy_sequence (plist);
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 189
diff changeset
5362 Fcanonicalize_plist (plist, Qnil);
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 189
diff changeset
5363
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 189
diff changeset
5364 while (!NILP (plist))
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 189
diff changeset
5365 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5366 property = Fcar (plist); plist = Fcdr (plist);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5367 value = Fcar (plist); plist = Fcdr (plist);
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 189
diff changeset
5368 Fset_extent_property (extent, property, value);
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 189
diff changeset
5369 }
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 189
diff changeset
5370 UNGCPRO;
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 189
diff changeset
5371 return Qnil;
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 189
diff changeset
5372 }
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 189
diff changeset
5373
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5374 DEFUN ("extent-property", Fextent_property, 2, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5375 Return EXTENT's value for property PROPERTY.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5376 See `set-extent-property' for the built-in property names.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5377 */
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
5378 (extent, property, default_))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5379 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5380 EXTENT e = decode_extent (extent, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5381
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
5382 if (EQ (property, Qdetached))
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
5383 return extent_detached_p (e) ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5384 else if (EQ (property, Qdestroyed))
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
5385 return !EXTENT_LIVE_P (e) ? Qt : Qnil;
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
5386 else if (EQ (property, Qstart_open))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
5387 return extent_normal_field (e, start_open) ? Qt : Qnil;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
5388 else if (EQ (property, Qend_open))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
5389 return extent_normal_field (e, end_open) ? Qt : Qnil;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
5390 else if (EQ (property, Qunique))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
5391 return extent_normal_field (e, unique) ? Qt : Qnil;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
5392 else if (EQ (property, Qduplicable))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
5393 return extent_normal_field (e, duplicable) ? Qt : Qnil;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
5394 else if (EQ (property, Qdetachable))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
5395 return extent_normal_field (e, detachable) ? Qt : Qnil;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
5396 /* Support (but don't document...) the obvious *_closed antonyms. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5397 else if (EQ (property, Qstart_closed))
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
5398 return extent_start_open_p (e) ? Qnil : Qt;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5399 else if (EQ (property, Qend_closed))
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
5400 return extent_end_open_p (e) ? Qnil : Qt;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5401 else if (EQ (property, Qpriority))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5402 return make_int (extent_priority (e));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5403 else if (EQ (property, Qread_only))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5404 return extent_read_only (e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5405 else if (EQ (property, Qinvisible))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5406 return extent_invisible (e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5407 else if (EQ (property, Qface))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5408 return Fextent_face (extent);
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 203
diff changeset
5409 else if (EQ (property, Qinitial_redisplay_function))
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 203
diff changeset
5410 return extent_initial_redisplay_function (e);
373
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
5411 else if (EQ (property, Qbefore_change_functions))
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
5412 return extent_before_change_functions (e);
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
5413 else if (EQ (property, Qafter_change_functions))
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
5414 return extent_after_change_functions (e);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5415 else if (EQ (property, Qmouse_face))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5416 return Fextent_mouse_face (extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5417 /* Obsolete: */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5418 else if (EQ (property, Qhighlight))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5419 return !NILP (Fextent_mouse_face (extent)) ? Qt : Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5420 else if (EQ (property, Qbegin_glyph_layout))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5421 return Fextent_begin_glyph_layout (extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5422 else if (EQ (property, Qend_glyph_layout))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5423 return Fextent_end_glyph_layout (extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5424 /* For backwards compatibility. We use begin glyph because it is by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5425 far the more used of the two. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5426 else if (EQ (property, Qglyph_layout))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5427 return Fextent_begin_glyph_layout (extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5428 else if (EQ (property, Qbegin_glyph))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5429 return extent_begin_glyph (e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5430 else if (EQ (property, Qend_glyph))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5431 return extent_end_glyph (e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5432 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5433 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5434 Lisp_Object value = external_plist_get (extent_plist_addr (e),
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5435 property, 0, ERROR_ME);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5436 return UNBOUNDP (value) ? default_ : value;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5437 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5438 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5439
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5440 DEFUN ("extent-properties", Fextent_properties, 1, 1, 0, /*
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
5441 Return a property list of the attributes of EXTENT.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5442 Do not modify this list; use `set-extent-property' instead.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5443 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5444 (extent))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5445 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5446 EXTENT e, anc;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5447 Lisp_Object result, face, anc_obj;
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
5448 glyph_layout layout;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5449
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5450 CHECK_EXTENT (extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5451 e = XEXTENT (extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5452 if (!EXTENT_LIVE_P (e))
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5453 return cons3 (Qdestroyed, Qt, Qnil);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5454
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5455 anc = extent_ancestor (e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5456 XSETEXTENT (anc_obj, anc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5457
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5458 /* For efficiency, use the ancestor for all properties except detached */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5459
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5460 result = extent_plist_slot (anc);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5461
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5462 if (!NILP (face = Fextent_face (anc_obj)))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5463 result = cons3 (Qface, face, result);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5464
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5465 if (!NILP (face = Fextent_mouse_face (anc_obj)))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5466 result = cons3 (Qmouse_face, face, result);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5467
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
5468 if ((layout = (glyph_layout) extent_begin_glyph_layout (anc)) != GL_TEXT)
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5469 {
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5470 Lisp_Object sym = glyph_layout_to_symbol (layout);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5471 result = cons3 (Qglyph_layout, sym, result); /* compatibility */
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5472 result = cons3 (Qbegin_glyph_layout, sym, result);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5473 }
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5474
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
5475 if ((layout = (glyph_layout) extent_end_glyph_layout (anc)) != GL_TEXT)
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5476 result = cons3 (Qend_glyph_layout, glyph_layout_to_symbol (layout), result);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5477
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5478 if (!NILP (extent_end_glyph (anc)))
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5479 result = cons3 (Qend_glyph, extent_end_glyph (anc), result);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5480
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5481 if (!NILP (extent_begin_glyph (anc)))
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5482 result = cons3 (Qbegin_glyph, extent_begin_glyph (anc), result);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5483
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5484 if (extent_priority (anc) != 0)
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5485 result = cons3 (Qpriority, make_int (extent_priority (anc)), result);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5486
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 203
diff changeset
5487 if (!NILP (extent_initial_redisplay_function (anc)))
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5488 result = cons3 (Qinitial_redisplay_function,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5489 extent_initial_redisplay_function (anc), result);
189
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
5490
373
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
5491 if (!NILP (extent_before_change_functions (anc)))
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
5492 result = cons3 (Qbefore_change_functions,
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
5493 extent_before_change_functions (anc), result);
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
5494
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
5495 if (!NILP (extent_after_change_functions (anc)))
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
5496 result = cons3 (Qafter_change_functions,
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
5497 extent_after_change_functions (anc), result);
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
5498
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5499 if (!NILP (extent_invisible (anc)))
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5500 result = cons3 (Qinvisible, extent_invisible (anc), result);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5501
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5502 if (!NILP (extent_read_only (anc)))
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5503 result = cons3 (Qread_only, extent_read_only (anc), result);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5504
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5505 if (extent_normal_field (anc, end_open))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5506 result = cons3 (Qend_open, Qt, result);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5507
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5508 if (extent_normal_field (anc, start_open))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5509 result = cons3 (Qstart_open, Qt, result);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5510
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5511 if (extent_normal_field (anc, detachable))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5512 result = cons3 (Qdetachable, Qt, result);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5513
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5514 if (extent_normal_field (anc, duplicable))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5515 result = cons3 (Qduplicable, Qt, result);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5516
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5517 if (extent_normal_field (anc, unique))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5518 result = cons3 (Qunique, Qt, result);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5519
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5520 /* detached is not an inherited property */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5521 if (extent_detached_p (e))
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
5522 result = cons3 (Qdetached, Qt, result);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5523
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5524 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5525 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5526
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5527
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5528 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5529 /* highlighting */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5530 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5531
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
5532 /* The display code looks into the Vlast_highlighted_extent variable to
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5533 correctly display highlighted extents. This updates that variable,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5534 and marks the appropriate buffers as needing some redisplay.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5535 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5536 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5537 do_highlight (Lisp_Object extent_obj, int highlight_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5538 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5539 if (( highlight_p && (EQ (Vlast_highlighted_extent, extent_obj))) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5540 (!highlight_p && (EQ (Vlast_highlighted_extent, Qnil))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5541 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5542 if (EXTENTP (Vlast_highlighted_extent) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5543 EXTENT_LIVE_P (XEXTENT (Vlast_highlighted_extent)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5544 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5545 /* do not recurse on descendants. Only one extent is highlighted
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5546 at a time. */
110
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 100
diff changeset
5547 extent_changed_for_redisplay (XEXTENT (Vlast_highlighted_extent), 0, 0);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5548 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5549 Vlast_highlighted_extent = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5550 if (!NILP (extent_obj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5551 && BUFFERP (extent_object (XEXTENT (extent_obj)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5552 && highlight_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5553 {
110
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 100
diff changeset
5554 extent_changed_for_redisplay (XEXTENT (extent_obj), 0, 0);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5555 Vlast_highlighted_extent = extent_obj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5556 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5557 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5558
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5559 DEFUN ("force-highlight-extent", Fforce_highlight_extent, 1, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5560 Highlight or unhighlight the given extent.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5561 If the second arg is non-nil, it will be highlighted, else dehighlighted.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5562 This is the same as `highlight-extent', except that it will work even
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5563 on extents without the `mouse-face' property.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5564 */
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
5565 (extent, highlight_p))
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
5566 {
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
5567 if (NILP (extent))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5568 highlight_p = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5569 else
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
5570 XSETEXTENT (extent, decode_extent (extent, DE_MUST_BE_ATTACHED));
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
5571 do_highlight (extent, !NILP (highlight_p));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5572 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5573 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5574
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5575 DEFUN ("highlight-extent", Fhighlight_extent, 1, 2, 0, /*
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
5576 Highlight EXTENT, if it is highlightable.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5577 \(that is, if it has the `mouse-face' property).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5578 If the second arg is non-nil, it will be highlighted, else dehighlighted.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5579 Highlighted extents are displayed as if they were merged with the face
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5580 or faces specified by the `mouse-face' property.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5581 */
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
5582 (extent, highlight_p))
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
5583 {
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
5584 if (EXTENTP (extent) && NILP (extent_mouse_face (XEXTENT (extent))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5585 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5586 else
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
5587 return Fforce_highlight_extent (extent, highlight_p);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5588 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5589
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5590
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5591 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5592 /* strings and extents */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5593 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5594
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5595 /* copy/paste hooks */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5596
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5597 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5598 run_extent_copy_paste_internal (EXTENT e, Bufpos from, Bufpos to,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5599 Lisp_Object object,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5600 Lisp_Object prop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5601 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5602 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5603 Lisp_Object extent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5604 Lisp_Object copy_fn;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5605 XSETEXTENT (extent, e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5606 copy_fn = Fextent_property (extent, prop, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5607 if (!NILP (copy_fn))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5608 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5609 Lisp_Object flag;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5610 struct gcpro gcpro1, gcpro2, gcpro3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5611 GCPRO3 (extent, copy_fn, object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5612 if (BUFFERP (object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5613 flag = call3_in_buffer (XBUFFER (object), copy_fn, extent,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5614 make_int (from), make_int (to));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5615 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5616 flag = call3 (copy_fn, extent, make_int (from), make_int (to));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5617 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5618 if (NILP (flag) || !EXTENT_LIVE_P (XEXTENT (extent)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5619 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5620 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5621 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5622 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5623
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5624 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5625 run_extent_copy_function (EXTENT e, Bytind from, Bytind to)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5626 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5627 Lisp_Object object = extent_object (e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5628 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5629 return run_extent_copy_paste_internal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5630 (e, buffer_or_string_bytind_to_bufpos (object, from),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5631 buffer_or_string_bytind_to_bufpos (object, to), object,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5632 Qcopy_function);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5633 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5634
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5635 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5636 run_extent_paste_function (EXTENT e, Bytind from, Bytind to,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5637 Lisp_Object object)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5638 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5639 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5640 return run_extent_copy_paste_internal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5641 (e, buffer_or_string_bytind_to_bufpos (object, from),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5642 buffer_or_string_bytind_to_bufpos (object, to), object,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5643 Qpaste_function);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5644 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5645
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
5646 static void
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5647 update_extent (EXTENT extent, Bytind from, Bytind to)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5648 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5649 set_extent_endpoints (extent, from, to, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5650 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5651
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5652 /* Insert an extent, usually from the dup_list of a string which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5653 has just been inserted.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5654 This code does not handle the case of undo.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5655 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5656 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5657 insert_extent (EXTENT extent, Bytind new_start, Bytind new_end,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5658 Lisp_Object object, int run_hooks)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5659 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5660 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5661 Lisp_Object tmp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5662
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5663 if (!EQ (extent_object (extent), object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5664 goto copy_it;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5665
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5666 if (extent_detached_p (extent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5667 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5668 if (run_hooks &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5669 !run_extent_paste_function (extent, new_start, new_end, object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5670 /* The paste-function said don't re-attach this extent here. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5671 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5672 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5673 update_extent (extent, new_start, new_end);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5674 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5675 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5676 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5677 Bytind exstart = extent_endpoint_bytind (extent, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5678 Bytind exend = extent_endpoint_bytind (extent, 1);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
5679
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5680 if (exend < new_start || exstart > new_end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5681 goto copy_it;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5682 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5683 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5684 new_start = min (exstart, new_start);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5685 new_end = max (exend, new_end);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5686 if (exstart != new_start || exend != new_end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5687 update_extent (extent, new_start, new_end);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5688 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5689 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5690
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5691 XSETEXTENT (tmp, extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5692 return tmp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5693
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5694 copy_it:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5695 if (run_hooks &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5696 !run_extent_paste_function (extent, new_start, new_end, object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5697 /* The paste-function said don't attach a copy of the extent here. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5698 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5699 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5700 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5701 XSETEXTENT (tmp, copy_extent (extent, new_start, new_end, object));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5702 return tmp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5703 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5704 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5705
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5706 DEFUN ("insert-extent", Finsert_extent, 1, 5, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5707 Insert EXTENT from START to END in BUFFER-OR-STRING.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5708 BUFFER-OR-STRING defaults to the current buffer if omitted.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5709 This operation does not insert any characters,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5710 but otherwise acts as if there were a replicating extent whose
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5711 parent is EXTENT in some string that was just inserted.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5712 Returns the newly-inserted extent.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5713 The fourth arg, NO-HOOKS, can be used to inhibit the running of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5714 extent's `paste-function' property if it has one.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5715 See documentation on `detach-extent' for a discussion of undo recording.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5716 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
5717 (extent, start, end, no_hooks, buffer_or_string))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5718 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5719 EXTENT ext = decode_extent (extent, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5720 Lisp_Object copy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5721 Bytind s, e;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5722
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5723 buffer_or_string = decode_buffer_or_string (buffer_or_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5724 get_buffer_or_string_range_byte (buffer_or_string, start, end, &s, &e,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5725 GB_ALLOW_PAST_ACCESSIBLE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5726
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5727 copy = insert_extent (ext, s, e, buffer_or_string, NILP (no_hooks));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5728 if (EXTENTP (copy))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5729 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5730 if (extent_duplicable_p (XEXTENT (copy)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5731 record_extent (copy, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5732 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5733 return copy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5734 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5735
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5736
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5737 /* adding buffer extents to a string */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5738
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5739 struct add_string_extents_arg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5740 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5741 Bytind from;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5742 Bytecount length;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5743 Lisp_Object string;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5744 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5745
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5746 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5747 add_string_extents_mapper (EXTENT extent, void *arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5748 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5749 /* This function can GC */
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
5750 struct add_string_extents_arg *closure =
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5751 (struct add_string_extents_arg *) arg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5752 Bytecount start = extent_endpoint_bytind (extent, 0) - closure->from;
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
5753 Bytecount end = extent_endpoint_bytind (extent, 1) - closure->from;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
5754
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5755 if (extent_duplicable_p (extent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5756 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5757 start = max (start, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5758 end = min (end, closure->length);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5759
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5760 /* Run the copy-function to give an extent the option of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5761 not being copied into the string (or kill ring).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5762 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5763 if (extent_duplicable_p (extent) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5764 !run_extent_copy_function (extent, start + closure->from,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5765 end + closure->from))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5766 return 0;
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
5767 copy_extent (extent, start, end, closure->string);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5768 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5769
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5770 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5771 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5772
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5773 /* Add the extents in buffer BUF from OPOINT to OPOINT+LENGTH to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5774 the string STRING. */
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
5775 void
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5776 add_string_extents (Lisp_Object string, struct buffer *buf, Bytind opoint,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5777 Bytecount length)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5778 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5779 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5780 struct add_string_extents_arg closure;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5781 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5782 Lisp_Object buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5783
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5784 closure.from = opoint;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5785 closure.length = length;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5786 closure.string = string;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5787 buffer = make_buffer (buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5788 GCPRO2 (buffer, string);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
5789 map_extents_bytind (opoint, opoint + length, add_string_extents_mapper,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5790 (void *) &closure, buffer, 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5791 /* ignore extents that just abut the region */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5792 ME_END_CLOSED | ME_ALL_EXTENTS_OPEN |
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5793 /* we are calling E-Lisp (the extent's copy function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5794 so anything might happen */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5795 ME_MIGHT_CALL_ELISP);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5796 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5797 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5798
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5799 struct splice_in_string_extents_arg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5800 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5801 Bytecount pos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5802 Bytecount length;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5803 Bytind opoint;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5804 Lisp_Object buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5805 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5806
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5807 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5808 splice_in_string_extents_mapper (EXTENT extent, void *arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5809 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5810 /* This function can GC */
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
5811 struct splice_in_string_extents_arg *closure =
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5812 (struct splice_in_string_extents_arg *) arg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5813 /* BASE_START and BASE_END are the limits in the buffer of the string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5814 that was just inserted.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5815
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5816 NEW_START and NEW_END are the prospective buffer positions of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5817 extent that is going into the buffer. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5818 Bytind base_start = closure->opoint;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5819 Bytind base_end = base_start + closure->length;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5820 Bytind new_start = (base_start + extent_endpoint_bytind (extent, 0) -
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5821 closure->pos);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5822 Bytind new_end = (base_start + extent_endpoint_bytind (extent, 1) -
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5823 closure->pos);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5824
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5825 if (new_start < base_start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5826 new_start = base_start;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5827 if (new_end > base_end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5828 new_end = base_end;
371
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 355
diff changeset
5829 if (new_end <= new_start)
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 355
diff changeset
5830 return 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5831
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5832 if (!extent_duplicable_p (extent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5833 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5834
96
dbb370e3c29e Import from CVS: tag r20-0final
cvs
parents: 80
diff changeset
5835 if (!inside_undo &&
dbb370e3c29e Import from CVS: tag r20-0final
cvs
parents: 80
diff changeset
5836 !run_extent_paste_function (extent, new_start, new_end,
dbb370e3c29e Import from CVS: tag r20-0final
cvs
parents: 80
diff changeset
5837 closure->buffer))
dbb370e3c29e Import from CVS: tag r20-0final
cvs
parents: 80
diff changeset
5838 return 0;
dbb370e3c29e Import from CVS: tag r20-0final
cvs
parents: 80
diff changeset
5839 copy_extent (extent, new_start, new_end, closure->buffer);
dbb370e3c29e Import from CVS: tag r20-0final
cvs
parents: 80
diff changeset
5840
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5841 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5842 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5843
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5844 /* We have just inserted a section of STRING (starting at POS, of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5845 length LENGTH) into buffer BUF at OPOINT. Do whatever is necessary
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5846 to get the string's extents into the buffer. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5847
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
5848 void
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5849 splice_in_string_extents (Lisp_Object string, struct buffer *buf,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5850 Bytind opoint, Bytecount length, Bytecount pos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5851 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5852 struct splice_in_string_extents_arg closure;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5853 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5854 Lisp_Object buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5855
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5856 buffer = make_buffer (buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5857 closure.opoint = opoint;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5858 closure.pos = pos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5859 closure.length = length;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5860 closure.buffer = buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5861 GCPRO2 (buffer, string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5862 map_extents_bytind (pos, pos + length,
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
5863 splice_in_string_extents_mapper,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5864 (void *) &closure, string, 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5865 /* ignore extents that just abut the region */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5866 ME_END_CLOSED | ME_ALL_EXTENTS_OPEN |
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5867 /* we are calling E-Lisp (the extent's copy function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5868 so anything might happen */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5869 ME_MIGHT_CALL_ELISP);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5870 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5871 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5872
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5873 struct copy_string_extents_arg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5874 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5875 Bytecount new_pos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5876 Bytecount old_pos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5877 Bytecount length;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5878 Lisp_Object new_string;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5879 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5880
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5881 struct copy_string_extents_1_arg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5882 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5883 Lisp_Object parent_in_question;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5884 EXTENT found_extent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5885 };
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
5886
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5887 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5888 copy_string_extents_mapper (EXTENT extent, void *arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5889 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
5890 struct copy_string_extents_arg *closure =
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5891 (struct copy_string_extents_arg *) arg;
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
5892 Bytecount old_start, old_end, new_start, new_end;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5893
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5894 old_start = extent_endpoint_bytind (extent, 0);
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
5895 old_end = extent_endpoint_bytind (extent, 1);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5896
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5897 old_start = max (closure->old_pos, old_start);
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
5898 old_end = min (closure->old_pos + closure->length, old_end);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5899
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5900 if (old_start >= old_end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5901 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5902
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5903 new_start = old_start + closure->new_pos - closure->old_pos;
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
5904 new_end = old_end + closure->new_pos - closure->old_pos;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
5905
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
5906 copy_extent (extent, new_start, new_end, closure->new_string);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5907 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5908 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5909
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5910 /* The string NEW_STRING was partially constructed from OLD_STRING.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5911 In particular, the section of length LEN starting at NEW_POS in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5912 NEW_STRING came from the section of the same length starting at
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5913 OLD_POS in OLD_STRING. Copy the extents as appropriate. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5914
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
5915 void
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5916 copy_string_extents (Lisp_Object new_string, Lisp_Object old_string,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5917 Bytecount new_pos, Bytecount old_pos,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5918 Bytecount length)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5919 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5920 struct copy_string_extents_arg closure;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5921 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5922
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5923 closure.new_pos = new_pos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5924 closure.old_pos = old_pos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5925 closure.new_string = new_string;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5926 closure.length = length;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5927 GCPRO2 (new_string, old_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5928 map_extents_bytind (old_pos, old_pos + length,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5929 copy_string_extents_mapper,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5930 (void *) &closure, old_string, 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5931 /* ignore extents that just abut the region */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5932 ME_END_CLOSED | ME_ALL_EXTENTS_OPEN |
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5933 /* we are calling E-Lisp (the extent's copy function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5934 so anything might happen */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5935 ME_MIGHT_CALL_ELISP);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5936 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5937 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5938
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5939 /* Checklist for sanity checking:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5940 - {kill, yank, copy} at {open, closed} {start, end} of {writable, read-only} extent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5941 - {kill, copy} & yank {once, repeatedly} duplicable extent in {same, different} buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5942 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5943
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5944
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5945 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5946 /* text properties */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5947 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5948
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5949 /* Text properties
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5950 Originally this stuff was implemented in lisp (all of the functionality
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5951 exists to make that possible) but speed was a problem.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5952 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5953
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5954 Lisp_Object Qtext_prop;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5955 Lisp_Object Qtext_prop_extent_paste_function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5956
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5957 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5958 get_text_property_bytind (Bytind position, Lisp_Object prop,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5959 Lisp_Object object, enum extent_at_flag fl,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5960 int text_props_only)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5961 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5962 Lisp_Object extent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5963
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5964 /* text_props_only specifies whether we only consider text-property
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5965 extents (those with the 'text-prop property set) or all extents. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5966 if (!text_props_only)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5967 extent = extent_at_bytind (position, object, prop, 0, fl);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5968 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5969 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5970 EXTENT prior = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5971 while (1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5972 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5973 extent = extent_at_bytind (position, object, Qtext_prop, prior,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5974 fl);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5975 if (NILP (extent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5976 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5977 if (EQ (prop, Fextent_property (extent, Qtext_prop, Qnil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5978 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5979 prior = XEXTENT (extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5980 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5981 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5982
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5983 if (!NILP (extent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5984 return Fextent_property (extent, prop, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5985 if (!NILP (Vdefault_text_properties))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5986 return Fplist_get (Vdefault_text_properties, prop, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5987 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5988 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5989
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5990 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5991 get_text_property_1 (Lisp_Object pos, Lisp_Object prop, Lisp_Object object,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5992 Lisp_Object at_flag, int text_props_only)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5993 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5994 Bytind position;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5995 int invert = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5996
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5997 object = decode_buffer_or_string (object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5998 position = get_buffer_or_string_pos_byte (object, pos, GB_NO_ERROR_IF_BAD);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5999
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6000 /* We canonicalize the start/end-open/closed properties to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6001 non-default version -- "adding" the default property really
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6002 needs to remove the non-default one. See below for more
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6003 on this. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6004 if (EQ (prop, Qstart_closed))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6005 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6006 prop = Qstart_open;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6007 invert = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6008 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6009
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6010 if (EQ (prop, Qend_open))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6011 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6012 prop = Qend_closed;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6013 invert = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6014 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6015
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6016 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6017 Lisp_Object val =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6018 get_text_property_bytind (position, prop, object,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6019 decode_extent_at_flag (at_flag),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6020 text_props_only);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6021 if (invert)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6022 val = NILP (val) ? Qt : Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6023 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6024 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6025 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6026
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6027 DEFUN ("get-text-property", Fget_text_property, 2, 4, 0, /*
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
6028 Return the value of the PROP property at the given position.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6029 Optional arg OBJECT specifies the buffer or string to look in, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6030 defaults to the current buffer.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
6031 Optional arg AT-FLAG controls what it means for a property to be "at"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6032 a position, and has the same meaning as in `extent-at'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6033 This examines only those properties added with `put-text-property'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6034 See also `get-char-property'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6035 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6036 (pos, prop, object, at_flag))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6037 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6038 return get_text_property_1 (pos, prop, object, at_flag, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6039 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6040
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6041 DEFUN ("get-char-property", Fget_char_property, 2, 4, 0, /*
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
6042 Return the value of the PROP property at the given position.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6043 Optional arg OBJECT specifies the buffer or string to look in, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6044 defaults to the current buffer.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
6045 Optional arg AT-FLAG controls what it means for a property to be "at"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6046 a position, and has the same meaning as in `extent-at'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6047 This examines properties on all extents.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6048 See also `get-text-property'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6049 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6050 (pos, prop, object, at_flag))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6051 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6052 return get_text_property_1 (pos, prop, object, at_flag, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6053 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6054
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6055 /* About start/end-open/closed:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6056
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6057 These properties have to be handled specially because of their
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6058 strange behavior. If I put the "start-open" property on a region,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6059 then *all* text-property extents in the region have to have their
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6060 start be open. This is unlike all other properties, which don't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6061 affect the extents of text properties other than their own.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6062
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6063 So:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6064
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6065 1) We have to map start-closed to (not start-open) and end-open
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6066 to (not end-closed) -- i.e. adding the default is really the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6067 same as remove the non-default property. It won't work, for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6068 example, to have both "start-open" and "start-closed" on
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6069 the same region.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6070 2) Whenever we add one of these properties, we go through all
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6071 text-property extents in the region and set the appropriate
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6072 open/closedness on them.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6073 3) Whenever we change a text-property extent for a property,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6074 we have to make sure we set the open/closedness properly.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6075
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6076 (2) and (3) together rely on, and maintain, the invariant
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6077 that the open/closedness of text-property extents is correct
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6078 at the beginning and end of each operation.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6079 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6080
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6081 struct put_text_prop_arg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6082 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6083 Lisp_Object prop, value; /* The property and value we are storing */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6084 Bytind start, end; /* The region into which we are storing it */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6085 Lisp_Object object;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6086 Lisp_Object the_extent; /* Our chosen extent; this is used for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6087 communication between subsequent passes. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6088 int changed_p; /* Output: whether we have modified anything */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6089 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6090
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6091 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6092 put_text_prop_mapper (EXTENT e, void *arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6093 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6094 struct put_text_prop_arg *closure = (struct put_text_prop_arg *) arg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6095
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6096 Lisp_Object object = closure->object;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6097 Lisp_Object value = closure->value;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
6098 Bytind e_start, e_end;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6099 Bytind start = closure->start;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6100 Bytind end = closure->end;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6101 Lisp_Object extent, e_val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6102 int is_eq;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6103
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6104 XSETEXTENT (extent, e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6105
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6106 /* Note: in some cases when the property itself is 'start-open
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6107 or 'end-closed, the checks to set the openness may do a bit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6108 of extra work; but it won't hurt because we then fix up the
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
6109 openness later on in put_text_prop_openness_mapper(). */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6110 if (!EQ (Fextent_property (extent, Qtext_prop, Qnil), closure->prop))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6111 /* It's not for this property; do nothing. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6112 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6113
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6114 e_start = extent_endpoint_bytind (e, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6115 e_end = extent_endpoint_bytind (e, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6116 e_val = Fextent_property (extent, closure->prop, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6117 is_eq = EQ (value, e_val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6118
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6119 if (!NILP (value) && NILP (closure->the_extent) && is_eq)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6120 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6121 /* We want there to be an extent here at the end, and we haven't picked
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6122 one yet, so use this one. Extend it as necessary. We only reuse an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6123 extent which has an EQ value for the prop in question to avoid
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6124 side-effecting the kill ring (that is, we never change the property
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6125 on an extent after it has been created.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6126 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6127 if (e_start != start || e_end != end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6128 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6129 Bytind new_start = min (e_start, start);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6130 Bytind new_end = max (e_end, end);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6131 set_extent_endpoints (e, new_start, new_end, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6132 /* If we changed the endpoint, then we need to set its
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6133 openness. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6134 set_extent_openness (e, new_start != e_start
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6135 ? !NILP (get_text_property_bytind
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6136 (start, Qstart_open, object,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6137 EXTENT_AT_AFTER, 1)) : -1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6138 new_end != e_end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6139 ? NILP (get_text_property_bytind
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6140 (end - 1, Qend_closed, object,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6141 EXTENT_AT_AFTER, 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6142 : -1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6143 closure->changed_p = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6144 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6145 closure->the_extent = extent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6146 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6147
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6148 /* Even if we're adding a prop, at this point, we want all other extents of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6149 this prop to go away (as now they overlap). So the theory here is that,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6150 when we are adding a prop to a region that has multiple (disjoint)
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
6151 occurrences of that prop in it already, we pick one of those and extend
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6152 it, and remove the others.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6153 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6154
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6155 else if (EQ (extent, closure->the_extent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6156 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6157 /* just in case map-extents hits it again (does that happen?) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6158 ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6159 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6160 else if (e_start >= start && e_end <= end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6161 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6162 /* Extent is contained in region; remove it. Don't destroy or modify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6163 it, because we don't want to change the attributes pointed to by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6164 duplicates in the kill ring.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6165 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6166 extent_detach (e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6167 closure->changed_p = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6168 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6169 else if (!NILP (closure->the_extent) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6170 is_eq &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6171 e_start <= end &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6172 e_end >= start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6173 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6174 EXTENT te = XEXTENT (closure->the_extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6175 /* This extent overlaps, and has the same prop/value as the extent we've
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6176 decided to reuse, so we can remove this existing extent as well (the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6177 whole thing, even the part outside of the region) and extend
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6178 the-extent to cover it, resulting in the minimum number of extents in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6179 the buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6180 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6181 Bytind the_start = extent_endpoint_bytind (te, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6182 Bytind the_end = extent_endpoint_bytind (te, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6183 if (e_start != the_start && /* note AND not OR -- hmm, why is this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6184 the case? I think it's because the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6185 assumption that the text-property
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6186 extents don't overlap makes it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6187 OK; changing it to an OR would
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6188 result in changed_p sometimes getting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6189 falsely marked. Is this bad? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6190 e_end != the_end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6191 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6192 Bytind new_start = min (e_start, the_start);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6193 Bytind new_end = max (e_end, the_end);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6194 set_extent_endpoints (te, new_start, new_end, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6195 /* If we changed the endpoint, then we need to set its
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6196 openness. We are setting the endpoint to be the same as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6197 that of the extent we're about to remove, and we assume
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6198 (the invariant mentioned above) that extent has the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6199 proper endpoint setting, so we just use it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6200 set_extent_openness (te, new_start != e_start ?
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
6201 (int) extent_start_open_p (e) : -1,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6202 new_end != e_end ?
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
6203 (int) extent_end_open_p (e) : -1);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6204 closure->changed_p = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6205 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6206 extent_detach (e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6207 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6208 else if (e_end <= end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6209 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6210 /* Extent begins before start but ends before end, so we can just
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6211 decrease its end position.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6212 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6213 if (e_end != start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6214 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6215 set_extent_endpoints (e, e_start, start, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6216 set_extent_openness (e, -1, NILP (get_text_property_bytind
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6217 (start - 1, Qend_closed, object,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6218 EXTENT_AT_AFTER, 1)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6219 closure->changed_p = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6220 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6221 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6222 else if (e_start >= start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6223 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6224 /* Extent ends after end but begins after start, so we can just
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6225 increase its start position.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6226 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6227 if (e_start != end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6228 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6229 set_extent_endpoints (e, end, e_end, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6230 set_extent_openness (e, !NILP (get_text_property_bytind
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6231 (end, Qstart_open, object,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6232 EXTENT_AT_AFTER, 1)), -1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6233 closure->changed_p = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6234 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6235 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6236 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6237 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6238 /* Otherwise, `extent' straddles the region. We need to split it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6239 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6240 set_extent_endpoints (e, e_start, start, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6241 set_extent_openness (e, -1, NILP (get_text_property_bytind
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6242 (start - 1, Qend_closed, object,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6243 EXTENT_AT_AFTER, 1)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6244 set_extent_openness (copy_extent (e, end, e_end, extent_object (e)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6245 !NILP (get_text_property_bytind
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6246 (end, Qstart_open, object,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6247 EXTENT_AT_AFTER, 1)), -1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6248 closure->changed_p = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6249 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6250
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6251 return 0; /* to continue mapping. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6252 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6253
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6254 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6255 put_text_prop_openness_mapper (EXTENT e, void *arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6256 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6257 struct put_text_prop_arg *closure = (struct put_text_prop_arg *) arg;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
6258 Bytind e_start, e_end;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6259 Bytind start = closure->start;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6260 Bytind end = closure->end;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6261 Lisp_Object extent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6262 XSETEXTENT (extent, e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6263 e_start = extent_endpoint_bytind (e, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6264 e_end = extent_endpoint_bytind (e, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6265
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6266 if (NILP (Fextent_property (extent, Qtext_prop, Qnil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6267 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6268 /* It's not a text-property extent; do nothing. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6269 ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6270 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6271 /* Note end conditions and NILP/!NILP's carefully. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6272 else if (EQ (closure->prop, Qstart_open)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6273 && e_start >= start && e_start < end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6274 set_extent_openness (e, !NILP (closure->value), -1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6275 else if (EQ (closure->prop, Qend_closed)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6276 && e_end > start && e_end <= end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6277 set_extent_openness (e, -1, NILP (closure->value));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6278
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6279 return 0; /* to continue mapping. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6280 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6281
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6282 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6283 put_text_prop (Bytind start, Bytind end, Lisp_Object object,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6284 Lisp_Object prop, Lisp_Object value,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6285 int duplicable_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6286 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6287 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6288 struct put_text_prop_arg closure;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6289
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6290 if (start == end) /* There are no characters in the region. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6291 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6292
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6293 /* convert to the non-default versions, since a nil property is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6294 the same as it not being present. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6295 if (EQ (prop, Qstart_closed))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6296 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6297 prop = Qstart_open;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6298 value = NILP (value) ? Qt : Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6299 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6300 else if (EQ (prop, Qend_open))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6301 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6302 prop = Qend_closed;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6303 value = NILP (value) ? Qt : Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6304 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6305
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6306 value = canonicalize_extent_property (prop, value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6307
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6308 closure.prop = prop;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6309 closure.value = value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6310 closure.start = start;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6311 closure.end = end;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6312 closure.object = object;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6313 closure.changed_p = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6314 closure.the_extent = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6315
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6316 map_extents_bytind (start, end,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6317 put_text_prop_mapper,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6318 (void *) &closure, object, 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6319 /* get all extents that abut the region */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6320 ME_ALL_EXTENTS_CLOSED | ME_END_CLOSED |
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6321 /* it might QUIT or error if the user has
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6322 fucked with the extent plist. */
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 110
diff changeset
6323 /* #### dmoore - I think this should include
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 110
diff changeset
6324 ME_MIGHT_MOVE_SOE, since the callback function
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 110
diff changeset
6325 might recurse back into map_extents_bytind. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6326 ME_MIGHT_THROW |
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6327 ME_MIGHT_MODIFY_EXTENTS);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6328
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6329 /* If we made it through the loop without reusing an extent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6330 (and we want there to be one) make it now.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6331 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6332 if (!NILP (value) && NILP (closure.the_extent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6333 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
6334 Lisp_Object extent;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6335
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6336 XSETEXTENT (extent, make_extent_internal (object, start, end));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6337 closure.changed_p = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6338 Fset_extent_property (extent, Qtext_prop, prop);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6339 Fset_extent_property (extent, prop, value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6340 if (duplicable_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6341 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6342 extent_duplicable_p (XEXTENT (extent)) = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6343 Fset_extent_property (extent, Qpaste_function,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6344 Qtext_prop_extent_paste_function);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6345 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6346 set_extent_openness (XEXTENT (extent),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6347 !NILP (get_text_property_bytind
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6348 (start, Qstart_open, object,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6349 EXTENT_AT_AFTER, 1)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6350 NILP (get_text_property_bytind
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6351 (end - 1, Qend_closed, object,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6352 EXTENT_AT_AFTER, 1)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6353 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6354
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6355 if (EQ (prop, Qstart_open) || EQ (prop, Qend_closed))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6356 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6357 map_extents_bytind (start, end,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6358 put_text_prop_openness_mapper,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6359 (void *) &closure, object, 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6360 /* get all extents that abut the region */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6361 ME_ALL_EXTENTS_CLOSED | ME_END_CLOSED |
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6362 ME_MIGHT_MODIFY_EXTENTS);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6363 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6364
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6365 return closure.changed_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6366 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6367
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6368 DEFUN ("put-text-property", Fput_text_property, 4, 5, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6369 Adds the given property/value to all characters in the specified region.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6370 The property is conceptually attached to the characters rather than the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6371 region. The properties are copied when the characters are copied/pasted.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6372 Fifth argument OBJECT is the buffer or string containing the text, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6373 defaults to the current buffer.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6374 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6375 (start, end, prop, value, object))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6376 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6377 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6378 Bytind s, e;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6379
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6380 object = decode_buffer_or_string (object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6381 get_buffer_or_string_range_byte (object, start, end, &s, &e, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6382 put_text_prop (s, e, object, prop, value, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6383 return prop;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6384 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6385
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
6386 DEFUN ("put-nonduplicable-text-property", Fput_nonduplicable_text_property,
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
6387 4, 5, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6388 Adds the given property/value to all characters in the specified region.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6389 The property is conceptually attached to the characters rather than the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6390 region, however the properties will not be copied when the characters
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6391 are copied.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6392 Fifth argument OBJECT is the buffer or string containing the text, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6393 defaults to the current buffer.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6394 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6395 (start, end, prop, value, object))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6396 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6397 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6398 Bytind s, e;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6399
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6400 object = decode_buffer_or_string (object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6401 get_buffer_or_string_range_byte (object, start, end, &s, &e, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6402 put_text_prop (s, e, object, prop, value, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6403 return prop;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6404 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6405
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6406 DEFUN ("add-text-properties", Fadd_text_properties, 3, 4, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6407 Add properties to the characters from START to END.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6408 The third argument PROPS is a property list specifying the property values
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6409 to add. The optional fourth argument, OBJECT, is the buffer or string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6410 containing the text and defaults to the current buffer. Returns t if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6411 any property was changed, nil otherwise.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6412 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6413 (start, end, props, object))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6414 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6415 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6416 int changed = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6417 Bytind s, e;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6418
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6419 object = decode_buffer_or_string (object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6420 get_buffer_or_string_range_byte (object, start, end, &s, &e, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6421 CHECK_LIST (props);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6422 for (; !NILP (props); props = Fcdr (Fcdr (props)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6423 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6424 Lisp_Object prop = XCAR (props);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6425 Lisp_Object value = Fcar (XCDR (props));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6426 changed |= put_text_prop (s, e, object, prop, value, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6427 }
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
6428 return changed ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6429 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6430
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6431
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
6432 DEFUN ("add-nonduplicable-text-properties", Fadd_nonduplicable_text_properties,
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
6433 3, 4, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6434 Add nonduplicable properties to the characters from START to END.
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
6435 \(The properties will not be copied when the characters are copied.)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6436 The third argument PROPS is a property list specifying the property values
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6437 to add. The optional fourth argument, OBJECT, is the buffer or string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6438 containing the text and defaults to the current buffer. Returns t if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6439 any property was changed, nil otherwise.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6440 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6441 (start, end, props, object))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6442 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6443 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6444 int changed = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6445 Bytind s, e;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6446
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6447 object = decode_buffer_or_string (object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6448 get_buffer_or_string_range_byte (object, start, end, &s, &e, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6449 CHECK_LIST (props);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6450 for (; !NILP (props); props = Fcdr (Fcdr (props)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6451 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6452 Lisp_Object prop = XCAR (props);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6453 Lisp_Object value = Fcar (XCDR (props));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6454 changed |= put_text_prop (s, e, object, prop, value, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6455 }
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
6456 return changed ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6457 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6458
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6459 DEFUN ("remove-text-properties", Fremove_text_properties, 3, 4, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6460 Remove the given properties from all characters in the specified region.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6461 PROPS should be a plist, but the values in that plist are ignored (treated
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6462 as nil). Returns t if any property was changed, nil otherwise.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6463 Fourth argument OBJECT is the buffer or string containing the text, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6464 defaults to the current buffer.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6465 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6466 (start, end, props, object))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6467 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6468 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6469 int changed = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6470 Bytind s, e;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6471
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6472 object = decode_buffer_or_string (object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6473 get_buffer_or_string_range_byte (object, start, end, &s, &e, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6474 CHECK_LIST (props);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6475 for (; !NILP (props); props = Fcdr (Fcdr (props)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6476 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6477 Lisp_Object prop = XCAR (props);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6478 changed |= put_text_prop (s, e, object, prop, Qnil, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6479 }
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
6480 return changed ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6481 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6482
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6483 /* Whenever a text-prop extent is pasted into a buffer (via `yank' or `insert'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6484 or whatever) we attach the properties to the buffer by calling
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6485 `put-text-property' instead of by simply allowing the extent to be copied or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6486 re-attached. Then we return nil, telling the extents code not to attach it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6487 again. By handing the insertion hackery in this way, we make kill/yank
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6488 behave consistently with put-text-property and not fragment the extents
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6489 (since text-prop extents must partition, not overlap).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6490
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6491 The lisp implementation of this was probably fast enough, but since I moved
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
6492 the rest of the put-text-prop code here, I moved this as well for
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
6493 completeness.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6494 */
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
6495 DEFUN ("text-prop-extent-paste-function", Ftext_prop_extent_paste_function,
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
6496 3, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6497 Used as the `paste-function' property of `text-prop' extents.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6498 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6499 (extent, from, to))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6500 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6501 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6502 Lisp_Object prop, val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6503
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6504 prop = Fextent_property (extent, Qtext_prop, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6505 if (NILP (prop))
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
6506 signal_simple_error ("Internal error: no text-prop", extent);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6507 val = Fextent_property (extent, prop, Qnil);
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 96
diff changeset
6508 #if 0
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 96
diff changeset
6509 /* removed by bill perry, 2/9/97
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 96
diff changeset
6510 ** This little bit of code would not allow you to have a text property
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 96
diff changeset
6511 ** with a value of Qnil. This is bad bad bad.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 96
diff changeset
6512 */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6513 if (NILP (val))
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
6514 signal_simple_error_2 ("Internal error: no text-prop",
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6515 extent, prop);
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 96
diff changeset
6516 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6517 Fput_text_property (from, to, prop, val, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6518 return Qnil; /* important! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6519 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6520
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6521 /* This function could easily be written in Lisp but the C code wants
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6522 to use it in connection with invisible extents (at least currently).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6523 If this changes, consider moving this back into Lisp. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6524
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
6525 DEFUN ("next-single-property-change", Fnext_single_property_change,
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
6526 2, 4, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6527 Return the position of next property change for a specific property.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6528 Scans characters forward from POS till it finds a change in the PROP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6529 property, then returns the position of the change. The optional third
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6530 argument OBJECT is the buffer or string to scan (defaults to the current
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6531 buffer).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6532 The property values are compared with `eq'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6533 Return nil if the property is constant all the way to the end of BUFFER.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6534 If the value is non-nil, it is a position greater than POS, never equal.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6535
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6536 If the optional fourth argument LIMIT is non-nil, don't search
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6537 past position LIMIT; return LIMIT if nothing is found before LIMIT.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6538 If two or more extents with conflicting non-nil values for PROP overlap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6539 a particular character, it is undefined which value is considered to be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6540 the value of PROP. (Note that this situation will not happen if you always
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6541 use the text-property primitives.)
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6542 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6543 (pos, prop, object, limit))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6544 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6545 Bufpos bpos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6546 Bufpos blim;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6547 Lisp_Object extent, value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6548 int limit_was_nil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6549
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6550 object = decode_buffer_or_string (object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6551 bpos = get_buffer_or_string_pos_char (object, pos, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6552 if (NILP (limit))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6553 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6554 blim = buffer_or_string_accessible_end_char (object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6555 limit_was_nil = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6556 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6557 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6558 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6559 blim = get_buffer_or_string_pos_char (object, limit, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6560 limit_was_nil = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6561 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6562
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6563 extent = Fextent_at (make_int (bpos), object, prop, Qnil, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6564 if (!NILP (extent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6565 value = Fextent_property (extent, prop, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6566 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6567 value = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6568
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6569 while (1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6570 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6571 bpos = XINT (Fnext_extent_change (make_int (bpos), object));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6572 if (bpos >= blim)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6573 break; /* property is the same all the way to the end */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6574 extent = Fextent_at (make_int (bpos), object, prop, Qnil, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6575 if ((NILP (extent) && !NILP (value)) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6576 (!NILP (extent) && !EQ (value,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6577 Fextent_property (extent, prop, Qnil))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6578 return make_int (bpos);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6579 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6580
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6581 /* I think it's more sensible for this function to return nil always
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6582 in this situation and it used to do it this way, but it's been changed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6583 for FSF compatibility. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6584 if (limit_was_nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6585 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6586 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6587 return make_int (blim);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6588 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6589
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6590 /* See comment on previous function about why this is written in C. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6591
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
6592 DEFUN ("previous-single-property-change", Fprevious_single_property_change,
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
6593 2, 4, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6594 Return the position of next property change for a specific property.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6595 Scans characters backward from POS till it finds a change in the PROP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6596 property, then returns the position of the change. The optional third
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6597 argument OBJECT is the buffer or string to scan (defaults to the current
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6598 buffer).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6599 The property values are compared with `eq'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6600 Return nil if the property is constant all the way to the start of BUFFER.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6601 If the value is non-nil, it is a position less than POS, never equal.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6602
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6603 If the optional fourth argument LIMIT is non-nil, don't search back
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6604 past position LIMIT; return LIMIT if nothing is found until LIMIT.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6605 If two or more extents with conflicting non-nil values for PROP overlap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6606 a particular character, it is undefined which value is considered to be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6607 the value of PROP. (Note that this situation will not happen if you always
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6608 use the text-property primitives.)
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6609 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6610 (pos, prop, object, limit))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6611 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6612 Bufpos bpos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6613 Bufpos blim;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6614 Lisp_Object extent, value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6615 int limit_was_nil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6616
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6617 object = decode_buffer_or_string (object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6618 bpos = get_buffer_or_string_pos_char (object, pos, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6619 if (NILP (limit))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6620 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6621 blim = buffer_or_string_accessible_begin_char (object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6622 limit_was_nil = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6623 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6624 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6625 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6626 blim = get_buffer_or_string_pos_char (object, limit, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6627 limit_was_nil = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6628 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6629
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6630 /* extent-at refers to the character AFTER bpos, but we want the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6631 character before bpos. Thus the - 1. extent-at simply
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6632 returns nil on bogus positions, so not to worry. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6633 extent = Fextent_at (make_int (bpos - 1), object, prop, Qnil, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6634 if (!NILP (extent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6635 value = Fextent_property (extent, prop, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6636 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6637 value = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6638
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6639 while (1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6640 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6641 bpos = XINT (Fprevious_extent_change (make_int (bpos), object));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6642 if (bpos <= blim)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6643 break; /* property is the same all the way to the beginning */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6644 extent = Fextent_at (make_int (bpos - 1), object, prop, Qnil, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6645 if ((NILP (extent) && !NILP (value)) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6646 (!NILP (extent) && !EQ (value,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6647 Fextent_property (extent, prop, Qnil))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6648 return make_int (bpos);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6649 }
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
6650
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6651 /* I think it's more sensible for this function to return nil always
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6652 in this situation and it used to do it this way, but it's been changed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6653 for FSF compatibility. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6654 if (limit_was_nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6655 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6656 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6657 return make_int (blim);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6658 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6659
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6660 #ifdef MEMORY_USAGE_STATS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6661
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6662 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6663 compute_buffer_extent_usage (struct buffer *b, struct overhead_stats *ovstats)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6664 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6665 /* #### not yet written */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6666 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6667 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6668
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6669 #endif /* MEMORY_USAGE_STATS */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6670
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6671
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6672 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6673 /* initialization */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6674 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6675
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6676 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6677 syms_of_extents (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6678 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6679 defsymbol (&Qextentp, "extentp");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6680 defsymbol (&Qextent_live_p, "extent-live-p");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6681
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6682 defsymbol (&Qall_extents_closed, "all-extents-closed");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6683 defsymbol (&Qall_extents_open, "all-extents-open");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6684 defsymbol (&Qall_extents_closed_open, "all-extents-closed-open");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6685 defsymbol (&Qall_extents_open_closed, "all-extents-open-closed");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6686 defsymbol (&Qstart_in_region, "start-in-region");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6687 defsymbol (&Qend_in_region, "end-in-region");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6688 defsymbol (&Qstart_and_end_in_region, "start-and-end-in-region");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6689 defsymbol (&Qstart_or_end_in_region, "start-or-end-in-region");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6690 defsymbol (&Qnegate_in_region, "negate-in-region");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6691
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6692 defsymbol (&Qdetached, "detached");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6693 defsymbol (&Qdestroyed, "destroyed");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6694 defsymbol (&Qbegin_glyph, "begin-glyph");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6695 defsymbol (&Qend_glyph, "end-glyph");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6696 defsymbol (&Qstart_open, "start-open");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6697 defsymbol (&Qend_open, "end-open");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6698 defsymbol (&Qstart_closed, "start-closed");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6699 defsymbol (&Qend_closed, "end-closed");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6700 defsymbol (&Qread_only, "read-only");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6701 /* defsymbol (&Qhighlight, "highlight"); in faces.c */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6702 defsymbol (&Qunique, "unique");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6703 defsymbol (&Qduplicable, "duplicable");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6704 defsymbol (&Qdetachable, "detachable");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6705 defsymbol (&Qpriority, "priority");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6706 defsymbol (&Qmouse_face, "mouse-face");
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 203
diff changeset
6707 defsymbol (&Qinitial_redisplay_function,"initial-redisplay-function");
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
6708
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6709
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6710 defsymbol (&Qglyph_layout, "glyph-layout"); /* backwards compatibility */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6711 defsymbol (&Qbegin_glyph_layout, "begin-glyph-layout");
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
6712 defsymbol (&Qend_glyph_layout, "end-glyph-layout");
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6713 defsymbol (&Qoutside_margin, "outside-margin");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6714 defsymbol (&Qinside_margin, "inside-margin");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6715 defsymbol (&Qwhitespace, "whitespace");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6716 /* Qtext defined in general.c */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6717
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
6718 defsymbol (&Qglyph_invisible, "glyph-invisible");
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
6719
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6720 defsymbol (&Qpaste_function, "paste-function");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6721 defsymbol (&Qcopy_function, "copy-function");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6722
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6723 defsymbol (&Qtext_prop, "text-prop");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6724 defsymbol (&Qtext_prop_extent_paste_function,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6725 "text-prop-extent-paste-function");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6726
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6727 DEFSUBR (Fextentp);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6728 DEFSUBR (Fextent_live_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6729 DEFSUBR (Fextent_detached_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6730 DEFSUBR (Fextent_start_position);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6731 DEFSUBR (Fextent_end_position);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6732 DEFSUBR (Fextent_object);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6733 DEFSUBR (Fextent_length);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6734
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6735 DEFSUBR (Fmake_extent);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6736 DEFSUBR (Fcopy_extent);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6737 DEFSUBR (Fdelete_extent);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6738 DEFSUBR (Fdetach_extent);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6739 DEFSUBR (Fset_extent_endpoints);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6740 DEFSUBR (Fnext_extent);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6741 DEFSUBR (Fprevious_extent);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6742 #if DEBUG_XEMACS
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6743 DEFSUBR (Fnext_e_extent);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6744 DEFSUBR (Fprevious_e_extent);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6745 #endif
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6746 DEFSUBR (Fnext_extent_change);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6747 DEFSUBR (Fprevious_extent_change);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6748
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6749 DEFSUBR (Fextent_parent);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6750 DEFSUBR (Fextent_children);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6751 DEFSUBR (Fset_extent_parent);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6752
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6753 DEFSUBR (Fextent_in_region_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6754 DEFSUBR (Fmap_extents);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6755 DEFSUBR (Fmap_extent_children);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6756 DEFSUBR (Fextent_at);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6757
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 203
diff changeset
6758 DEFSUBR (Fset_extent_initial_redisplay_function);
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6759 DEFSUBR (Fextent_face);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6760 DEFSUBR (Fset_extent_face);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6761 DEFSUBR (Fextent_mouse_face);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6762 DEFSUBR (Fset_extent_mouse_face);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6763 DEFSUBR (Fset_extent_begin_glyph);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6764 DEFSUBR (Fset_extent_end_glyph);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6765 DEFSUBR (Fextent_begin_glyph);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6766 DEFSUBR (Fextent_end_glyph);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6767 DEFSUBR (Fset_extent_begin_glyph_layout);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6768 DEFSUBR (Fset_extent_end_glyph_layout);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6769 DEFSUBR (Fextent_begin_glyph_layout);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6770 DEFSUBR (Fextent_end_glyph_layout);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6771 DEFSUBR (Fset_extent_priority);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6772 DEFSUBR (Fextent_priority);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6773 DEFSUBR (Fset_extent_property);
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 189
diff changeset
6774 DEFSUBR (Fset_extent_properties);
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6775 DEFSUBR (Fextent_property);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6776 DEFSUBR (Fextent_properties);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6777
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6778 DEFSUBR (Fhighlight_extent);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6779 DEFSUBR (Fforce_highlight_extent);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6780
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6781 DEFSUBR (Finsert_extent);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6782
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6783 DEFSUBR (Fget_text_property);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6784 DEFSUBR (Fget_char_property);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6785 DEFSUBR (Fput_text_property);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6786 DEFSUBR (Fput_nonduplicable_text_property);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6787 DEFSUBR (Fadd_text_properties);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6788 DEFSUBR (Fadd_nonduplicable_text_properties);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6789 DEFSUBR (Fremove_text_properties);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6790 DEFSUBR (Ftext_prop_extent_paste_function);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6791 DEFSUBR (Fnext_single_property_change);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
6792 DEFSUBR (Fprevious_single_property_change);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6793 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6794
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6795 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6796 vars_of_extents (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6797 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6798 DEFVAR_INT ("mouse-highlight-priority", &mouse_highlight_priority /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6799 The priority to use for the mouse-highlighting pseudo-extent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6800 that is used to highlight extents with the `mouse-face' attribute set.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6801 See `set-extent-priority'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6802 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6803 /* Set mouse-highlight-priority (which ends up being used both for the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6804 mouse-highlighting pseudo-extent and the primary selection extent)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6805 to a very high value because very few extents should override it.
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
6806 1000 gives lots of room below it for different-prioritized extents.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6807 10 doesn't. ediff, for example, likes to use priorities around 100.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6808 --ben */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6809 mouse_highlight_priority = /* 10 */ 1000;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6810
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6811 DEFVAR_LISP ("default-text-properties", &Vdefault_text_properties /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6812 Property list giving default values for text properties.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6813 Whenever a character does not specify a value for a property, the value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6814 stored in this list is used instead. This only applies when the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6815 functions `get-text-property' or `get-char-property' are called.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6816 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6817 Vdefault_text_properties = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6818
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6819 staticpro (&Vlast_highlighted_extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6820 Vlast_highlighted_extent = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6821
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6822 Vextent_face_reusable_list = Fcons (Qnil, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6823 staticpro (&Vextent_face_reusable_list);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
6824
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
6825 extent_auxiliary_defaults.begin_glyph = Qnil;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
6826 extent_auxiliary_defaults.end_glyph = Qnil;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
6827 extent_auxiliary_defaults.parent = Qnil;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
6828 extent_auxiliary_defaults.children = Qnil;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
6829 extent_auxiliary_defaults.priority = 0;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
6830 extent_auxiliary_defaults.invisible = Qnil;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
6831 extent_auxiliary_defaults.read_only = Qnil;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
6832 extent_auxiliary_defaults.mouse_face = Qnil;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
6833 extent_auxiliary_defaults.initial_redisplay_function = Qnil;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
6834 extent_auxiliary_defaults.before_change_functions = Qnil;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 406
diff changeset
6835 extent_auxiliary_defaults.after_change_functions = Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6836 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6837
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6838 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6839 complex_vars_of_extents (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6840 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6841 staticpro (&Vextent_face_memoize_hash_table);
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
6842 /* The memoize hash table maps from lists of symbols to lists of
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6843 faces. It needs to be `equal' to implement the memoization.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6844 The reverse table maps in the other direction and just needs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6845 to do `eq' comparison because the lists of faces are already
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6846 memoized. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6847 Vextent_face_memoize_hash_table =
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
6848 make_lisp_hash_table (100, HASH_TABLE_VALUE_WEAK, HASH_TABLE_EQUAL);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6849 staticpro (&Vextent_face_reverse_memoize_hash_table);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6850 Vextent_face_reverse_memoize_hash_table =
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
6851 make_lisp_hash_table (100, HASH_TABLE_KEY_WEAK, HASH_TABLE_EQ);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
6852 }