GTK eradication -- the build chain.
[sxemacs] / src / extents.c
1 /* Copyright (c) 1994, 1995 Free Software Foundation, Inc.
2    Copyright (c) 1995 Sun Microsystems, Inc.
3    Copyright (c) 1995, 1996, 2000 Ben Wing.
4
5 This file is part of SXEmacs
6
7 SXEmacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
11
12 SXEmacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program.  If not, see <http://www.gnu.org/licenses/>. */
19
20
21 /* Synched up with: Not in FSF. */
22
23 /* This file has been Mule-ized. */
24
25 /* Written by Ben Wing <ben@xemacs.org>.
26
27    [Originally written by some people at Lucid.
28    Hacked on by jwz.
29    Start/end-open stuff added by John Rose (john.rose@eng.sun.com).
30    Rewritten from scratch by Ben Wing, December 1994.] */
31
32 /* Commentary:
33
34    Extents are regions over a buffer, with a start and an end position
35    denoting the region of the buffer included in the extent.  In
36    addition, either end can be closed or open, meaning that the endpoint
37    is or is not logically included in the extent.  Insertion of a character
38    at a closed endpoint causes the character to go inside the extent;
39    insertion at an open endpoint causes the character to go outside.
40
41    Extent endpoints are stored using memory indices (see insdel.c),
42    to minimize the amount of adjusting that needs to be done when
43    characters are inserted or deleted.
44
45    (Formerly, extent endpoints at the gap could be either before or
46    after the gap, depending on the open/closedness of the endpoint.
47    The intent of this was to make it so that insertions would
48    automatically go inside or out of extents as necessary with no
49    further work needing to be done.  It didn't work out that way,
50    however, and just ended up complexifying and buggifying all the
51    rest of the code.)
52
53    Extents are compared using memory indices.  There are two orderings
54    for extents and both orders are kept current at all times.  The normal
55    or "display" order is as follows:
56
57    Extent A is "less than" extent B, that is, earlier in the display order,
58    if:    A-start < B-start,
59    or if: A-start = B-start, and A-end > B-end
60
61    So if two extents begin at the same position, the larger of them is the
62    earlier one in the display order (EXTENT_LESS is true).
63
64    For the e-order, the same thing holds: Extent A is "less than" extent B
65    in e-order, that is, later in the buffer,
66    if:    A-end < B-end,
67    or if: A-end = B-end, and A-start > B-start
68
69    So if two extents end at the same position, the smaller of them is the
70    earlier one in the e-order (EXTENT_E_LESS is true).
71
72    The display order and the e-order are complementary orders: any
73    theorem about the display order also applies to the e-order if you
74    swap all occurrences of "display order" and "e-order", "less than"
75    and "greater than", and "extent start" and "extent end".
76
77    Extents can be zero-length, and will end up that way if their endpoints
78    are explicitly set that way or if their detachable property is nil
79    and all the text in the extent is deleted. (The exception is open-open
80    zero-length extents, which are barred from existing because there is
81    no sensible way to define their properties.  Deletion of the text in
82    an open-open extent causes it to be converted into a closed-open
83    extent.)  Zero-length extents are primarily used to represent
84    annotations, and behave as follows:
85
86    1) Insertion at the position of a zero-length extent expands the extent
87    if both endpoints are closed; goes after the extent if it is closed-open;
88    and goes before the extent if it is open-closed.
89
90    2) Deletion of a character on a side of a zero-length extent whose
91    corresponding endpoint is closed causes the extent to be detached if
92    it is detachable; if the extent is not detachable or the corresponding
93    endpoint is open, the extent remains in the buffer, moving as necessary.
94
95    Note that closed-open, non-detachable zero-length extents behave exactly
96    like markers and that open-closed, non-detachable zero-length extents
97    behave like the "point-type" marker in Mule.
98
99    #### The following information is wrong in places.
100
101    More about the different orders:
102    --------------------------------
103
104    The extents in a buffer are ordered by "display order" because that
105    is that order that the redisplay mechanism needs to process them in.
106    The e-order is an auxiliary ordering used to facilitate operations
107    over extents.  The operations that can be performed on the ordered
108    list of extents in a buffer are
109
110    1) Locate where an extent would go if inserted into the list.
111    2) Insert an extent into the list.
112    3) Remove an extent from the list.
113    4) Map over all the extents that overlap a range.
114
115    (4) requires being able to determine the first and last extents
116    that overlap a range.
117
118    NOTE: "overlap" is used as follows:
119
120    -- two ranges overlap if they have at least one point in common.
121       Whether the endpoints are open or closed makes a difference here.
122    -- a point overlaps a range if the point is contained within the
123       range; this is equivalent to treating a point P as the range
124       [P, P].
125    -- In the case of an *extent* overlapping a point or range, the
126       extent is normally treated as having closed endpoints.  This
127       applies consistently in the discussion of stacks of extents
128       and such below.  Note that this definition of overlap is not
129       necessarily consistent with the extents that `map-extents'
130       maps over, since `map-extents' sometimes pays attention to
131       whether the endpoints of an extents are open or closed.
132       But for our purposes, it greatly simplifies things to treat
133       all extents as having closed endpoints.
134
135    First, define >, <, <=, etc. as applied to extents to mean
136      comparison according to the display order.  Comparison between an
137      extent E and an index I means comparison between E and the range
138      [I, I].
139    Also define e>, e<, e<=, etc. to mean comparison according to the
140      e-order.
141    For any range R, define R(0) to be the starting index of the range
142      and R(1) to be the ending index of the range.
143    For any extent E, define E(next) to be the extent directly following
144      E, and E(prev) to be the extent directly preceding E.  Assume
145      E(next) and E(prev) can be determined from E in constant time.
146      (This is because we store the extent list as a doubly linked
147      list.)
148    Similarly, define E(e-next) and E(e-prev) to be the extents
149      directly following and preceding E in the e-order.
150
151    Now:
152
153    Let R be a range.
154    Let F be the first extent overlapping R.
155    Let L be the last extent overlapping R.
156
157    Theorem 1: R(1) lies between L and L(next), i.e. L <= R(1) < L(next).
158
159    This follows easily from the definition of display order.  The
160    basic reason that this theorem applies is that the display order
161    sorts by increasing starting index.
162
163    Therefore, we can determine L just by looking at where we would
164    insert R(1) into the list, and if we know F and are moving forward
165    over extents, we can easily determine when we've hit L by comparing
166    the extent we're at to R(1).
167
168    Theorem 2: F(e-prev) e< [1, R(0)] e<= F.
169
170    This is the analog of Theorem 1, and applies because the e-order
171    sorts by increasing ending index.
172
173    Therefore, F can be found in the same amount of time as operation (1),
174    i.e. the time that it takes to locate where an extent would go if
175    inserted into the e-order list.
176
177    If the lists were stored as balanced binary trees, then operation (1)
178    would take logarithmic time, which is usually quite fast.  However,
179    currently they're stored as simple doubly-linked lists, and instead
180    we do some caching to try to speed things up.
181
182    Define a "stack of extents" (or "SOE") as the set of extents
183    (ordered in the display order) that overlap an index I, together with
184    the SOE's "previous" extent, which is an extent that precedes I in
185    the e-order. (Hopefully there will not be very many extents between
186    I and the previous extent.)
187
188    Now:
189
190    Let I be an index, let S be the stack of extents on I, let F be
191    the first extent in S, and let P be S's previous extent.
192
193    Theorem 3: The first extent in S is the first extent that overlaps
194    any range [I, J].
195
196    Proof: Any extent that overlaps [I, J] but does not include I must
197    have a start index > I, and thus be greater than any extent in S.
198
199    Therefore, finding the first extent that overlaps a range R is the
200    same as finding the first extent that overlaps R(0).
201
202    Theorem 4: Let I2 be an index such that I2 > I, and let F2 be the
203    first extent that overlaps I2.  Then, either F2 is in S or F2 is
204    greater than any extent in S.
205
206    Proof: If F2 does not include I then its start index is greater
207    than I and thus it is greater than any extent in S, including F.
208    Otherwise, F2 includes I and thus is in S, and thus F2 >= F.
209
210 */
211
212 #include <config.h>
213 #include "lisp.h"
214
215 #include "buffer.h"
216 #include "debug.h"
217 #include "ui/device.h"
218 #include "elhash.h"
219 #include "extents.h"
220 #include "ui/faces.h"
221 #include "ui/frame.h"
222 #include "ui/glyphs.h"
223 #include "ui/insdel.h"
224 #include "ui/keymap.h"
225 #include "opaque.h"
226 #include "process.h"
227 #include "ui/redisplay.h"
228 #include "ui/gutter.h"
229
230 /* ------------------------------- */
231 /*            gap array            */
232 /* ------------------------------- */
233
234 /* Note that this object is not extent-specific and should perhaps be
235    moved into another file. */
236
237 typedef struct gap_array_marker_s *gap_array_marker_t;
238 typedef struct gap_array_s *gap_array_t;
239
240 /* Holds a marker that moves as elements in the array are inserted and
241    deleted, similar to standard markers. */
242
243 struct gap_array_marker_s {
244         int pos;
245         gap_array_marker_t next;
246 };
247
248 /* Holds a "gap array", which is an array of elements with a gap located
249    in it.  Insertions and deletions with a high degree of locality
250    are very fast, essentially in constant time.  Array positions as
251    used and returned in the gap array functions are independent of
252    the gap. */
253
254 struct gap_array_s {
255         char *array;
256         int gap;
257         int gapsize;
258         int numels;
259         int elsize;
260         gap_array_marker_t markers;
261 };
262
263 #if !defined HAVE_BDWGC || !defined EF_USE_BDWGC
264 static gap_array_marker_t gap_array_marker_freelist;
265 #endif  /* !BDWGC */
266
267 /* Convert a "memory position" (i.e. taking the gap into account) into
268    the address of the element at (i.e. after) that position.  "Memory
269    positions" are only used internally and are of type Memind.
270    "Array positions" are used externally and are of type int. */
271 #define GAP_ARRAY_MEMEL_ADDR(ga, memel) ((ga)->array + (ga)->elsize*(memel))
272
273 /* Number of elements currently in a gap array */
274 #define GAP_ARRAY_NUM_ELS(ga) ((ga)->numels)
275
276 #define GAP_ARRAY_ARRAY_TO_MEMORY_POS(ga, pos)                  \
277         ((pos) <= (ga)->gap ? (pos) : (pos) + (ga)->gapsize)
278
279 #define GAP_ARRAY_MEMORY_TO_ARRAY_POS(ga, pos)                  \
280         ((pos) <= (ga)->gap ? (pos) : (pos) - (ga)->gapsize)
281
282 /* Convert an array position into the address of the element at
283    (i.e. after) that position. */
284 #define GAP_ARRAY_EL_ADDR(ga, pos)                                      \
285         ((pos) < (ga)->gap                                              \
286          ? GAP_ARRAY_MEMEL_ADDR(ga, pos)                                \
287          : GAP_ARRAY_MEMEL_ADDR(ga, (pos) + (ga)->gapsize))
288
289 /* ------------------------------- */
290 /*          extent list            */
291 /* ------------------------------- */
292
293 typedef struct extent_list_marker_s *extent_list_marker_t;
294 typedef struct extent_list_s *extent_list_t;
295
296 struct extent_list_marker_s {
297         gap_array_marker_t m;
298         int endp;
299         extent_list_marker_t next;
300 };
301
302 struct extent_list_s {
303         gap_array_t start;
304         gap_array_t end;
305         extent_list_marker_t markers;
306 };
307
308 #if !defined HAVE_BDWGC || !defined EF_USE_BDWGC
309 static extent_list_marker_t extent_list_marker_freelist;
310 #endif  /* !BDWGC */
311
312 #define EXTENT_LESS_VALS(e,st,nd)               \
313         ((extent_start (e) < (st)) ||           \
314          ((extent_start (e) == (st)) &&         \
315           (extent_end (e) > (nd))))
316
317 #define EXTENT_EQUAL_VALS(e,st,nd)              \
318         ((extent_start (e) == (st)) &&          \
319          (extent_end (e) == (nd)))
320
321 #define EXTENT_LESS_EQUAL_VALS(e,st,nd)         \
322         ((extent_start (e) < (st)) ||           \
323          ((extent_start (e) == (st)) &&         \
324           (extent_end (e) >= (nd))))
325
326 /* Is extent E1 less than extent E2 in the display order? */
327 #define EXTENT_LESS(e1,e2)                                              \
328         EXTENT_LESS_VALS (e1, extent_start (e2), extent_end (e2))
329
330 /* Is extent E1 equal to extent E2? */
331 #define EXTENT_EQUAL(e1,e2)                                             \
332         EXTENT_EQUAL_VALS (e1, extent_start (e2), extent_end (e2))
333
334 /* Is extent E1 less than or equal to extent E2 in the display order? */
335 #define EXTENT_LESS_EQUAL(e1,e2)                                        \
336         EXTENT_LESS_EQUAL_VALS (e1, extent_start (e2), extent_end (e2))
337
338 #define EXTENT_E_LESS_VALS(e,st,nd)             \
339         ((extent_end (e) < (nd)) ||             \
340          ((extent_end (e) == (nd)) &&           \
341           (extent_start (e) > (st))))
342
343 #define EXTENT_E_LESS_EQUAL_VALS(e,st,nd)       \
344         ((extent_end (e) < (nd)) ||             \
345          ((extent_end (e) == (nd)) &&           \
346           (extent_start (e) >= (st))))
347
348 /* Is extent E1 less than extent E2 in the e-order? */
349 #define EXTENT_E_LESS(e1,e2)                                            \
350         EXTENT_E_LESS_VALS(e1, extent_start (e2), extent_end (e2))
351
352 /* Is extent E1 less than or equal to extent E2 in the e-order? */
353 #define EXTENT_E_LESS_EQUAL(e1,e2)                                      \
354         EXTENT_E_LESS_EQUAL_VALS (e1, extent_start (e2), extent_end (e2))
355
356 #define EXTENT_GAP_ARRAY_AT(ga, pos) (*(EXTENT*)GAP_ARRAY_EL_ADDR(ga, pos))
357
358 /* ------------------------------- */
359 /*    auxiliary extent structure   */
360 /* ------------------------------- */
361
362 struct extent_auxiliary extent_auxiliary_defaults;
363
364 /* ------------------------------- */
365 /*     buffer-extent primitives    */
366 /* ------------------------------- */
367 typedef struct extent_stack_s *extent_stack_t;
368
369 struct extent_stack_s {
370         extent_list_t extents;
371         /* Position of stack of extents.  EXTENTS is the list of
372            all extents that overlap this position.  This position
373            can be -1 if the stack of extents is invalid (this
374            happens when a buffer is first created or a string's
375            stack of extents is created [a string's stack of extents
376            is nuked when a GC occurs, to conserve memory]). */
377         Memind pos;
378 };
379
380 /* ------------------------------- */
381 /*           map-extents           */
382 /* ------------------------------- */
383
384 typedef int Endpoint_Index;
385
386 #define memind_to_startind(x, start_open)               \
387         ((Endpoint_Index) (((x) << 1) + !!(start_open)))
388 #define memind_to_endind(x, end_open)                   \
389         ((Endpoint_Index) (((x) << 1) - !!(end_open)))
390
391 /* Combination macros */
392 #define bytind_to_startind(buf, x, start_open)                  \
393         memind_to_startind (bytind_to_memind (buf, x), start_open)
394 #define bytind_to_endind(buf, x, end_open)                      \
395         memind_to_endind (bytind_to_memind (buf, x), end_open)
396
397 /* ------------------------------- */
398 /*    buffer-or-string primitives  */
399 /* ------------------------------- */
400
401 /* Similar for Bytinds and start/end indices. */
402
403 #define buffer_or_string_bytind_to_startind(obj, ind, start_open)       \
404         memind_to_startind(buffer_or_string_bytind_to_memind (obj, ind), \
405                            start_open)
406
407 #define buffer_or_string_bytind_to_endind(obj, ind, end_open)           \
408         memind_to_endind(buffer_or_string_bytind_to_memind (obj, ind),  \
409                          end_open)
410
411 /* ------------------------------- */
412 /*      Lisp-level functions       */
413 /* ------------------------------- */
414
415 /* flags for decode_extent() */
416 #define DE_MUST_HAVE_BUFFER 1
417 #define DE_MUST_BE_ATTACHED 2
418
419 Lisp_Object Vlast_highlighted_extent;
420 Fixnum mouse_highlight_priority;
421
422 Lisp_Object Qextentp;
423 Lisp_Object Qextent_live_p;
424
425 Lisp_Object Qall_extents_closed;
426 Lisp_Object Qall_extents_open;
427 Lisp_Object Qall_extents_closed_open;
428 Lisp_Object Qall_extents_open_closed;
429 Lisp_Object Qstart_in_region;
430 Lisp_Object Qend_in_region;
431 Lisp_Object Qstart_and_end_in_region;
432 Lisp_Object Qstart_or_end_in_region;
433 Lisp_Object Qnegate_in_region;
434
435 Lisp_Object Qdetached;
436 Lisp_Object Qdestroyed;
437 Lisp_Object Qbegin_glyph;
438 Lisp_Object Qend_glyph;
439 Lisp_Object Qstart_open;
440 Lisp_Object Qend_open;
441 Lisp_Object Qstart_closed;
442 Lisp_Object Qend_closed;
443 Lisp_Object Qread_only;
444 /* Qhighlight defined in general.c */
445 Lisp_Object Qunique;
446 Lisp_Object Qduplicable;
447 Lisp_Object Qdetachable;
448 Lisp_Object Qpriority;
449 Lisp_Object Qmouse_face;
450 Lisp_Object Qinitial_redisplay_function;
451
452 /* This exists only for backwards compatibility. */
453 Lisp_Object Qglyph_layout;
454 Lisp_Object Qbegin_glyph_layout, Qend_glyph_layout;
455 Lisp_Object Qoutside_margin;
456 Lisp_Object Qinside_margin;
457 Lisp_Object Qwhitespace;
458 /* Qtext defined in general.c */
459
460 Lisp_Object Qcopy_function;
461 Lisp_Object Qpaste_function;
462
463 /* The idea here is that if we're given a list of faces, we
464    need to "memoize" this so that two lists of faces that are `equal'
465    turn into the same object.  When `set-extent-face' is called, we
466    "memoize" into a list of actual faces; when `extent-face' is called,
467    we do a reverse lookup to get the list of symbols. */
468
469 static Lisp_Object canonicalize_extent_property(Lisp_Object prop,
470                                                 Lisp_Object value);
471 Lisp_Object Vextent_face_memoize_hash_table;
472 Lisp_Object Vextent_face_reverse_memoize_hash_table;
473 Lisp_Object Vextent_face_reusable_list;
474 /* FSFmacs bogosity */
475 Lisp_Object Vdefault_text_properties;
476
477 EXFUN(Fextent_properties, 1);
478 EXFUN(Fset_extent_property, 3);
479
480 /* if true, we don't want to set any redisplay flags on modeline extent
481    changes */
482 int in_modeline_generation;
483 \f
484 /************************************************************************/
485 /*                       Generalized gap array                          */
486 /************************************************************************/
487
488 /* This generalizes the "array with a gap" model used to store buffer
489    characters.  This is based on the stuff in insdel.c and should
490    probably be merged with it.  This is not extent-specific and should
491    perhaps be moved into a separate file. */
492
493 /* ------------------------------- */
494 /*        internal functions       */
495 /* ------------------------------- */
496
497 /* Adjust the gap array markers in the range (FROM, TO].  Parallel to
498    adjust_markers() in insdel.c. */
499
500 static void
501 gap_array_adjust_markers(gap_array_t ga, Memind from, Memind to, int amount)
502 {
503         gap_array_marker_t m;
504
505         for (m = ga->markers; m; m = m->next) {
506                 m->pos = do_marker_adjustment(m->pos, from, to, amount);
507         }
508         return;
509 }
510
511 /* Move the gap to array position POS.  Parallel to move_gap() in
512    insdel.c but somewhat simplified. */
513
514 static void
515 gap_array_move_gap(gap_array_t ga, int pos)
516 {
517         int gap = ga->gap;
518         int gapsize = ga->gapsize;
519
520         assert(ga->array);
521         if (pos < gap) {
522                 memmove(GAP_ARRAY_MEMEL_ADDR(ga, pos + gapsize),
523                         GAP_ARRAY_MEMEL_ADDR(ga, pos),
524                         (gap - pos) * ga->elsize);
525                 gap_array_adjust_markers(ga, (Memind) pos, (Memind) gap,
526                                          gapsize);
527         } else if (pos > gap) {
528                 memmove(GAP_ARRAY_MEMEL_ADDR(ga, gap),
529                         GAP_ARRAY_MEMEL_ADDR(ga, gap + gapsize),
530                         (pos - gap) * ga->elsize);
531                 gap_array_adjust_markers(ga, (Memind) (gap + gapsize),
532                                          (Memind) (pos + gapsize), -gapsize);
533         }
534         ga->gap = pos;
535         return;
536 }
537
538 /* Make the gap INCREMENT characters longer.  Parallel to make_gap() in
539    insdel.c. */
540
541 static void
542 gap_array_make_gap(gap_array_t ga, int increment)
543 {
544         char *ptr = ga->array;
545         int real_gap_loc;
546         int old_gap_size;
547
548         /* If we have to get more space, get enough to last a while.  We use
549            a geometric progression that saves on realloc space. */
550         increment += 100 + ga->numels / 8;
551
552         ptr = (char*)xrealloc(ptr,
553                               (ga->numels + ga->gapsize +
554                                increment) * ga->elsize);
555         if (ptr == 0) {
556                 memory_full();
557         }
558         ga->array = ptr;
559
560         real_gap_loc = ga->gap;
561         old_gap_size = ga->gapsize;
562
563         /* Call the newly allocated space a gap at the end of the whole
564            space.  */
565         ga->gap = ga->numels + ga->gapsize;
566         ga->gapsize = increment;
567
568         /* Move the new gap down to be consecutive with the end of the old one.
569            This adjusts the markers properly too.  */
570         gap_array_move_gap(ga, real_gap_loc + old_gap_size);
571
572         /* Now combine the two into one large gap.  */
573         ga->gapsize += old_gap_size;
574         ga->gap = real_gap_loc;
575         return;
576 }
577
578 /* ------------------------------- */
579 /*        external functions       */
580 /* ------------------------------- */
581
582 /* Insert NUMELS elements (pointed to by ELPTR) into the specified
583    gap array at POS. */
584
585 static void
586 gap_array_insert_els(gap_array_t ga, int pos, void *elptr, int numels)
587 {
588         assert(pos >= 0 && pos <= ga->numels);
589         if (ga->gapsize < numels) {
590                 gap_array_make_gap(ga, numels - ga->gapsize);
591         }
592         if (pos != ga->gap) {
593                 gap_array_move_gap(ga, pos);
594         }
595         memcpy(GAP_ARRAY_MEMEL_ADDR(ga, ga->gap), (char *)elptr,
596                numels * ga->elsize);
597         ga->gapsize -= numels;
598         ga->gap += numels;
599         ga->numels += numels;
600         /* This is the equivalent of insert-before-markers.
601
602            #### Should only happen if marker is "moves forward at insert" type.
603          */
604
605         gap_array_adjust_markers(ga, pos - 1, pos, numels);
606         return;
607 }
608
609 /* Delete NUMELS elements from the specified gap array, starting at FROM. */
610
611 static void
612 gap_array_delete_els(gap_array_t ga, int from, int numdel)
613 {
614         int to = from + numdel;
615         int gapsize = ga->gapsize;
616
617         assert(from >= 0);
618         assert(numdel >= 0);
619         assert(to <= ga->numels);
620
621         /* Make sure the gap is somewhere in or next to what we are deleting.  */
622         if (to < ga->gap) {
623                 gap_array_move_gap(ga, to);
624         }
625         if (from > ga->gap) {
626                 gap_array_move_gap(ga, from);
627         }
628         /* Relocate all markers pointing into the new, larger gap
629            to point at the end of the text before the gap.  */
630         gap_array_adjust_markers(ga, to + gapsize, to + gapsize,
631                                  -numdel - gapsize);
632
633         ga->gapsize += numdel;
634         ga->numels -= numdel;
635         ga->gap = from;
636         return;
637 }
638
639 static gap_array_marker_t
640 gap_array_make_marker(gap_array_t ga, int pos)
641 {
642         gap_array_marker_t m;
643
644         assert(pos >= 0 && pos <= ga->numels);
645 #if defined HAVE_BDWGC && defined EF_USE_BDWGC
646         m = xnew(struct gap_array_marker_s);
647 #else  /* !BDWGC */
648         if (gap_array_marker_freelist) {
649                 m = gap_array_marker_freelist;
650                 gap_array_marker_freelist = gap_array_marker_freelist->next;
651         } else {
652                 m = xnew(struct gap_array_marker_s);
653         }
654 #endif  /* BDWGC */
655
656         m->pos = GAP_ARRAY_ARRAY_TO_MEMORY_POS(ga, pos);
657         m->next = ga->markers;
658         ga->markers = m;
659         return m;
660 }
661
662 static void
663 gap_array_delete_marker(gap_array_t ga, gap_array_marker_t m)
664 {
665         volatile gap_array_marker_t p, prev;
666
667         for (prev = 0, p = ga->markers; p && p != m; prev = p, p = p->next);
668         if (UNLIKELY(p == NULL)) {
669                 return;
670         }
671         assert(p);
672         if (prev) {
673                 prev->next = p->next;
674         } else {
675                 ga->markers = p->next;
676         }
677 #if defined HAVE_BDWGC && defined EF_USE_BDWGC
678         xfree(m);
679 #else  /* !BDWGC */
680         m->next = gap_array_marker_freelist;
681         m->pos = 0xDEADBEEF;
682         gap_array_marker_freelist = m;
683 #endif  /* BDWGC */
684         return;
685 }
686
687 static void
688 gap_array_delete_all_markers(gap_array_t ga)
689 {
690         for (volatile gap_array_marker_t p = ga->markers, next; p; p = next) {
691                 next = p->next;
692 #if defined HAVE_BDWGC && defined EF_USE_BDWGC
693                 xfree(p);
694 #else  /* !BDWGC */
695                 p->next = gap_array_marker_freelist;
696                 p->pos = 0xDEADBEEF;
697                 gap_array_marker_freelist = p;
698 #endif  /* BDWGC */
699         }
700         ga->markers = NULL;
701         return;
702 }
703
704 static void
705 gap_array_move_marker(gap_array_t ga, gap_array_marker_t m, int pos)
706 {
707         assert(pos >= 0 && pos <= ga->numels);
708         m->pos = GAP_ARRAY_ARRAY_TO_MEMORY_POS(ga, pos);
709 }
710
711 #define gap_array_marker_pos(ga, m)                     \
712         GAP_ARRAY_MEMORY_TO_ARRAY_POS (ga, (m)->pos)
713
714 static gap_array_t
715 make_gap_array(int elsize)
716 {
717         gap_array_t ga = xnew_and_zero(struct gap_array_s);
718         ga->elsize = elsize;
719         return ga;
720 }
721
722 static void
723 free_gap_array(gap_array_t ga)
724 {
725         if (ga->array) {
726                 xfree(ga->array);
727         }
728         gap_array_delete_all_markers(ga);
729         xfree(ga);
730         return;
731 }
732 \f
733 /************************************************************************/
734 /*                       Extent list primitives                         */
735 /************************************************************************/
736
737 /* A list of extents is maintained as a double gap array: one gap array
738    is ordered by start index (the "display order") and the other is
739    ordered by end index (the "e-order").  Note that positions in an
740    extent list should logically be conceived of as referring *to*
741    a particular extent (as is the norm in programs) rather than
742    sitting between two extents.  Note also that callers of these
743    functions should not be aware of the fact that the extent list is
744    implemented as an array, except for the fact that positions are
745    integers (this should be generalized to handle integers and linked
746    list equally well).
747 */
748
749 /* Number of elements in an extent list */
750 #define extent_list_num_els(el) GAP_ARRAY_NUM_ELS(el->start)
751
752 /* Return the position at which EXTENT is located in the specified extent
753    list (in the display order if ENDP is 0, in the e-order otherwise).
754    If the extent is not found, the position where the extent would
755    be inserted is returned.  If ENDP is 0, the insertion would go after
756    all other equal extents.  If ENDP is not 0, the insertion would go
757    before all other equal extents.  If FOUNDP is not 0, then whether
758    the extent was found will get written into it. */
759
760 static int
761 extent_list_locate(extent_list_t el, EXTENT extent, int endp, bool *foundp)
762 {
763         gap_array_t ga = endp ? el->end : el->start;
764         int left = 0, right = GAP_ARRAY_NUM_ELS(ga);
765         int oldfoundpos, foundpos;
766         bool found;
767
768         while (left != right) {
769                 /* RIGHT might not point to a valid extent (i.e. it's at the end
770                    of the list), so NEWPOS must round down. */
771                 unsigned int newpos = (left + right) >> 1;
772                 EXTENT e = EXTENT_GAP_ARRAY_AT(ga, (int)newpos);
773
774                 if (endp ? EXTENT_E_LESS(e, extent) : EXTENT_LESS(e, extent)) {
775                         left = newpos + 1;
776                 } else {
777                         right = newpos;
778                 }
779         }
780
781         /* Now we're at the beginning of all equal extents. */
782         found = false;
783         oldfoundpos = foundpos = left;
784         while (foundpos < GAP_ARRAY_NUM_ELS(ga)) {
785                 EXTENT e = EXTENT_GAP_ARRAY_AT(ga, foundpos);
786                 if (e == extent) {
787                         found = 1;
788                         break;
789                 }
790                 if (!EXTENT_EQUAL(e, extent)) {
791                         break;
792                 }
793                 foundpos++;
794         }
795         if (foundp) {
796                 *foundp = found;
797         }
798         if (found || !endp) {
799                 return foundpos;
800         } else {
801                 return oldfoundpos;
802         }
803 }
804
805 /* Return the position of the first extent that begins at or after POS
806    (or ends at or after POS, if ENDP is not 0).
807
808    An out-of-range value for POS is allowed, and guarantees that the
809    position at the beginning or end of the extent list is returned. */
810
811 static int
812 extent_list_locate_from_pos(extent_list_t el, Memind pos, int endp)
813 {
814         struct extent fake_extent;
815         /*
816
817            Note that if we search for [POS, POS], then we get the following:
818
819            -- if ENDP is 0, then all extents whose start position is <= POS
820            lie before the returned position, and all extents whose start
821            position is > POS lie at or after the returned position.
822
823            -- if ENDP is not 0, then all extents whose end position is < POS
824            lie before the returned position, and all extents whose end
825            position is >= POS lie at or after the returned position.
826
827          */
828         set_extent_start(&fake_extent, endp ? pos : pos - 1);
829         set_extent_end(&fake_extent, endp ? pos : pos - 1);
830         return extent_list_locate(el, &fake_extent, endp, 0);
831 }
832
833 /* Return the extent at POS. */
834
835 static EXTENT
836 extent_list_at(extent_list_t el, Memind pos, int endp)
837 {
838         gap_array_t ga = endp ? el->end : el->start;
839
840         assert(pos >= 0 && pos < GAP_ARRAY_NUM_ELS(ga));
841         return EXTENT_GAP_ARRAY_AT(ga, pos);
842 }
843
844 /* Insert an extent into an extent list. */
845
846 static void
847 extent_list_insert(extent_list_t el, EXTENT extent)
848 {
849         int pos;
850         bool foundp;
851
852         pos = extent_list_locate(el, extent, 0, &foundp);
853         assert(!foundp);
854         gap_array_insert_els(el->start, pos, &extent, 1);
855         pos = extent_list_locate(el, extent, 1, &foundp);
856         assert(!foundp);
857         gap_array_insert_els(el->end, pos, &extent, 1);
858         return;
859 }
860
861 /* Delete an extent from an extent list. */
862
863 static void
864 extent_list_delete(extent_list_t el, EXTENT extent)
865 {
866         int pos;
867         bool foundp;
868
869         pos = extent_list_locate(el, extent, 0, &foundp);
870         assert(foundp);
871         gap_array_delete_els(el->start, pos, 1);
872         pos = extent_list_locate(el, extent, 1, &foundp);
873         assert(foundp);
874         gap_array_delete_els(el->end, pos, 1);
875         return;
876 }
877
878 static void
879 extent_list_delete_all(extent_list_t el)
880 {
881         gap_array_delete_els(el->start, 0, GAP_ARRAY_NUM_ELS(el->start));
882         gap_array_delete_els(el->end, 0, GAP_ARRAY_NUM_ELS(el->end));
883         return;
884 }
885
886 static extent_list_marker_t
887 extent_list_make_marker(extent_list_t el, int pos, int endp)
888 {
889         extent_list_marker_t m;
890
891 #if defined HAVE_BDWGC && defined EF_USE_BDWGC
892         m = xnew(struct extent_list_marker_s);
893 #else  /* !BDWGC */
894         if (extent_list_marker_freelist) {
895                 m = extent_list_marker_freelist;
896                 extent_list_marker_freelist = extent_list_marker_freelist->next;
897         } else {
898                 m = xnew(struct extent_list_marker_s);
899         }
900 #endif  /* BDWGC */
901
902         m->m = gap_array_make_marker(endp ? el->end : el->start, pos);
903         m->endp = endp;
904         m->next = el->markers;
905         el->markers = m;
906         return m;
907 }
908
909 #define extent_list_move_marker(el, mkr, pos)                           \
910         gap_array_move_marker((mkr)->endp                               \
911                               ? (el)->end                               \
912                               : (el)->start, (mkr)->m, pos)
913
914 static void
915 extent_list_delete_marker(extent_list_t el, extent_list_marker_t m)
916 {
917         extent_list_marker_t p, prev;
918
919         for (prev = 0, p = el->markers; p && p != m; prev = p, p = p->next);
920         assert(p);
921         if (prev) {
922                 prev->next = p->next;
923         } else {
924                 el->markers = p->next;
925         }
926 #if defined HAVE_BDWGC && defined EF_USE_BDWGC
927         xfree(m);
928 #else  /* !BDWGC */
929         m->next = extent_list_marker_freelist;
930         extent_list_marker_freelist = m;
931 #endif  /* BDWGC */
932         gap_array_delete_marker(m->endp ? el->end : el->start, m->m);
933         return;
934 }
935
936 #define extent_list_marker_pos(el, mkr)                                 \
937         gap_array_marker_pos ((mkr)->endp                               \
938                               ? (el)->end                               \
939                               : (el)->start, (mkr)->m)
940
941 static extent_list_t
942 allocate_extent_list(void)
943 {
944         extent_list_t el = xnew(struct extent_list_s);
945         el->start = make_gap_array(sizeof(EXTENT));
946         el->end = make_gap_array(sizeof(EXTENT));
947         el->markers = 0;
948         return el;
949 }
950
951 static void
952 free_extent_list(extent_list_t el)
953 {
954         free_gap_array(el->start);
955         free_gap_array(el->end);
956         xfree(el);
957         return;
958 }
959 \f
960 /************************************************************************/
961 /*                       Auxiliary extent structure                     */
962 /************************************************************************/
963
964 static Lisp_Object mark_extent_auxiliary(Lisp_Object obj)
965 {
966         struct extent_auxiliary *data = XEXTENT_AUXILIARY(obj);
967         mark_object(data->begin_glyph);
968         mark_object(data->end_glyph);
969         mark_object(data->invisible);
970         mark_object(data->children);
971         mark_object(data->read_only);
972         mark_object(data->mouse_face);
973         mark_object(data->initial_redisplay_function);
974         mark_object(data->before_change_functions);
975         mark_object(data->after_change_functions);
976         return data->parent;
977 }
978
979 DEFINE_LRECORD_IMPLEMENTATION("extent-auxiliary", extent_auxiliary,
980                               mark_extent_auxiliary, internal_object_printer,
981                               0, 0, 0, 0, struct extent_auxiliary);
982
983 void allocate_extent_auxiliary(EXTENT ext)
984 {
985         Lisp_Object extent_aux;
986         struct extent_auxiliary *data =
987                 alloc_lcrecord_type(struct extent_auxiliary,
988                                     &lrecord_extent_auxiliary);
989
990         copy_lcrecord(data, &extent_auxiliary_defaults);
991         XSETEXTENT_AUXILIARY(extent_aux, data);
992         ext->plist = Fcons(extent_aux, ext->plist);
993         ext->flags.has_aux = 1;
994         return;
995 }
996 \f
997 /************************************************************************/
998 /*                         Extent info structure                        */
999 /************************************************************************/
1000
1001 /* An extent-info structure consists of a list of the buffer or string's
1002    extents and a "stack of extents" that lists all of the extents over
1003    a particular position.  The stack-of-extents info is used for
1004    optimization purposes -- it basically caches some info that might
1005    be expensive to compute.  Certain otherwise hard computations are easy
1006    given the stack of extents over a particular position, and if the
1007    stack of extents over a nearby position is known (because it was
1008    calculated at some prior point in time), it's easy to move the stack
1009    of extents to the proper position.
1010
1011    Given that the stack of extents is an optimization, and given that
1012    it requires memory, a string's stack of extents is wiped out each
1013    time a garbage collection occurs.  Therefore, any time you retrieve
1014    the stack of extents, it might not be there.  If you need it to
1015    be there, use the _force version.
1016
1017    Similarly, a string may or may not have an extent_info structure.
1018    (Generally it won't if there haven't been any extents added to the
1019    string.) So use the _force version if you need the extent_info
1020    structure to be there. */
1021
1022 static extent_stack_t allocate_soe(void);
1023 static void free_soe(extent_stack_t);
1024 static void soe_invalidate(Lisp_Object obj);
1025
1026 #if !defined HAVE_BDWGC || !defined EF_USE_BDWGC
1027 static Lisp_Object
1028 mark_extent_info(Lisp_Object obj)
1029 {
1030         struct extent_info *data = (struct extent_info *)XEXTENT_INFO(obj);
1031         int i;
1032         extent_list_t list = data->extents;
1033
1034         /* Vbuffer_defaults and Vbuffer_local_symbols are buffer-like
1035            objects that are created specially and never have their extent
1036            list initialized (or rather, it is set to zero in
1037            nuke_all_buffer_slots()).  However, these objects get
1038            garbage-collected so we have to deal.
1039
1040            (Also the list can be zero when we're dealing with a destroyed
1041            buffer.) */
1042
1043         if (list) {
1044                 for (i = 0; i < extent_list_num_els(list); i++) {
1045                         struct extent *extent = extent_list_at(list, i, 0);
1046                         Lisp_Object exobj;
1047
1048                         XSETEXTENT(exobj, extent);
1049                         mark_object(exobj);
1050                 }
1051         }
1052
1053         return Qnil;
1054 }
1055
1056 static void
1057 finalize_extent_info(void *header, int for_disksave)
1058 {
1059         struct extent_info *data = (struct extent_info *)header;
1060
1061         if (for_disksave)
1062                 return;
1063
1064         if (data->soe) {
1065                 free_soe(data->soe);
1066                 data->soe = 0;
1067         }
1068         if (data->extents) {
1069                 free_extent_list(data->extents);
1070                 data->extents = 0;
1071         }
1072 }
1073 #else  /* BDWGC */
1074 /* just define dummies */
1075 static Lisp_Object
1076 mark_extent_info(Lisp_Object SXE_UNUSED(obj))
1077 {
1078         return Qnil;
1079 }
1080
1081 static void
1082 finalize_extent_info(void *SXE_UNUSED(header), int SXE_UNUSED(for_disksave))
1083 {
1084         return;
1085 }
1086 #endif  /* !BDWGC */
1087
1088 DEFINE_LRECORD_IMPLEMENTATION("extent-info", extent_info,
1089                               mark_extent_info, internal_object_printer,
1090                               finalize_extent_info, 0, 0, 0,
1091                               struct extent_info);
1092 \f
1093 static Lisp_Object
1094 allocate_extent_info(void)
1095 {
1096         Lisp_Object extent_info;
1097         struct extent_info *data =
1098                 alloc_lcrecord_type(struct extent_info, &lrecord_extent_info);
1099
1100         XSETEXTENT_INFO(extent_info, data);
1101         data->extents = allocate_extent_list();
1102         data->soe = 0;
1103         return extent_info;
1104 }
1105
1106 void
1107 flush_cached_extent_info(Lisp_Object extent_info)
1108 {
1109         struct extent_info *data = XEXTENT_INFO(extent_info);
1110
1111         if (data->soe) {
1112                 free_soe(data->soe);
1113                 data->soe = 0;
1114         }
1115 }
1116 \f
1117 /************************************************************************/
1118 /*                    Buffer/string extent primitives                   */
1119 /************************************************************************/
1120
1121 /* The functions in this section are the ONLY ones that should know
1122    about the internal implementation of the extent lists.  Other functions
1123    should only know that there are two orderings on extents, the "display"
1124    order (sorted by start position, basically) and the e-order (sorted
1125    by end position, basically), and that certain operations are provided
1126    to manipulate the list. */
1127
1128 /* ------------------------------- */
1129 /*        basic primitives         */
1130 /* ------------------------------- */
1131
1132 static Lisp_Object
1133 decode_buffer_or_string(Lisp_Object object)
1134 {
1135         if (LIKELY(NILP(object))) {
1136                 XSETBUFFER(object, current_buffer);
1137         } else if (BUFFERP(object)) {
1138                 CHECK_LIVE_BUFFER(object);
1139         } else if (STRINGP(object)) {
1140                 ;
1141         } else {
1142                 dead_wrong_type_argument(Qbuffer_or_string_p, object);
1143         }
1144         return object;
1145 }
1146
1147 EXTENT extent_ancestor_1(EXTENT e)
1148 {
1149         while (e->flags.has_parent) {
1150                 /* There should be no circularities except in case of a logic
1151                    error somewhere in the extent code */
1152                 e = XEXTENT(XEXTENT_AUXILIARY(XCAR(e->plist))->parent);
1153         }
1154         return e;
1155 }
1156
1157 /* Given an extent object (string or buffer or nil), return its extent info.
1158    This may be 0 for a string. */
1159
1160 static struct extent_info*
1161 buffer_or_string_extent_info(Lisp_Object object)
1162 {
1163         if (STRINGP(object)) {
1164                 Lisp_Object plist = XSTRING(object)->plist;
1165                 if (!CONSP(plist) || !EXTENT_INFOP(XCAR(plist))) {
1166                         return NULL;
1167                 }
1168                 return XEXTENT_INFO(XCAR(plist));
1169         } else if (NILP(object)) {
1170                 return NULL;
1171         } else {
1172                 return XEXTENT_INFO(XBUFFER(object)->extent_info);
1173         }
1174 }
1175
1176 /* Given a string or buffer, return its extent list.  This may be
1177    0 for a string. */
1178
1179 static extent_list_t
1180 buffer_or_string_extent_list(Lisp_Object object)
1181 {
1182         struct extent_info *info = buffer_or_string_extent_info(object);
1183
1184         if (!info) {
1185                 return 0;
1186         }
1187         return info->extents;
1188 }
1189
1190 /* Given a string or buffer, return its extent info.  If it's not there,
1191    create it. */
1192
1193 static struct extent_info*
1194 buffer_or_string_extent_info_force(Lisp_Object object)
1195 {
1196         struct extent_info *info = buffer_or_string_extent_info(object);
1197
1198         if (!info) {
1199                 Lisp_Object extent_info;
1200
1201                 /* should never happen for buffers --
1202                    the only buffers without an extent
1203                    info are those after finalization,
1204                    destroyed buffers, or special
1205                    Lisp-inaccessible buffer objects. */
1206                 assert(STRINGP(object));
1207
1208                 extent_info = allocate_extent_info();
1209                 XSTRING(object)->plist =
1210                         Fcons(extent_info, XSTRING(object)->plist);
1211                 return XEXTENT_INFO(extent_info);
1212         }
1213         return info;
1214 }
1215
1216 /* Detach all the extents in OBJECT.  Called from redisplay. */
1217
1218 void
1219 detach_all_extents(Lisp_Object object)
1220 {
1221         struct extent_info *data = buffer_or_string_extent_info(object);
1222
1223         if (data) {
1224                 if (data->extents) {
1225                         for (int i = 0;
1226                              i < extent_list_num_els(data->extents);
1227                              i++) {
1228                                 EXTENT e = extent_list_at(data->extents, i, 0);
1229                                 /* No need to do detach_extent().  Just nuke the
1230                                    damn things, which results in the equivalent
1231                                    but faster. */
1232                                 set_extent_start(e, -1);
1233                                 set_extent_end(e, -1);
1234                         }
1235                         /* But we need to clear all the lists containing extents
1236                            or havoc will result. */
1237                         extent_list_delete_all(data->extents);
1238                 }
1239                 soe_invalidate(object);
1240         }
1241         return;
1242 }
1243
1244 void
1245 init_buffer_extents(struct buffer *b)
1246 {
1247         b->extent_info = allocate_extent_info();
1248         return;
1249 }
1250
1251 void
1252 uninit_buffer_extents(struct buffer *b)
1253 {
1254         struct extent_info *data = XEXTENT_INFO(b->extent_info);
1255
1256         /* Don't destroy the extents here -- there may still be children
1257            extents pointing to the extents. */
1258         detach_all_extents(make_buffer(b));
1259         finalize_extent_info(data, 0);
1260         return;
1261 }
1262
1263 /* Retrieve the extent list that an extent is a member of; the
1264    return value will never be 0 except in destroyed buffers (in which
1265    case the only extents that can refer to this buffer are detached
1266    ones). */
1267
1268 #define extent_extent_list(e) buffer_or_string_extent_list (extent_object (e))
1269
1270 /* ------------------------------- */
1271 /*        stack of extents         */
1272 /* ------------------------------- */
1273
1274 #ifdef ERROR_CHECK_EXTENTS
1275
1276 void
1277 sledgehammer_extent_check(Lisp_Object object)
1278 {
1279         extent_list_t el = buffer_or_string_extent_list(object);
1280         struct buffer *buf = 0;
1281
1282         if (!el) {
1283                 return;
1284         }
1285         if (BUFFERP(object)) {
1286                 buf = XBUFFER(object);
1287         }
1288         for (int endp = 0; endp < 2; endp++) {
1289                 for (int i = 1; i < extent_list_num_els(el); i++) {
1290                         EXTENT e1 = extent_list_at(el, i - 1, endp);
1291                         EXTENT e2 = extent_list_at(el, i, endp);
1292                         if (buf) {
1293                                 assert(extent_start(e1) <= buf->text->gpt ||
1294                                        extent_start(e1) >
1295                                        buf->text->gpt + buf->text->gap_size);
1296                                 assert(extent_end(e1) <= buf->text->gpt
1297                                        || extent_end(e1) >
1298                                        buf->text->gpt + buf->text->gap_size);
1299                         }
1300                         assert(extent_start(e1) <= extent_end(e1));
1301                         assert(endp
1302                                ? (EXTENT_E_LESS_EQUAL(e1, e2))
1303                                : (EXTENT_LESS_EQUAL(e1, e2)));
1304                 }
1305         }
1306 }
1307
1308 #endif  /* ERROR_CHECK_EXTENTS */
1309
1310 static extent_stack_t
1311 buffer_or_string_stack_of_extents(Lisp_Object object)
1312 {
1313         struct extent_info *info = buffer_or_string_extent_info(object);
1314         if (!info) {
1315                 return NULL;
1316         }
1317         return info->soe;
1318 }
1319
1320 static extent_stack_t
1321 buffer_or_string_stack_of_extents_force(Lisp_Object object)
1322 {
1323         struct extent_info *info = buffer_or_string_extent_info_force(object);
1324         if (!info->soe) {
1325                 info->soe = allocate_soe();
1326         }
1327         return info->soe;
1328 }
1329
1330 /* #define SOE_DEBUG */
1331
1332 #ifdef SOE_DEBUG
1333
1334 static void print_extent_1(char *buf, Lisp_Object extent);
1335
1336 static void
1337 print_extent_2(EXTENT e)
1338 {
1339         Lisp_Object extent;
1340         char buf[200];
1341
1342         XSETEXTENT(extent, e);
1343         print_extent_1(buf, extent);
1344         fputs(buf, stdout);
1345 }
1346
1347 static void
1348 soe_dump(Lisp_Object obj)
1349 {
1350         int i;
1351         extent_stack_t soe = buffer_or_string_stack_of_extents(obj);
1352         extent_list_t sel;
1353         int endp;
1354
1355         if (!soe) {
1356                 printf("No SOE");
1357                 return;
1358         }
1359         sel = soe->extents;
1360         printf("SOE pos is %d (memind %d)\n",
1361                soe->pos < 0 ? soe->pos :
1362                buffer_or_string_memind_to_bytind(obj, soe->pos), soe->pos);
1363         for (endp = 0; endp < 2; endp++) {
1364                 printf(endp ? "SOE end:" : "SOE start:");
1365                 for (i = 0; i < extent_list_num_els(sel); i++) {
1366                         EXTENT e = extent_list_at(sel, i, endp);
1367                         putchar('\t');
1368                         print_extent_2(e);
1369                 }
1370                 putchar('\n');
1371         }
1372         putchar('\n');
1373 }
1374
1375 #endif  /* SOE_DEBUG */
1376
1377 /* Insert EXTENT into OBJ's stack of extents, if necessary. */
1378
1379 static void
1380 soe_insert(Lisp_Object obj, EXTENT extent)
1381 {
1382         extent_stack_t soe = buffer_or_string_stack_of_extents(obj);
1383
1384 #ifdef SOE_DEBUG
1385         printf("Inserting into SOE: ");
1386         print_extent_2(extent);
1387         putchar('\n');
1388 #endif
1389         if (!soe || soe->pos < extent_start(extent) ||
1390             soe->pos > extent_end(extent)) {
1391 #ifdef SOE_DEBUG
1392                 printf("(not needed)\n\n");
1393 #endif
1394                 return;
1395         }
1396         extent_list_insert(soe->extents, extent);
1397 #ifdef SOE_DEBUG
1398         puts("SOE afterwards is:");
1399         soe_dump(obj);
1400 #endif
1401         return;
1402 }
1403
1404 /* Delete EXTENT from OBJ's stack of extents, if necessary. */
1405
1406 static void
1407 soe_delete(Lisp_Object obj, EXTENT extent)
1408 {
1409         extent_stack_t soe = buffer_or_string_stack_of_extents(obj);
1410
1411 #ifdef SOE_DEBUG
1412         printf("Deleting from SOE: ");
1413         print_extent_2(extent);
1414         putchar('\n');
1415 #endif
1416         if (!soe || soe->pos < extent_start(extent) ||
1417             soe->pos > extent_end(extent)) {
1418 #ifdef SOE_DEBUG
1419                 puts("(not needed)\n");
1420 #endif
1421                 return;
1422         }
1423         extent_list_delete(soe->extents, extent);
1424 #ifdef SOE_DEBUG
1425         puts("SOE afterwards is:");
1426         soe_dump(obj);
1427 #endif
1428         return;
1429 }
1430
1431 /* Move OBJ's stack of extents to lie over the specified position. */
1432
1433 static void
1434 soe_move(Lisp_Object obj, Memind pos)
1435 {
1436         extent_stack_t soe = buffer_or_string_stack_of_extents_force(obj);
1437         extent_list_t sel = soe->extents;
1438         int numsoe = extent_list_num_els(sel);
1439         extent_list_t bel = buffer_or_string_extent_list(obj);
1440         int direction;
1441         int endp;
1442
1443 #ifdef ERROR_CHECK_EXTENTS
1444         assert(bel);
1445 #endif
1446
1447 #ifdef SOE_DEBUG
1448         printf("Moving SOE from %d (memind %d) to %d (memind %d)\n",
1449                soe->pos < 0 ? soe->pos :
1450                buffer_or_string_memind_to_bytind(obj, soe->pos), soe->pos,
1451                buffer_or_string_memind_to_bytind(obj, pos), pos);
1452 #endif
1453         if (soe->pos < pos) {
1454                 direction = 1;
1455                 endp = 0;
1456         } else if (soe->pos > pos) {
1457                 direction = -1;
1458                 endp = 1;
1459         } else {
1460 #ifdef SOE_DEBUG
1461                 puts("(not needed)\n");
1462 #endif
1463                 return;
1464         }
1465
1466         /* For DIRECTION = 1: Any extent that overlaps POS is either in the
1467            SOE (if the extent starts at or before SOE->POS) or is greater
1468            (in the display order) than any extent in the SOE (if it starts
1469            after SOE->POS).
1470
1471            For DIRECTION = -1: Any extent that overlaps POS is either in the
1472            SOE (if the extent ends at or after SOE->POS) or is less (in the
1473            e-order) than any extent in the SOE (if it ends before SOE->POS).
1474
1475            We proceed in two stages:
1476
1477            1) delete all extents in the SOE that don't overlap POS.
1478            2) insert all extents into the SOE that start (or end, when
1479            DIRECTION = -1) in (SOE->POS, POS] and that overlap
1480            POS. (Don't include SOE->POS in the range because those
1481            extents would already be in the SOE.)
1482          */
1483
1484         /* STAGE 1. */
1485
1486         if (numsoe > 0) {
1487                 /* Delete all extents in the SOE that don't overlap POS.
1488                    This is all extents that end before (or start after,
1489                    if DIRECTION = -1) POS.
1490                  */
1491
1492                 /* Deleting extents from the SOE is tricky because it changes
1493                    the positions of extents.  If we are deleting in the forward
1494                    direction we have to call extent_list_at() on the same position
1495                    over and over again because positions after the deleted element
1496                    get shifted back by 1.  To make life simplest, we delete forward
1497                    irrespective of DIRECTION.
1498                  */
1499                 int start, end;
1500                 int i;
1501
1502                 if (direction > 0) {
1503                         start = 0;
1504                         end = extent_list_locate_from_pos(sel, pos, 1);
1505                 } else {
1506                         start = extent_list_locate_from_pos(sel, pos + 1, 0);
1507                         end = numsoe;
1508                 }
1509
1510                 for (i = start; i < end; i++) {
1511                         extent_list_delete(
1512                                 sel, extent_list_at(sel, start, !endp));
1513                 }
1514         }
1515
1516         /* STAGE 2. */
1517
1518         {
1519                 int start_pos;
1520
1521                 if (direction < 0) {
1522                         start_pos =
1523                                 extent_list_locate_from_pos(
1524                                         bel, soe->pos, endp) - 1;
1525                 } else {
1526                         start_pos =
1527                                 extent_list_locate_from_pos(
1528                                         bel, soe->pos + 1, endp);
1529                 }
1530
1531                 for (; start_pos >= 0 && start_pos < extent_list_num_els(bel);
1532                      start_pos += direction) {
1533                         EXTENT e = extent_list_at(bel, start_pos, endp);
1534                         if ((direction > 0)
1535                             ? (extent_start(e) > pos)
1536                             : (extent_end(e) < pos)) {
1537                                 /* All further extents lie on the far side of
1538                                    POS and thus can't overlap. */
1539                                 break;  
1540                         }
1541                         if ((direction > 0)
1542                             ? (extent_end(e) >= pos)
1543                             : (extent_start(e) <= pos)) {
1544                                 extent_list_insert(sel, e);
1545                         }
1546                 }
1547         }
1548
1549         soe->pos = pos;
1550 #ifdef SOE_DEBUG
1551         puts("SOE afterwards is:");
1552         soe_dump(obj);
1553 #endif
1554         return;
1555 }
1556
1557 static void
1558 soe_invalidate(Lisp_Object obj)
1559 {
1560         extent_stack_t soe = buffer_or_string_stack_of_extents(obj);
1561
1562         if (soe) {
1563                 extent_list_delete_all(soe->extents);
1564                 soe->pos = -1;
1565         }
1566         return;
1567 }
1568
1569 static extent_stack_t
1570 allocate_soe(void)
1571 {
1572         extent_stack_t soe = xnew_and_zero(struct extent_stack_s);
1573         soe->extents = allocate_extent_list();
1574         soe->pos = -1;
1575         return soe;
1576 }
1577
1578 static void
1579 free_soe(extent_stack_t soe)
1580 {
1581         free_extent_list(soe->extents);
1582         xfree(soe);
1583         return;
1584 }
1585
1586 /* ------------------------------- */
1587 /*        other primitives         */
1588 /* ------------------------------- */
1589
1590 /* Return the start (endp == 0) or end (endp == 1) of an extent as
1591    a byte index.  If you want the value as a memory index, use
1592    extent_endpoint().  If you want the value as a buffer position,
1593    use extent_endpoint_bufpos(). */
1594
1595 static Bytind extent_endpoint_bytind(EXTENT extent, int endp)
1596 {
1597         assert(EXTENT_LIVE_P(extent));
1598         assert(!extent_detached_p(extent));
1599         {
1600                 Memind i = endp ? extent_end(extent) : extent_start(extent);
1601                 Lisp_Object obj = extent_object(extent);
1602                 return buffer_or_string_memind_to_bytind(obj, i);
1603         }
1604 }
1605
1606 static Bufpos extent_endpoint_bufpos(EXTENT extent, int endp)
1607 {
1608         assert(EXTENT_LIVE_P(extent));
1609         assert(!extent_detached_p(extent));
1610         {
1611                 Memind i = endp ? extent_end(extent) : extent_start(extent);
1612                 Lisp_Object obj = extent_object(extent);
1613                 return buffer_or_string_memind_to_bufpos(obj, i);
1614         }
1615 }
1616
1617 /* A change to an extent occurred that will change the display, so
1618    notify redisplay.  Maybe also recurse over all the extent's
1619    descendants. */
1620
1621 static void
1622 extent_changed_for_redisplay(EXTENT extent, int descendants_too,
1623                              int invisibility_change)
1624 {
1625         Lisp_Object object;
1626         Lisp_Object rest;
1627
1628         /* we could easily encounter a detached extent while traversing the
1629            children, but we should never be able to encounter a dead extent. */
1630         assert(EXTENT_LIVE_P(extent));
1631
1632         if (descendants_too) {
1633                 Lisp_Object children = extent_children(extent);
1634
1635                 if (!NILP(children)) {
1636                         /* first mark all of the extent's children.  We will
1637                            lose big-time if there are any circularities here, so
1638                            we sure as hell better ensure that there aren't. */
1639                         LIST_LOOP(rest, XWEAK_LIST_LIST(children)) {
1640                                 extent_changed_for_redisplay(
1641                                         XEXTENT(XCAR(rest)), 1,
1642                                         invisibility_change);
1643                         }
1644                 }
1645         }
1646
1647         /* now mark the extent itself. */
1648
1649         object = extent_object(extent);
1650
1651         if (extent_detached_p(extent)) {
1652                 return;
1653
1654         } else if (STRINGP(object)) {
1655                 /* #### Changes to string extents can affect redisplay if they
1656                    are in the modeline or in the gutters.
1657
1658                    If the extent is in some generated-modeline-string: when we
1659                    change an extent in generated-modeline-string, this changes
1660                    its parent, which is in `modeline-format', so we should force
1661                    the modeline to be updated.  But how to determine whether a
1662                    string is a `generated-modeline-string'?  Looping through all
1663                    buffers is not very efficient.  Should we add all
1664                    `generated-modeline-string' strings to a hash table?  Maybe
1665                    efficiency is not the greatest concern here and there's no
1666                    big loss in looping over the buffers.
1667
1668                    If the extent is in a gutter we mark the gutter as
1669                    changed. This means (a) we can update extents in the gutters
1670                    when we need it. (b) we don't have to update the gutters when
1671                    only extents attached to buffers have changed. */
1672
1673                 if (!in_modeline_generation) {
1674                         MARK_EXTENTS_CHANGED;
1675                 }
1676                 gutter_extent_signal_changed_region_maybe(
1677                         object,
1678                         extent_endpoint_bufpos(extent, 0),
1679                         extent_endpoint_bufpos(extent, 1));
1680
1681         } else if (BUFFERP(object)) {
1682                 struct buffer *b;
1683                 b = XBUFFER(object);
1684                 BUF_FACECHANGE(b)++;
1685                 MARK_EXTENTS_CHANGED;
1686                 if (invisibility_change) {
1687                         MARK_CLIP_CHANGED;
1688                 }
1689                 buffer_extent_signal_changed_region(
1690                         b,
1691                         extent_endpoint_bufpos(extent, 0),
1692                         extent_endpoint_bufpos(extent, 1));
1693         }
1694 }
1695
1696 /* A change to an extent occurred that might affect redisplay.
1697    This is called when properties such as the endpoints, the layout,
1698    or the priority changes.  Redisplay will be affected only if
1699    the extent has any displayable attributes. */
1700
1701 static void
1702 extent_maybe_changed_for_redisplay(EXTENT extent, int descendants_too,
1703                                    int invisibility_change)
1704 {
1705         /* Retrieve the ancestor for efficiency */
1706         EXTENT anc = extent_ancestor(extent);
1707         if (!NILP(extent_face(anc)) ||
1708             !NILP(extent_begin_glyph(anc)) ||
1709             !NILP(extent_end_glyph(anc)) ||
1710             !NILP(extent_mouse_face(anc)) ||
1711             !NILP(extent_invisible(anc)) ||
1712             !NILP(extent_initial_redisplay_function(anc)) ||
1713             invisibility_change)
1714                 extent_changed_for_redisplay(extent, descendants_too,
1715                                              invisibility_change);
1716 }
1717
1718 static EXTENT
1719 make_extent_detached(Lisp_Object object)
1720 {
1721         EXTENT extent = allocate_extent();
1722
1723         assert(NILP(object) || STRINGP(object) ||
1724                (BUFFERP(object) && BUFFER_LIVE_P(XBUFFER(object))));
1725         extent_object(extent) = object;
1726         /* Now make sure the extent info exists. */
1727         if (!NILP(object)) {
1728                 buffer_or_string_extent_info_force(object);
1729         }
1730         return extent;
1731 }
1732
1733 /* A "real" extent is any extent other than the internal (not-user-visible)
1734    extents used by `map-extents'. */
1735
1736 static EXTENT
1737 real_extent_at_forward(extent_list_t el, int pos, int endp)
1738 {
1739         for (; pos < extent_list_num_els(el); pos++) {
1740                 EXTENT e = extent_list_at(el, pos, endp);
1741                 if (!extent_internal_p(e)) {
1742                         return e;
1743                 }
1744         }
1745         return NULL;
1746 }
1747
1748 static EXTENT
1749 real_extent_at_backward(extent_list_t el, int pos, int endp)
1750 {
1751         for (; pos >= 0; pos--) {
1752                 EXTENT e = extent_list_at(el, pos, endp);
1753                 if (!extent_internal_p(e)) {
1754                         return e;
1755                 }
1756         }
1757         return NULL;
1758 }
1759
1760 static EXTENT
1761 extent_first(Lisp_Object obj)
1762 {
1763         extent_list_t el = buffer_or_string_extent_list(obj);
1764
1765         if (!el) {
1766                 return NULL;
1767         }
1768         return real_extent_at_forward(el, 0, 0);
1769 }
1770
1771 #ifdef DEBUG_SXEMACS
1772 static EXTENT
1773 extent_e_first(Lisp_Object obj)
1774 {
1775         extent_list_t el = buffer_or_string_extent_list(obj);
1776
1777         if (!el) {
1778                 return 0;
1779         }
1780         return real_extent_at_forward(el, 0, 1);
1781 }
1782 #endif  /* DEBUG_SXEMACS */
1783
1784 static EXTENT
1785 extent_next(EXTENT e)
1786 {
1787         extent_list_t el = extent_extent_list(e);
1788         bool foundp;
1789         int pos = extent_list_locate(el, e, 0, &foundp);
1790         assert(foundp);
1791         return real_extent_at_forward(el, pos + 1, 0);
1792 }
1793
1794 #ifdef DEBUG_SXEMACS
1795 static EXTENT
1796 extent_e_next(EXTENT e)
1797 {
1798         extent_list_t el = extent_extent_list(e);
1799         bool foundp;
1800         int pos = extent_list_locate(el, e, 1, &foundp);
1801         assert(foundp);
1802         return real_extent_at_forward(el, pos + 1, 1);
1803 }
1804 #endif  /* DEBUG_SXEMACS */
1805
1806 static EXTENT
1807 extent_last(Lisp_Object obj)
1808 {
1809         extent_list_t el = buffer_or_string_extent_list(obj);
1810
1811         if (!el) {
1812                 return 0;
1813         }
1814         return real_extent_at_backward(el, extent_list_num_els(el) - 1, 0);
1815 }
1816
1817 #ifdef DEBUG_SXEMACS
1818 static EXTENT
1819 extent_e_last(Lisp_Object obj)
1820 {
1821         extent_list_t el = buffer_or_string_extent_list(obj);
1822
1823         if (!el) {
1824                 return 0;
1825         }
1826         return real_extent_at_backward(el, extent_list_num_els(el) - 1, 1);
1827 }
1828 #endif  /* DEBUG_SXEMACS */
1829
1830 static EXTENT
1831 extent_previous(EXTENT e)
1832 {
1833         extent_list_t el = extent_extent_list(e);
1834         bool foundp;
1835         int pos = extent_list_locate(el, e, 0, &foundp);
1836         assert(foundp);
1837         return real_extent_at_backward(el, pos - 1, 0);
1838 }
1839
1840 #ifdef DEBUG_SXEMACS
1841 static EXTENT
1842 extent_e_previous(EXTENT e)
1843 {
1844         extent_list_t el = extent_extent_list(e);
1845         bool foundp;
1846         int pos = extent_list_locate(el, e, 1, &foundp);
1847         assert(foundp);
1848         return real_extent_at_backward(el, pos - 1, 1);
1849 }
1850 #endif  /* DEBUG_SXEMACS */
1851
1852 static void
1853 extent_attach(EXTENT extent)
1854 {
1855         extent_list_t el = extent_extent_list(extent);
1856
1857         extent_list_insert(el, extent);
1858         soe_insert(extent_object(extent), extent);
1859         /* only this extent changed */
1860         extent_maybe_changed_for_redisplay(
1861                 extent, 0, !NILP(extent_invisible(extent)));
1862         return;
1863 }
1864
1865 static void
1866 extent_detach(EXTENT extent)
1867 {
1868         extent_list_t el;
1869
1870         if (extent_detached_p(extent)) {
1871                 return;
1872         }
1873         el = extent_extent_list(extent);
1874
1875         /* call this before messing with the extent. */
1876         extent_maybe_changed_for_redisplay(
1877                 extent, 0, !NILP(extent_invisible(extent)));
1878         extent_list_delete(el, extent);
1879         soe_delete(extent_object(extent), extent);
1880         set_extent_start(extent, -1);
1881         set_extent_end(extent, -1);
1882         return;
1883 }
1884
1885 /* ------------------------------- */
1886 /*        map-extents et al.       */
1887 /* ------------------------------- */
1888
1889 /* Returns true iff map_extents() would visit the given extent.
1890    See the comments at map_extents() for info on the overlap rule.
1891    Assumes that all validation on the extent and buffer positions has
1892    already been performed (see Fextent_in_region_p ()).
1893  */
1894 static bool
1895 extent_in_region_p(EXTENT extent, Bytind from, Bytind to, unsigned int flags)
1896 {
1897         Lisp_Object obj = extent_object(extent);
1898         Endpoint_Index start, end, exs, exe;
1899         int start_open, end_open;
1900         unsigned int all_extents_flags = flags & ME_ALL_EXTENTS_MASK;
1901         unsigned int in_region_flags = flags & ME_IN_REGION_MASK;
1902         int retval;
1903
1904         /* A zero-length region is treated as closed-closed. */
1905         if (from == to) {
1906                 flags |= ME_END_CLOSED;
1907                 flags &= ~ME_START_OPEN;
1908         }
1909
1910         /* So is a zero-length extent. */
1911         if (extent_start(extent) == extent_end(extent)) {
1912                 start_open = 0, end_open = 0;
1913         } else if (LIKELY(all_extents_flags == 0)) {
1914                 /* `all_extents_flags' will almost always be zero. */
1915                 start_open = extent_start_open_p(extent);
1916                 end_open = extent_end_open_p(extent);
1917         } else {
1918                 switch (all_extents_flags) {
1919                 case ME_ALL_EXTENTS_CLOSED:
1920                         start_open = 0, end_open = 0;
1921                         break;
1922                 case ME_ALL_EXTENTS_OPEN:
1923                         start_open = 1, end_open = 1;
1924                         break;
1925                 case ME_ALL_EXTENTS_CLOSED_OPEN:
1926                         start_open = 0, end_open = 1;
1927                         break;
1928                 case ME_ALL_EXTENTS_OPEN_CLOSED:
1929                         start_open = 1, end_open = 0;
1930                         break;
1931                 default:
1932                         abort();
1933                         return false;
1934                 }
1935         }
1936         start = buffer_or_string_bytind_to_startind(obj, from,
1937                                                     flags & ME_START_OPEN);
1938         end = buffer_or_string_bytind_to_endind(obj, to,
1939                                                 !(flags & ME_END_CLOSED));
1940         exs = memind_to_startind(extent_start(extent), start_open);
1941         exe = memind_to_endind(extent_end(extent), end_open);
1942
1943         /* It's easy to determine whether an extent lies *outside* the
1944            region -- just determine whether it's completely before
1945            or completely after the region.  Reject all such extents, so
1946            we're now left with only the extents that overlap the region.
1947          */
1948
1949         if (exs > end || exe < start) {
1950                 return false;
1951         }
1952         /* See if any further restrictions are called for. */
1953         /* in_region_flags will almost always be zero. */
1954         if (in_region_flags == 0) {
1955                 retval = 1;
1956         } else {
1957                 switch (in_region_flags) {
1958                 case ME_START_IN_REGION:
1959                         retval = start <= exs && exs <= end;
1960                         break;
1961                 case ME_END_IN_REGION:
1962                         retval = start <= exe && exe <= end;
1963                         break;
1964                 case ME_START_AND_END_IN_REGION:
1965                         retval = start <= exs && exe <= end;
1966                         break;
1967                 case ME_START_OR_END_IN_REGION:
1968                         retval = (start <= exs && exs <= end) ||
1969                                 (start <= exe && exe <= end);
1970                         break;
1971                 default:
1972                         abort();
1973                         return false;
1974                 }
1975         }
1976         return flags & ME_NEGATE_IN_REGION ? !retval : retval;
1977 }
1978
1979 struct map_extents_struct {
1980         extent_list_t el;
1981         extent_list_marker_t mkr;
1982         EXTENT range;
1983 };
1984
1985 static Lisp_Object
1986 map_extents_unwind(Lisp_Object obj)
1987 {
1988         struct map_extents_struct *closure =
1989                 (struct map_extents_struct *)get_opaque_ptr(obj);
1990         free_opaque_ptr(obj);
1991         if (closure->range) {
1992                 extent_detach(closure->range);
1993         }
1994         if (closure->mkr) {
1995                 extent_list_delete_marker(closure->el, closure->mkr);
1996         }
1997         return Qnil;
1998 }
1999
2000 /* This is the guts of `map-extents' and the other functions that
2001    map over extents.  In theory the operation of this function is
2002    simple: just figure out what extents we're mapping over, and
2003    call the function on each one of them in the range.  Unfortunately
2004    there are a wide variety of things that the mapping function
2005    might do, and we have to be very tricky to avoid getting messed
2006    up.  Furthermore, this function needs to be very fast (it is
2007    called multiple times every time text is inserted or deleted
2008    from a buffer), and so we can't always afford the overhead of
2009    dealing with all the possible things that the mapping function
2010    might do; thus, there are many flags that can be specified
2011    indicating what the mapping function might or might not do.
2012
2013    The result of all this is that this is the most complicated
2014    function in this file.  Change it at your own risk!
2015
2016    A potential simplification to the logic below is to determine
2017    all the extents that the mapping function should be called on
2018    before any calls are actually made and save them in an array.
2019    That introduces its own complications, however (the array
2020    needs to be marked for garbage-collection, and a static array
2021    cannot be used because map_extents() needs to be reentrant).
2022    Furthermore, the results might be a little less sensible than
2023    the logic below. */
2024
2025 static void
2026 map_extents_bytind(Bytind from, Bytind to, map_extents_fun fn, void *arg,
2027                    Lisp_Object obj, EXTENT after, unsigned int flags)
2028 {
2029         Memind st, en;          /* range we're mapping over */
2030         EXTENT range = 0;       /* extent for this, if ME_MIGHT_MODIFY_TEXT */
2031         extent_list_t el = 0;   /* extent list we're iterating over */
2032         extent_list_marker_t posm = 0;  /* marker for extent list,
2033                                            if ME_MIGHT_MODIFY_EXTENTS */
2034         /* count and struct for unwind-protect, if ME_MIGHT_THROW */
2035         int count = 0;
2036         struct map_extents_struct closure;
2037
2038 #ifdef ERROR_CHECK_EXTENTS
2039         assert(from <= to);
2040         assert(from >= buffer_or_string_absolute_begin_byte(obj) &&
2041                from <= buffer_or_string_absolute_end_byte(obj) &&
2042                to >= buffer_or_string_absolute_begin_byte(obj) &&
2043                to <= buffer_or_string_absolute_end_byte(obj));
2044 #endif
2045
2046         if (after) {
2047                 assert(EQ(obj, extent_object(after)));
2048                 assert(!extent_detached_p(after));
2049         }
2050
2051         el = buffer_or_string_extent_list(obj);
2052         if (!el || !extent_list_num_els(el))
2053                 return;
2054         el = 0;
2055
2056         st = buffer_or_string_bytind_to_memind(obj, from);
2057         en = buffer_or_string_bytind_to_memind(obj, to);
2058
2059         if (flags & ME_MIGHT_MODIFY_TEXT) {
2060                 /* The mapping function might change the text in the buffer,
2061                    so make an internal extent to hold the range we're mapping
2062                    over. */
2063                 range = make_extent_detached(obj);
2064                 set_extent_start(range, st);
2065                 set_extent_end(range, en);
2066                 range->flags.start_open = flags & ME_START_OPEN;
2067                 range->flags.end_open = !(flags & ME_END_CLOSED);
2068                 range->flags.internal = 1;
2069                 range->flags.detachable = 0;
2070                 extent_attach(range);
2071         }
2072
2073         if (flags & ME_MIGHT_THROW) {
2074                 /* The mapping function might throw past us so we need to use an
2075                    unwind_protect() to eliminate the internal extent and range
2076                    that we use. */
2077                 count = specpdl_depth();
2078                 closure.range = range;
2079                 closure.mkr = 0;
2080                 record_unwind_protect(map_extents_unwind,
2081                                       make_opaque_ptr(&closure));
2082         }
2083
2084         /* ---------- Figure out where we start and what direction
2085            we move in.  This is the trickiest part of this
2086            function. ---------- */
2087
2088         /* If ME_START_IN_REGION, ME_END_IN_REGION or ME_START_AND_END_IN_REGION
2089            was specified and ME_NEGATE_IN_REGION was not specified, our job
2090            is simple because of the presence of the display order and e-order.
2091            (Note that theoretically do something similar for
2092            ME_START_OR_END_IN_REGION, but that would require more trickiness
2093            than it's worth to avoid hitting the same extent twice.)
2094
2095            In the general case, all the extents that overlap a range can be
2096            divided into two classes: those whose start position lies within
2097            the range (including the range's end but not including the
2098            range's start), and those that overlap the start position,
2099            i.e. those in the SOE for the start position.  Or equivalently,
2100            the extents can be divided into those whose end position lies
2101            within the range and those in the SOE for the end position.  Note
2102            that for this purpose we treat both the range and all extents in
2103            the buffer as closed on both ends.  If this is not what the ME_
2104            flags specified, then we've mapped over a few too many extents,
2105            but no big deal because extent_in_region_p() will filter them
2106            out.   Ideally, we could move the SOE to the closer of the range's
2107            two ends and work forwards or backwards from there.  However, in
2108            order to make the semantics of the AFTER argument work out, we
2109            have to always go in the same direction; so we choose to always
2110            move the SOE to the start position.
2111
2112            When it comes time to do the SOE stage, we first call soe_move()
2113            so that the SOE gets set up.  Note that the SOE might get
2114            changed while we are mapping over its contents.  If we can
2115            guarantee that the SOE won't get moved to a new position, we
2116            simply need to put a marker in the SOE and we will track deletions
2117            and insertions of extents in the SOE.  If the SOE might get moved,
2118            however (this would happen as a result of a recursive invocation
2119            of map-extents or a call to a redisplay-type function), then
2120            trying to track its changes is hopeless, so we just keep a
2121            marker to the first (or last) extent in the SOE and use that as
2122            our bound.
2123
2124            Finally, if DONT_USE_SOE is defined, we don't use the SOE at all
2125            and instead just map from the beginning of the buffer.  This is
2126            used for testing purposes and allows the SOE to be calculated
2127            using map_extents() instead of the other way around. */
2128
2129         {
2130                 int range_flag; /* ME_*_IN_REGION subset of flags */
2131                 int do_soe_stage = 0;   /* Are we mapping over the SOE? */
2132                 /* Does the range stage map over start or end positions? */
2133                 int range_endp;
2134                 /* If type == 0, we include the start position in the range
2135                    stage mapping.
2136                    If type == 1, we exclude the start position in the range
2137                    stage mapping.
2138                    If type == 2, we begin at range_start_pos, an extent-list
2139                    position.
2140                  */
2141                 int range_start_type = 0;
2142                 int range_start_pos = 0;
2143                 int stage;
2144
2145                 range_flag = flags & ME_IN_REGION_MASK;
2146                 if ((range_flag == ME_START_IN_REGION ||
2147                      range_flag == ME_START_AND_END_IN_REGION) &&
2148                     !(flags & ME_NEGATE_IN_REGION)) {
2149                         /* map over start position in [range-start, range-end].
2150                            No SOE stage. */
2151                         range_endp = 0;
2152                 } else if (range_flag == ME_END_IN_REGION
2153                            && !(flags & ME_NEGATE_IN_REGION)) {
2154                         /* map over end position in [range-start, range-end].
2155                            No SOE stage. */
2156                         range_endp = 1;
2157                 } else {
2158                         /* Need to include the SOE extents. */
2159 #ifdef DONT_USE_SOE
2160                         /* Just brute-force it: start from the beginning. */
2161                         range_endp = 0;
2162                         range_start_type = 2;
2163                         range_start_pos = 0;
2164 #else
2165                         extent_stack_t soe =
2166                                 buffer_or_string_stack_of_extents_force(obj);
2167                         int numsoe;
2168
2169                         /* Move the SOE to the closer end of the range.  This
2170                            dictates whether we map over start positions or end
2171                            positions. */
2172                         range_endp = 0;
2173                         soe_move(obj, st);
2174                         numsoe = extent_list_num_els(soe->extents);
2175                         if (numsoe) {
2176                                 if (flags & ME_MIGHT_MOVE_SOE) {
2177                                         bool foundp;
2178                                         /* Can't map over SOE, so just extend
2179                                            range to cover the SOE. */
2180                                         EXTENT e = extent_list_at(
2181                                                 soe->extents, 0, 0);
2182                                         range_start_pos = extent_list_locate
2183                                                 (buffer_or_string_extent_list
2184                                                  (obj), e, 0, &foundp);
2185                                         assert(foundp);
2186                                         range_start_type = 2;
2187                                 } else {
2188                                         /* We can map over the SOE. */
2189                                         do_soe_stage = 1;
2190                                         range_start_type = 1;
2191                                 }
2192                         } else {
2193                                 /* No extents in the SOE to map over, so we act
2194                                    just as if ME_START_IN_REGION or
2195                                    ME_END_IN_REGION was specified.  RANGE_ENDP
2196                                    already specified so no need to do anything
2197                                    else. */
2198                         }
2199                 }
2200 #endif
2201
2202                 /* ---------- Now loop over the extents. ---------- */
2203
2204                 /* We combine the code for the two stages because much of it
2205                    overlaps. */
2206                 for (stage = 0; stage < 2; stage++) {
2207                         int pos = 0;    /* Position in extent list */
2208
2209                         /* First set up start conditions */
2210                         if (stage == 0) {       /* The SOE stage */
2211                                 if (!do_soe_stage)
2212                                         continue;
2213                                 el = buffer_or_string_stack_of_extents_force
2214                                     (obj)->extents;
2215                                 /* We will always be looping over start extents
2216                                    here. */
2217                                 assert(!range_endp);
2218                                 pos = 0;
2219                         } else {        /* The range stage */
2220                                 el = buffer_or_string_extent_list(obj);
2221                                 switch (range_start_type) {
2222                                 case 0:
2223                                         pos = extent_list_locate_from_pos
2224                                                 (el, st, range_endp);
2225                                         break;
2226                                 case 1:
2227                                         pos = extent_list_locate_from_pos
2228                                                 (el, st + 1, range_endp);
2229                                         break;
2230                                 case 2:
2231                                         pos = range_start_pos;
2232                                         break;
2233                                 default:
2234                                         break;
2235                                 }
2236                         }
2237
2238                         if (flags & ME_MIGHT_MODIFY_EXTENTS) {
2239                                 /* Create a marker to track changes to the
2240                                    extent list */
2241                                 if (posm)
2242                                         /* Delete the marker used in the SOE
2243                                            stage. */
2244                                         extent_list_delete_marker
2245                                                 (buffer_or_string_stack_of_extents_force
2246                                                  (obj)->extents, posm);
2247                                 posm = extent_list_make_marker(
2248                                         el, pos, range_endp);
2249                                 /* tell the unwind function about the marker. */
2250                                 closure.el = el;
2251                                 closure.mkr = posm;
2252                         }
2253
2254                         /* Now loop! */
2255                         for (;;) {
2256                                 EXTENT e;
2257                                 Lisp_Object obj2;
2258
2259                                 /* ----- update position in extent list
2260                                    and fetch next extent ----- */
2261
2262                                 if (posm) {
2263                                         /* fetch POS again to track extent
2264                                            insertions or deletions */
2265                                         pos = extent_list_marker_pos(el, posm);
2266                                 }
2267                                 if (pos >= extent_list_num_els(el)) {
2268                                         break;
2269                                 }
2270                                 e = extent_list_at(el, pos, range_endp);
2271                                 pos++;
2272                                 if (posm) {
2273                                         /* now point the marker to the next one
2274                                            we're going to process.  This ensures
2275                                            graceful behavior if this extent is
2276                                            deleted. */
2277                                         extent_list_move_marker(el, posm, pos);
2278                                 }
2279                                 /* ----- deal with internal extents ----- */
2280
2281                                 if (extent_internal_p(e)) {
2282                                         if (!(flags & ME_INCLUDE_INTERNAL)) {
2283                                                 continue;
2284                                         } else if (e == range) {
2285                                                 /* We're processing internal
2286                                                    extents and we've come across
2287                                                    our own special range extent.
2288                                                    (This happens only in
2289                                                    adjust_extents*() and
2290                                                    process_extents*(), which
2291                                                    handle text insertion and
2292                                                    deletion.) We need to omit
2293                                                    processing of this extent;
2294                                                    otherwise we will probably
2295                                                    end up prematurely
2296                                                    terminating this loop. */
2297                                                 continue;
2298                                         }
2299                                 }
2300
2301                                 /* ----- deal with AFTER condition ----- */
2302
2303                                 if (after) {
2304                                         /* if e > after, then we can stop
2305                                            skipping extents. */
2306                                         if (EXTENT_LESS(after, e)) {
2307                                                 after = 0;
2308                                         } else {
2309                                                 /* otherwise, skip this
2310                                                    extent. */
2311                                                 continue;
2312                                         }
2313                                 }
2314
2315                                 /* ----- stop if we're completely outside the
2316                                          range ----- */
2317
2318                                 /* fetch ST and EN again to track text
2319                                    insertions or deletions */
2320                                 if (range) {
2321                                         st = extent_start(range);
2322                                         en = extent_end(range);
2323                                 }
2324                                 if (extent_endpoint(e, range_endp) > en) {
2325                                         /* Can't be mapping over SOE because all
2326                                            extents in there should overlap ST */
2327                                         assert(stage == 1);
2328                                         break;
2329                                 }
2330
2331                                 /* ----- Now actually call the function ----- */
2332
2333                                 obj2 = extent_object(e);
2334                                 if (extent_in_region_p(
2335                                             e,
2336                                             buffer_or_string_memind_to_bytind
2337                                             (obj2, st),
2338                                             buffer_or_string_memind_to_bytind
2339                                             (obj2, en), flags)) {
2340                                         if ((*fn) (e, arg)) {
2341                                                 /* Function wants us to stop
2342                                                    mapping. */
2343                                                 stage = 1;
2344                                                 /* so outer for loop will
2345                                                    terminate */
2346                                                 break;
2347                                         }
2348                                 }
2349                         }
2350                 }
2351                 /* ---------- Finished looping. ---------- */
2352         }
2353
2354         if (flags & ME_MIGHT_THROW) {
2355                 /* This deletes the range extent and frees the marker. */
2356                 unbind_to(count, Qnil);
2357         } else {
2358                 /* Delete them ourselves */
2359                 if (range) {
2360                         extent_detach(range);
2361                 }
2362                 if (posm) {
2363                         extent_list_delete_marker(el, posm);
2364                 }
2365         }
2366 }
2367
2368 void
2369 map_extents(Bufpos from, Bufpos to, map_extents_fun fn,
2370             void *arg, Lisp_Object obj, EXTENT after, unsigned int flags)
2371 {
2372         map_extents_bytind(buffer_or_string_bufpos_to_bytind(obj, from),
2373                            buffer_or_string_bufpos_to_bytind(obj, to), fn, arg,
2374                            obj, after, flags);
2375 }
2376
2377 /* ------------------------------- */
2378 /*         adjust_extents()        */
2379 /* ------------------------------- */
2380
2381 /* Add AMOUNT to all extent endpoints in the range (FROM, TO].  This
2382    happens whenever the gap is moved or (under Mule) a character in a
2383    string is substituted for a different-length one.  The reason for
2384    this is that extent endpoints behave just like markers (all memory
2385    indices do) and this adjustment correct for markers -- see
2386    adjust_markers().  Note that it is important that we visit all
2387    extent endpoints in the range, irrespective of whether the
2388    endpoints are open or closed.
2389
2390    We could use map_extents() for this (and in fact the function
2391    was originally written that way), but the gap is in an incoherent
2392    state when this function is called and this function plays
2393    around with extent endpoints without detaching and reattaching
2394    the extents (this is provably correct and saves lots of time),
2395    so for safety we make it just look at the extent lists directly. */
2396
2397 void
2398 adjust_extents(Lisp_Object obj, Memind from, Memind to, int amount)
2399 {
2400         int endp;
2401         int pos;
2402         int startpos[2];
2403         extent_list_t el;
2404         extent_stack_t soe;
2405
2406 #ifdef ERROR_CHECK_EXTENTS
2407         sledgehammer_extent_check(obj);
2408 #endif
2409         el = buffer_or_string_extent_list(obj);
2410
2411         if (!el || !extent_list_num_els(el)) {
2412                 return;
2413         }
2414         /* IMPORTANT! Compute the starting positions of the extents to
2415            modify BEFORE doing any modification!  Otherwise the starting
2416            position for the second time through the loop might get
2417            incorrectly calculated (I got bit by this bug real bad). */
2418         startpos[0] = extent_list_locate_from_pos(el, from + 1, 0);
2419         startpos[1] = extent_list_locate_from_pos(el, from + 1, 1);
2420         for (endp = 0; endp < 2; endp++) {
2421                 for (pos = startpos[endp]; pos < extent_list_num_els(el);
2422                      pos++) {
2423                         EXTENT e = extent_list_at(el, pos, endp);
2424                         if (extent_endpoint(e, endp) > to) {
2425                                 break;
2426                         }
2427                         set_extent_endpoint(
2428                                 e,
2429                                 do_marker_adjustment(
2430                                         extent_endpoint(e, endp),
2431                                         from, to, amount),
2432                                 endp);
2433                 }
2434         }
2435
2436         /* The index for the buffer's SOE is a memory index and thus
2437            needs to be adjusted like a marker. */
2438         soe = buffer_or_string_stack_of_extents(obj);
2439         if (soe && soe->pos >= 0) {
2440                 soe->pos = do_marker_adjustment(soe->pos, from, to, amount);
2441         }
2442         return;
2443 }
2444
2445 /* ------------------------------- */
2446 /*  adjust_extents_for_deletion()  */
2447 /* ------------------------------- */
2448
2449 struct adjust_extents_for_deletion_arg {
2450         EXTENT_dynarr *list;
2451 };
2452
2453 static int adjust_extents_for_deletion_mapper(EXTENT extent, void *arg)
2454 {
2455         struct adjust_extents_for_deletion_arg *closure =
2456                 (struct adjust_extents_for_deletion_arg *)arg;
2457
2458         Dynarr_add(closure->list, extent);
2459         /* continue mapping */
2460         return 0;
2461 }
2462
2463 /* For all extent endpoints in the range (FROM, TO], move them to the beginning
2464    of the new gap.   Note that it is important that we visit all extent
2465    endpoints in the range, irrespective of whether the endpoints are open or
2466    closed.
2467
2468    This function deals with weird stuff such as the fact that extents
2469    may get reordered.
2470
2471    There is no string correspondent for this because you can't
2472    delete characters from a string.
2473  */
2474
2475 void
2476 adjust_extents_for_deletion(Lisp_Object object, Bytind from,
2477                             Bytind to, int gapsize, int numdel, int movegapsize)
2478 {
2479         struct adjust_extents_for_deletion_arg closure;
2480         int i;
2481         Memind adjust_to = (Memind) (to + gapsize);
2482         Bytecount amount = -numdel - movegapsize;
2483         Memind oldsoe = 0, newsoe = 0;
2484         extent_stack_t soe = buffer_or_string_stack_of_extents(object);
2485
2486 #ifdef ERROR_CHECK_EXTENTS
2487         sledgehammer_extent_check(object);
2488 #endif
2489         closure.list = Dynarr_new(EXTENT);
2490
2491         /* We're going to be playing weird games below with extents and the SOE
2492            and such, so compute the list now of all the extents that we're going
2493            to muck with.  If we do the mapping and adjusting together, things
2494            can get all screwed up. */
2495
2496         map_extents_bytind(from, to, adjust_extents_for_deletion_mapper,
2497                            (void *)&closure, object, 0,
2498                            /* extent endpoints move like markers regardless
2499                               of their open/closeness. */
2500                            ME_ALL_EXTENTS_CLOSED | ME_END_CLOSED |
2501                            ME_START_OR_END_IN_REGION | ME_INCLUDE_INTERNAL);
2502
2503         /*
2504            Old and new values for the SOE's position. (It gets adjusted
2505            like a marker, just like extent endpoints.)
2506          */
2507
2508         if (soe) {
2509                 oldsoe = soe->pos;
2510                 if (soe->pos >= 0) {
2511                         newsoe = do_marker_adjustment(
2512                                 soe->pos, adjust_to, adjust_to, amount);
2513                 } else {
2514                         newsoe = soe->pos;
2515                 }
2516         }
2517
2518         for (i = 0; i < Dynarr_length(closure.list); i++) {
2519                 EXTENT extent = Dynarr_at(closure.list, i);
2520                 Memind new_start = extent_start(extent);
2521                 Memind new_end = extent_end(extent);
2522
2523                 /* do_marker_adjustment() will not adjust values that should not
2524                    be adjusted.  We're passing the same funky arguments to
2525                    do_marker_adjustment() as buffer_delete_range() does. */
2526                 new_start = do_marker_adjustment(
2527                         new_start, adjust_to, adjust_to, amount);
2528                 new_end = do_marker_adjustment(
2529                         new_end, adjust_to, adjust_to, amount);
2530
2531                 /* We need to be very careful here so that the SOE doesn't get
2532                    corrupted.  We are shrinking extents out of the deleted
2533                    region and simultaneously moving the SOE's pos out of the
2534                    deleted region, so the SOE should contain the same extents at
2535                    the end as at the beginning.  However, extents may get
2536                    reordered by this process, so we have to operate by pulling
2537                    the extents out of the buffer and SOE, changing their bounds,
2538                    and then reinserting them.  In order for the SOE not to get
2539                    screwed up, we have to make sure that the SOE's pos points to
2540                    its old location whenever we pull an extent out, and points
2541                    to its new location whenever we put the extent back in.
2542                  */
2543
2544                 if (new_start != extent_start(extent) ||
2545                     new_end != extent_end(extent)) {
2546                         extent_detach(extent);
2547                         set_extent_start(extent, new_start);
2548                         set_extent_end(extent, new_end);
2549                         if (soe) {
2550                                 soe->pos = newsoe;
2551                         }
2552                         extent_attach(extent);
2553                         if (soe) {
2554                                 soe->pos = oldsoe;
2555                         }
2556                 }
2557         }
2558
2559         if (soe) {
2560                 soe->pos = newsoe;
2561         }
2562
2563 #ifdef ERROR_CHECK_EXTENTS
2564         sledgehammer_extent_check(object);
2565 #endif
2566         Dynarr_free(closure.list);
2567         return;
2568 }
2569
2570 /* ------------------------------- */
2571 /*         extent fragments        */
2572 /* ------------------------------- */
2573
2574 /* Imagine that the buffer is divided up into contiguous,
2575    nonoverlapping "runs" of text such that no extent
2576    starts or ends within a run (extents that abut the
2577    run don't count).
2578
2579    An extent fragment is a structure that holds data about
2580    the run that contains a particular buffer position (if
2581    the buffer position is at the junction of two runs, the
2582    run after the position is used) -- the beginning and
2583    end of the run, a list of all of the extents in that
2584    run, the "merged face" that results from merging all of
2585    the faces corresponding to those extents, the begin and
2586    end glyphs at the beginning of the run, etc.  This is
2587    the information that redisplay needs in order to
2588    display this run.
2589
2590    Extent fragments have to be very quick to update to
2591    a new buffer position when moving linearly through
2592    the buffer.  They rely on the stack-of-extents code,
2593    which does the heavy-duty algorithmic work of determining
2594    which extents overly a particular position. */
2595
2596 /* This function returns the position of the beginning of
2597    the first run that begins after POS, or returns POS if
2598    there are no such runs. */
2599
2600 static Bytind
2601 extent_find_end_of_run(Lisp_Object obj, Bytind pos, int outside_accessible)
2602 {
2603         extent_list_t sel;
2604         extent_list_t bel = buffer_or_string_extent_list(obj);
2605         Bytind pos1, pos2;
2606         int elind1, elind2;
2607         Memind mempos = buffer_or_string_bytind_to_memind(obj, pos);
2608         Bytind limit = outside_accessible ?
2609             buffer_or_string_absolute_end_byte(obj) :
2610             buffer_or_string_accessible_end_byte(obj);
2611
2612         if (!bel || !extent_list_num_els(bel)) {
2613                 return limit;
2614         }
2615         sel = buffer_or_string_stack_of_extents_force(obj)->extents;
2616         soe_move(obj, mempos);
2617
2618         /* Find the first start position after POS. */
2619         elind1 = extent_list_locate_from_pos(bel, mempos + 1, 0);
2620         if (elind1 < extent_list_num_els(bel)) {
2621                 pos1 = buffer_or_string_memind_to_bytind(
2622                         obj, extent_start(extent_list_at(bel, elind1, 0)));
2623         } else {
2624                 pos1 = limit;
2625         }
2626
2627         /* Find the first end position after POS.  The extent corresponding
2628            to this position is either in the SOE or is greater than or
2629            equal to POS1, so we just have to look in the SOE. */
2630         elind2 = extent_list_locate_from_pos(sel, mempos + 1, 1);
2631         if (elind2 < extent_list_num_els(sel)) {
2632                 pos2 = buffer_or_string_memind_to_bytind(
2633                         obj, extent_end(extent_list_at(sel, elind2, 1)));
2634         } else {
2635                 pos2 = limit;
2636         }
2637         return min(min(pos1, pos2), limit);
2638 }
2639
2640 static Bytind
2641 extent_find_beginning_of_run(Lisp_Object obj, Bytind pos,
2642                              int outside_accessible)
2643 {
2644         extent_list_t sel;
2645         extent_list_t bel = buffer_or_string_extent_list(obj);
2646         Bytind pos1, pos2;
2647         int elind1, elind2;
2648         Memind mempos = buffer_or_string_bytind_to_memind(obj, pos);
2649         Bytind limit = outside_accessible
2650                 ? buffer_or_string_absolute_begin_byte(obj)
2651                 : buffer_or_string_accessible_begin_byte(obj);
2652
2653         if (!bel || !extent_list_num_els(bel)) {
2654                 return limit;
2655         }
2656         sel = buffer_or_string_stack_of_extents_force(obj)->extents;
2657         soe_move(obj, mempos);
2658
2659         /* Find the first end position before POS. */
2660         elind1 = extent_list_locate_from_pos(bel, mempos, 1);
2661         if (elind1 > 0) {
2662                 pos1 = buffer_or_string_memind_to_bytind(
2663                         obj, extent_end(extent_list_at(bel, elind1 - 1, 1)));
2664         } else {
2665                 pos1 = limit;
2666         }
2667         /* Find the first start position before POS.  The extent corresponding
2668            to this position is either in the SOE or is less than or
2669            equal to POS1, so we just have to look in the SOE. */
2670         elind2 = extent_list_locate_from_pos(sel, mempos, 0);
2671         if (elind2 > 0) {
2672                 pos2 = buffer_or_string_memind_to_bytind(
2673                         obj, extent_start(extent_list_at(sel, elind2 - 1, 0)));
2674         } else {
2675                 pos2 = limit;
2676         }
2677         return max(max(pos1, pos2), limit);
2678 }
2679
2680 struct extent_fragment*
2681 extent_fragment_new(Lisp_Object buffer_or_string, struct frame *frm)
2682 {
2683         struct extent_fragment *ef = xnew_and_zero(struct extent_fragment);
2684
2685         ef->object = buffer_or_string;
2686         ef->frm = frm;
2687         ef->extents = Dynarr_new(EXTENT);
2688         ef->glyphs = Dynarr_new(glyph_block);
2689
2690         return ef;
2691 }
2692
2693 void extent_fragment_delete(struct extent_fragment *ef)
2694 {
2695         Dynarr_free(ef->extents);
2696         Dynarr_free(ef->glyphs);
2697         xfree(ef);
2698 }
2699
2700 static int
2701 extent_priority_sort_function(const void *humpty, const void *dumpty)
2702 {
2703         const EXTENT foo = *(const EXTENT *)humpty;
2704         const EXTENT bar = *(const EXTENT *)dumpty;
2705         if (extent_priority(foo) < extent_priority(bar)) {
2706                 return -1;
2707         }
2708         return extent_priority(foo) > extent_priority(bar);
2709 }
2710
2711 static void
2712 extent_fragment_sort_by_priority(EXTENT_dynarr * extarr)
2713 {
2714         int i;
2715
2716         /* Sort our copy of the stack by extent_priority.  We use a bubble
2717            sort here because it's going to be faster than qsort() for small
2718            numbers of extents (less than 10 or so), and 99.999% of the time
2719            there won't ever be more extents than this in the stack. */
2720         if (Dynarr_length(extarr) < 10) {
2721                 for (i = 1; i < Dynarr_length(extarr); i++) {
2722                         int j = i - 1;
2723                         while (j >= 0 &&
2724                                (extent_priority(Dynarr_at(extarr, j)) >
2725                                 extent_priority(Dynarr_at(extarr, j + 1)))) {
2726                                 EXTENT tmp = Dynarr_at(extarr, j);
2727                                 Dynarr_at(extarr, j) = Dynarr_at(extarr, j + 1);
2728                                 Dynarr_at(extarr, j + 1) = tmp;
2729                                 j--;
2730                         }
2731                 }
2732         } else {
2733                 /* But some loser programs mess up and may create a large number
2734                    of extents overlapping the same spot.  This will result in
2735                    catastrophic behavior if we use the bubble sort above. */
2736                 qsort(Dynarr_atp(extarr, 0), Dynarr_length(extarr),
2737                       sizeof(EXTENT), extent_priority_sort_function);
2738         }
2739 }
2740
2741 /* If PROP is the `invisible' property of an extent,
2742    this is 1 if the extent should be treated as invisible.  */
2743
2744 #define EXTENT_PROP_MEANS_INVISIBLE(buf, prop)                  \
2745   (EQ (buf->invisibility_spec, Qt)                              \
2746    ? ! NILP (prop)                                              \
2747    : invisible_p (prop, buf->invisibility_spec))
2748
2749 /* If PROP is the `invisible' property of a extent,
2750    this is 1 if the extent should be treated as invisible
2751    and should have an ellipsis.  */
2752
2753 #define EXTENT_PROP_MEANS_INVISIBLE_WITH_ELLIPSIS(buf, prop)    \
2754   (EQ (buf->invisibility_spec, Qt)                              \
2755    ? 0                                                          \
2756    : invisible_ellipsis_p (prop, buf->invisibility_spec))
2757
2758 /* This is like a combination of memq and assq.
2759    Return 1 if PROPVAL appears as an element of LIST
2760    or as the car of an element of LIST.
2761    If PROPVAL is a list, compare each element against LIST
2762    in that way, and return 1 if any element of PROPVAL is found in LIST.
2763    Otherwise return 0.
2764    This function cannot quit.  */
2765
2766 static int
2767 invisible_p(REGISTER Lisp_Object propval, Lisp_Object list)
2768 {
2769         REGISTER Lisp_Object tail, proptail;
2770         for (tail = list; CONSP(tail); tail = XCDR(tail)) {
2771                 REGISTER Lisp_Object tem;
2772                 tem = XCAR(tail);
2773                 if (EQ(propval, tem))
2774                         return 1;
2775                 if (CONSP(tem) && EQ(propval, XCAR(tem)))
2776                         return 1;
2777         }
2778         if (CONSP(propval)) {
2779                 for (proptail = propval; CONSP(proptail);
2780                      proptail = XCDR(proptail)) {
2781                         Lisp_Object propelt;
2782                         propelt = XCAR(proptail);
2783                         for (tail = list; CONSP(tail); tail = XCDR(tail)) {
2784                                 REGISTER Lisp_Object tem;
2785                                 tem = XCAR(tail);
2786                                 if (EQ(propelt, tem)) {
2787                                         return 1;
2788                                 }
2789                                 if (CONSP(tem) && EQ(propelt, XCAR(tem))) {
2790                                         return 1;
2791                                 }
2792                         }
2793                 }
2794         }
2795         return 0;
2796 }
2797
2798 /* Return 1 if PROPVAL appears as the car of an element of LIST
2799    and the cdr of that element is non-nil.
2800    If PROPVAL is a list, check each element of PROPVAL in that way,
2801    and the first time some element is found,
2802    return 1 if the cdr of that element is non-nil.
2803    Otherwise return 0.
2804    This function cannot quit.  */
2805
2806 static int
2807 invisible_ellipsis_p(REGISTER Lisp_Object propval, Lisp_Object list)
2808 {
2809         REGISTER Lisp_Object tail, proptail;
2810
2811         for (tail = list; CONSP(tail); tail = XCDR(tail)) {
2812                 REGISTER Lisp_Object tem;
2813                 tem = XCAR(tail);
2814                 if (CONSP(tem) && EQ(propval, XCAR(tem))) {
2815                         return !NILP(XCDR(tem));
2816                 }
2817         }
2818         if (CONSP(propval)) {
2819                 for (proptail = propval; CONSP(proptail);
2820                      proptail = XCDR(proptail)) {
2821                         Lisp_Object propelt;
2822                         propelt = XCAR(proptail);
2823                         for (tail = list; CONSP(tail); tail = XCDR(tail)) {
2824                                 REGISTER Lisp_Object tem;
2825                                 tem = XCAR(tail);
2826                                 if (CONSP(tem) && EQ(propelt, XCAR(tem))) {
2827                                         return !NILP(XCDR(tem));
2828                                 }
2829                         }
2830                 }
2831         }
2832         return 0;
2833 }
2834
2835 face_index
2836 extent_fragment_update(struct window * w, struct extent_fragment * ef,
2837                        Bytind pos, Lisp_Object last_glyph)
2838 {
2839         int i, j;
2840         int seen_glyph = NILP(last_glyph) ? 1 : 0;
2841         extent_list_t sel =
2842                 buffer_or_string_stack_of_extents_force(ef->object)->extents;
2843         EXTENT lhe = 0;
2844         struct extent dummy_lhe_extent;
2845         Memind mempos = buffer_or_string_bytind_to_memind(ef->object, pos);
2846         glyph_block_dynarr *glyphs; /* List of glyphs to post process */
2847         int invis_before = 0;  /* Exiting an invisible extent.  */
2848         int invis_after = 0;   /* Entering an invisible extent. */
2849         int insert_empty = 0;  /* Position to insert empty extent glyphs  */
2850         int queuing_begin = 0;  /* Queuing begin glyphs. */
2851
2852 #ifdef ERROR_CHECK_EXTENTS
2853         assert(pos >= buffer_or_string_accessible_begin_byte(ef->object)
2854                && pos <= buffer_or_string_accessible_end_byte(ef->object));
2855 #endif
2856
2857         Dynarr_reset(ef->extents);
2858         Dynarr_reset(ef->glyphs);
2859
2860         ef->previously_invisible = ef->invisible;
2861         if (ef->invisible) {
2862                 if (ef->invisible_ellipses)
2863                         ef->invisible_ellipses_already_displayed = 1;
2864         } else {
2865                 ef->invisible_ellipses_already_displayed = 0;
2866         }
2867         ef->invisible = 0;
2868         ef->invisible_ellipses = 0;
2869
2870         /* Set up the begin and end positions. */
2871         ef->pos = pos;
2872         ef->end = extent_find_end_of_run(ef->object, pos, 0);
2873
2874         /* Note that extent_find_end_of_run() already moved the SOE for us. */
2875         /* soe_move (ef->object, mempos); */
2876
2877         /* We tried determining all the charsets used in the run here,
2878            but that fails even if we only do the current line -- display
2879            tables or non-printable characters might cause other charsets
2880            to be used. */
2881
2882         /* Determine whether the last-highlighted-extent is present. */
2883         if (EXTENTP(Vlast_highlighted_extent))
2884                 lhe = XEXTENT(Vlast_highlighted_extent);
2885
2886         /* Now add all extents that overlap the character after POS and
2887            have a non-nil face.  Also check if the character is
2888            invisible.  We also queue begin and end glyphs of extents
2889            that being/end at just before POS.  These are ordered as
2890            follows. 1) end glyphs of non-empty extents in reverse
2891            display order.  2) begin glyphs of empty extents.  3) end
2892            glyphs of empty extents.  4) begin glyphs of non-empty
2893            extents in display order.  Empty extents are shown nested,
2894            but the invisibility property of an empty extent is
2895            ignored and not used to determine whether an 'interior'
2896            empty extent's glyphs should be shown or not.  */
2897         glyphs = Dynarr_new(glyph_block);
2898         for (i = 0; i < extent_list_num_els(sel); i++) {
2899                 EXTENT e = extent_list_at(sel, i, 0);
2900                 int zero_width = extent_start(e) == extent_end(e);
2901                 Lisp_Object invis_prop = extent_invisible(e);
2902                 Lisp_Object glyph;
2903
2904                 if (extent_start(e) == mempos) {
2905                         /* The extent starts here.  If we are queuing
2906                            end glyphs, we should display all the end
2907                            glyphs we've pushed.  */
2908
2909                         if (!queuing_begin) {
2910                                 /* Append any already seen end glyphs */
2911                                 for (j = Dynarr_length(glyphs); j--;) {
2912                                         struct glyph_block *gbp
2913                                           = Dynarr_atp(glyphs, j);
2914                         
2915                                         if (seen_glyph)
2916                                                 Dynarr_add(ef->glyphs, *gbp);
2917                                         else if (EQ(gbp->glyph, last_glyph))
2918                                                 seen_glyph = 1;
2919                                 }
2920
2921                                 /* Pop the end glyphs just displayed. */
2922                                 Dynarr_set_size(glyphs, 0);
2923                                 /* We are now queuing begin glyphs. */
2924                                 queuing_begin = 1;
2925                                 /* And will insert empty extent glyphs
2926                                    just here.  */
2927                                 insert_empty = Dynarr_length (ef->glyphs);
2928                         }
2929
2930                         glyph = extent_begin_glyph(e);
2931                         
2932                         if (!NILP(glyph)) {
2933                                 struct glyph_block gb;
2934
2935                                 gb.glyph = glyph;
2936                                 gb.active = 0; /* BEGIN_GLYPH */
2937                                 gb.width = 0;
2938                                 XSETEXTENT(gb.extent, e);
2939                     
2940                                 if (zero_width) {
2941                                         if (insert_empty
2942                                             == Dynarr_length (ef->glyphs))
2943                                                 Dynarr_add (ef->glyphs, gb);
2944                                         else
2945                                                 Dynarr_insert_many
2946                                                   (ef->glyphs, &gb,
2947                                                    1, insert_empty);
2948                                 } else if (!invis_after) 
2949                                         Dynarr_add (glyphs, gb);
2950                         }
2951                 }
2952                 
2953                 if (extent_end(e) == mempos) {
2954                         /* The extend ends here.  Push the end glyph.  */
2955                         glyph = extent_end_glyph(e);
2956
2957                         if (!NILP (glyph)) {
2958                                 struct glyph_block gb;
2959
2960                                 gb.width = gb.findex = 0; /* just init */
2961                                 gb.glyph = glyph;
2962                                 gb.active = 1; /* END_GLYPH */
2963                                 XSETEXTENT(gb.extent, e);
2964
2965                                 if (zero_width)
2966                                   Dynarr_add (ef->glyphs, gb);
2967                                 else if (!invis_before)
2968                                   Dynarr_add(glyphs, gb);
2969                         }
2970                         /* If this extent is not empty, any inner
2971                            extents ending here will not be visible.  */
2972                         if (extent_start (e) < mempos && !NILP (invis_prop))
2973                           invis_before = 1;
2974                 }
2975                 
2976                 if (extent_end(e) > mempos) {
2977                         /* This extent covers POS. */
2978                         if (!NILP(invis_prop)) {
2979                                 invis_after = 1;
2980                                 /* If this extend spans POS, all
2981                                    glyphs are invisible.  */
2982                                 if (extent_start (e) < mempos)
2983                                         Dynarr_set_size (glyphs, 0);
2984                           
2985                                 if (!BUFFERP(ef->object))
2986                                         /* #### no `string-invisibility-spec' */
2987                                         ef->invisible = 1;
2988                                 else {
2989                                         if (!ef->
2990                                             invisible_ellipses_already_displayed
2991                                             &&
2992                                             EXTENT_PROP_MEANS_INVISIBLE_WITH_ELLIPSIS
2993                                             (XBUFFER(ef->object), invis_prop)) {
2994                                                 ef->invisible = 1;
2995                                                 ef->invisible_ellipses = 1;
2996                                         } else if (EXTENT_PROP_MEANS_INVISIBLE
2997                                                    (XBUFFER(ef->object),
2998                                                     invis_prop))
2999                                                 ef->invisible = 1;
3000                                 }
3001                         }
3002
3003                         /* Remember that one of the extents in the list might be
3004                            our dummy extent representing the highlighting that
3005                            is attached to some other extent that is currently
3006                            mouse-highlighted.  When an extent is
3007                            mouse-highlighted, it is as if there are two extents
3008                            there, of potentially different priorities: the
3009                            extent being highlighted, with whatever face and
3010                            priority it has; and an ephemeral extent in the
3011                            `mouse-face' face with `mouse-highlight-priority'.
3012                          */
3013
3014                         if (!NILP(extent_face(e)))
3015                                 Dynarr_add(ef->extents, e);
3016                         if (e == lhe) {
3017                                 Lisp_Object f;
3018                                 /* zeroing isn't really necessary; we only deref
3019                                    `priority' and `face' */
3020                                 xzero(dummy_lhe_extent);
3021                                 set_extent_priority(&dummy_lhe_extent,
3022                                                     mouse_highlight_priority);
3023                                 /* Need to break up the following expression,
3024                                    due to an */
3025                                 /* error in the Digital UNIX 3.2g C compiler
3026                                    (Digital */
3027                                 /* UNIX Compiler Driver 3.11). */
3028                                 f = extent_mouse_face(lhe);
3029                                 extent_face(&dummy_lhe_extent) = f;
3030                                 Dynarr_add(ef->extents, &dummy_lhe_extent);
3031                         }
3032                         /* since we are looping anyway, we might as well do this
3033                            here */
3034                         if ((!NILP(extent_initial_redisplay_function(e))) &&
3035                             !extent_in_red_event_p(e)) {
3036                                 Lisp_Object function =
3037                                         extent_initial_redisplay_function(e);
3038                                 Lisp_Object obj;
3039
3040                                 /* print_extent_2 (e);
3041                                    printf ("\n"); */
3042
3043                                 /* FIXME: One should probably inhibit the
3044                                    displaying of this extent to reduce
3045                                    flicker */
3046                                 extent_in_red_event_p(e) = 1;
3047
3048                                 /* call the function */
3049                                 XSETEXTENT(obj, e);
3050                                 if (!NILP(function)) {
3051                                         Fenqueue_eval_event(function, obj);
3052                                 }
3053                         }
3054                 }
3055         }
3056
3057         if (!queuing_begin) {
3058                 /* Append end glyphs in reverse order */
3059                 for (j = Dynarr_length(glyphs); j--;) {
3060                         struct glyph_block *gbp = Dynarr_atp(glyphs, j);
3061             
3062                         if (seen_glyph)
3063                                 Dynarr_add(ef->glyphs, *gbp);
3064                         else if (EQ(gbp->glyph, last_glyph))
3065                                 seen_glyph = 1;
3066                 }
3067         } else {
3068                 if (!seen_glyph) {
3069                         /* Scan the zero length glyphs and see where we
3070                            start a glyph that has not been displayed yet.  */
3071                         for (j = insert_empty;
3072                              j != Dynarr_length (ef->glyphs); j++) {
3073                                 struct glyph_block *gbp
3074                                         = Dynarr_atp(ef->glyphs, j);
3075                     
3076                                 if (EQ(gbp->glyph, last_glyph)) {
3077                                         seen_glyph = 1;
3078                                         j++;
3079                                         break;
3080                                 }
3081                         }
3082                         Dynarr_delete_many (ef->glyphs, insert_empty,
3083                                             j - insert_empty);
3084                 }
3085
3086                 /* Now copy the begin glyphs. */
3087                 for (j = 0; j != Dynarr_length (glyphs); j++) {
3088                         struct glyph_block *gbp = Dynarr_atp(glyphs, j);
3089                 
3090                         if (seen_glyph)
3091                                 Dynarr_add(ef->glyphs, *gbp);
3092                         else if (EQ(gbp->glyph, last_glyph))
3093                                 seen_glyph = 1;
3094                 }
3095         }
3096
3097         Dynarr_free(glyphs);
3098
3099         extent_fragment_sort_by_priority(ef->extents);
3100
3101         /* Now merge the faces together into a single face.  The code to
3102            do this is in faces.c because it involves manipulating faces. */
3103         return get_extent_fragment_face_cache_index(w, ef);
3104 }
3105 \f
3106 /************************************************************************/
3107 /*                      extent-object methods                           */
3108 /************************************************************************/
3109
3110 /* These are the basic helper functions for handling the allocation of
3111    extent objects.  They are similar to the functions for other
3112    lrecord objects.  allocate_extent() is in alloc.c, not here. */
3113
3114 static Lisp_Object mark_extent(Lisp_Object obj)
3115 {
3116         struct extent *extent = XEXTENT(obj);
3117
3118         mark_object(extent_object(extent));
3119         mark_object(extent_no_chase_normal_field(extent, face));
3120         return extent->plist;
3121 }
3122
3123 static void
3124 print_extent_1(Lisp_Object obj, Lisp_Object printcharfun, int escapeflag)
3125 {
3126         EXTENT ext = XEXTENT(obj);
3127         EXTENT anc = extent_ancestor(ext);
3128         Lisp_Object tail;
3129         char buf[100], *bp = buf;
3130         int sz;
3131
3132         /* Retrieve the ancestor and use it, for faster retrieval of properties */
3133
3134         if (!NILP(extent_begin_glyph(anc)))
3135                 *bp++ = '*';
3136         *bp++ = (extent_start_open_p(anc) ? '(' : '[');
3137         if (extent_detached_p(ext))
3138                 strncpy(bp, "detached", sizeof(buf)-1);
3139         else {
3140                 sz=snprintf(bp, sizeof(buf)-2, "%ld, %ld",
3141                             XINT(Fextent_start_position(obj)),
3142                             XINT(Fextent_end_position(obj)));
3143                 assert(sz>=0 && (size_t)sz<(sizeof(buf)-2));
3144         }
3145         bp += strlen(bp);
3146         *bp++ = (extent_end_open_p(anc) ? ')' : ']');
3147         if (!NILP(extent_end_glyph(anc)))
3148                 *bp++ = '*';
3149         *bp++ = ' ';
3150
3151         if (!NILP(extent_read_only(anc)))
3152                 *bp++ = '%';
3153         if (!NILP(extent_mouse_face(anc)))
3154                 *bp++ = 'H';
3155         if (extent_unique_p(anc))
3156                 *bp++ = 'U';
3157         else if (extent_duplicable_p(anc))
3158                 *bp++ = 'D';
3159         if (!NILP(extent_invisible(anc)))
3160                 *bp++ = 'I';
3161
3162         if (!NILP(extent_read_only(anc)) || !NILP(extent_mouse_face(anc)) ||
3163             extent_unique_p(anc) ||
3164             extent_duplicable_p(anc) || !NILP(extent_invisible(anc)))
3165                 *bp++ = ' ';
3166         *bp = '\0';
3167         write_c_string(buf, printcharfun);
3168
3169         tail = extent_plist_slot(anc);
3170
3171         for (; !NILP(tail); tail = Fcdr(Fcdr(tail))) {
3172                 Lisp_Object v = XCAR(XCDR(tail));
3173                 if (NILP(v))
3174                         continue;
3175                 print_internal(XCAR(tail), printcharfun, escapeflag);
3176                 write_c_string(" ", printcharfun);
3177         }
3178
3179         write_fmt_str(printcharfun, "0x%lx", (long)ext);
3180 }
3181
3182 static void
3183 print_extent(Lisp_Object obj, Lisp_Object printcharfun, int escapeflag)
3184 {
3185         if (escapeflag) {
3186                 const char *title = "";
3187                 const char *name = "";
3188                 const char *posttitle = "";
3189                 Lisp_Object obj2 = Qnil;
3190
3191                 /* Destroyed extents have 't' in the object field, causing
3192                    extent_object() to abort (maybe). */
3193                 if (EXTENT_LIVE_P(XEXTENT(obj)))
3194                         obj2 = extent_object(XEXTENT(obj));
3195
3196                 if (NILP(obj2))
3197                         title = "no buffer";
3198                 else if (BUFFERP(obj2)) {
3199                         if (BUFFER_LIVE_P(XBUFFER(obj2))) {
3200                                 title = "buffer ";
3201                                 name =
3202                                     (char *)XSTRING_DATA(XBUFFER(obj2)->name);
3203                         } else {
3204                                 title = "Killed Buffer";
3205                                 name = "";
3206                         }
3207                 } else {
3208                         assert(STRINGP(obj2));
3209                         title = "string \"";
3210                         posttitle = "\"";
3211                         name = (char *)XSTRING_DATA(obj2);
3212                 }
3213
3214                 if (print_readably) {
3215                         if (!EXTENT_LIVE_P(XEXTENT(obj))) {
3216                                 error("printing unreadable object "
3217                                       "#<destroyed extent>");
3218                         } else {
3219                                 error("printing unreadable object "
3220                                       "#<extent %p>", XEXTENT(obj));
3221                         }
3222                 }
3223
3224                 if (!EXTENT_LIVE_P(XEXTENT(obj))) {
3225                         write_c_string("#<destroyed extent", printcharfun);
3226                 } else {
3227                         write_c_string("#<extent ", printcharfun);
3228                         print_extent_1(obj, printcharfun, escapeflag);
3229                         write_c_string(extent_detached_p(XEXTENT(obj))
3230                                        ? " from " : " in ", printcharfun);
3231                         write_fmt_string(printcharfun, "%s%s%s", title, name, posttitle);
3232                 }
3233         } else {
3234                 if (print_readably)
3235                         error("printing unreadable object #<extent>");
3236                 write_c_string("#<extent", printcharfun);
3237         }
3238         write_c_string(">", printcharfun);
3239 }
3240
3241 static int properties_equal(EXTENT e1, EXTENT e2, int depth)
3242 {
3243         /* When this function is called, all indirections have been followed.
3244            Thus, the indirection checks in the various macros below will not
3245            amount to anything, and could be removed.  However, the time
3246            savings would probably not be significant. */
3247         if (!(EQ(extent_face(e1), extent_face(e2)) &&
3248               extent_priority(e1) == extent_priority(e2) &&
3249               internal_equal(extent_begin_glyph(e1), extent_begin_glyph(e2),
3250                              depth + 1) &&
3251               internal_equal(extent_end_glyph(e1), extent_end_glyph(e2),
3252                              depth + 1)))
3253                 return 0;
3254
3255         /* compare the bit flags. */
3256         {
3257                 /* The has_aux field should not be relevant. */
3258                 int e1_has_aux = e1->flags.has_aux;
3259                 int e2_has_aux = e2->flags.has_aux;
3260                 int value;
3261
3262                 e1->flags.has_aux = e2->flags.has_aux = 0;
3263                 value = memcmp(&e1->flags, &e2->flags, sizeof(e1->flags));
3264                 e1->flags.has_aux = e1_has_aux;
3265                 e2->flags.has_aux = e2_has_aux;
3266                 if (value)
3267                         return 0;
3268         }
3269
3270         /* compare the random elements of the plists. */
3271         return !plists_differ(extent_no_chase_plist(e1),
3272                               extent_no_chase_plist(e2), 0, 0, depth + 1);
3273 }
3274
3275 static int extent_equal(Lisp_Object obj1, Lisp_Object obj2, int depth)
3276 {
3277         struct extent *e1 = XEXTENT(obj1);
3278         struct extent *e2 = XEXTENT(obj2);
3279         return
3280             (extent_start(e1) == extent_start(e2) &&
3281              extent_end(e1) == extent_end(e2) &&
3282              internal_equal(extent_object(e1), extent_object(e2), depth + 1) &&
3283              properties_equal(extent_ancestor(e1), extent_ancestor(e2), depth));
3284 }
3285
3286 static unsigned long extent_hash(Lisp_Object obj, int depth)
3287 {
3288         struct extent *e = XEXTENT(obj);
3289         /* No need to hash all of the elements; that would take too long.
3290            Just hash the most common ones. */
3291         return HASH3(extent_start(e), extent_end(e),
3292                      internal_hash(extent_object(e), depth + 1));
3293 }
3294
3295 static const struct lrecord_description extent_description[] = {
3296         {XD_LISP_OBJECT, offsetof(struct extent, object)},
3297         {XD_LISP_OBJECT, offsetof(struct extent, flags.face)},
3298         {XD_LISP_OBJECT, offsetof(struct extent, plist)},
3299         {XD_END}
3300 };
3301
3302 static Lisp_Object extent_getprop(Lisp_Object obj, Lisp_Object prop)
3303 {
3304         return Fextent_property(obj, prop, Qunbound);
3305 }
3306
3307 static int extent_putprop(Lisp_Object obj, Lisp_Object prop, Lisp_Object value)
3308 {
3309         Fset_extent_property(obj, prop, value);
3310         return 1;
3311 }
3312
3313 static int extent_remprop(Lisp_Object obj, Lisp_Object prop)
3314 {
3315         EXTENT ext = XEXTENT(obj);
3316
3317         /* This list is taken from Fset_extent_property, and should be kept
3318            in synch.  */
3319         if (EQ(prop, Qread_only)
3320             || EQ(prop, Qunique)
3321             || EQ(prop, Qduplicable)
3322             || EQ(prop, Qinvisible)
3323             || EQ(prop, Qdetachable)
3324             || EQ(prop, Qdetached)
3325             || EQ(prop, Qdestroyed)
3326             || EQ(prop, Qpriority)
3327             || EQ(prop, Qface)
3328             || EQ(prop, Qinitial_redisplay_function)
3329             || EQ(prop, Qafter_change_functions)
3330             || EQ(prop, Qbefore_change_functions)
3331             || EQ(prop, Qmouse_face)
3332             || EQ(prop, Qhighlight)
3333             || EQ(prop, Qbegin_glyph_layout)
3334             || EQ(prop, Qend_glyph_layout)
3335             || EQ(prop, Qglyph_layout)
3336             || EQ(prop, Qbegin_glyph)
3337             || EQ(prop, Qend_glyph)
3338             || EQ(prop, Qstart_open)
3339             || EQ(prop, Qend_open)
3340             || EQ(prop, Qstart_closed)
3341             || EQ(prop, Qend_closed)
3342             || EQ(prop, Qkeymap)) {
3343                 /* #### Is this correct, anyway?  */
3344                 return -1;
3345         }
3346
3347         return external_remprop(extent_plist_addr(ext), prop, 0, ERROR_ME);
3348 }
3349
3350 static Lisp_Object extent_plist(Lisp_Object obj)
3351 {
3352         return Fextent_properties(obj);
3353 }
3354
3355 DEFINE_BASIC_LRECORD_IMPLEMENTATION_WITH_PROPS("extent", extent,
3356                                                mark_extent, print_extent,
3357                                                /* NOTE: If you declare a
3358                                                   finalization method here,
3359                                                   it will NOT be called.
3360                                                   Shaft city. */
3361                                                0,
3362                                                extent_equal, extent_hash,
3363                                                extent_description,
3364                                                extent_getprop, extent_putprop,
3365                                                extent_remprop, extent_plist,
3366                                                struct extent);
3367 \f
3368 /************************************************************************/
3369 /*                      basic extent accessors                          */
3370 /************************************************************************/
3371
3372 /* These functions are for checking externally-passed extent objects
3373    and returning an extent's basic properties, which include the
3374    buffer the extent is associated with, the endpoints of the extent's
3375    range, the open/closed-ness of those endpoints, and whether the
3376    extent is detached.  Manipulating these properties requires
3377    manipulating the ordered lists that hold extents; thus, functions
3378    to do that are in a later section. */
3379
3380 /* Given a Lisp_Object that is supposed to be an extent, make sure it
3381    is OK and return an extent pointer.  Extents can be in one of four
3382    states:
3383
3384    1) destroyed
3385    2) detached and not associated with a buffer
3386    3) detached and associated with a buffer
3387    4) attached to a buffer
3388
3389    If FLAGS is 0, types 2-4 are allowed.  If FLAGS is DE_MUST_HAVE_BUFFER,
3390    types 3-4 are allowed.  If FLAGS is DE_MUST_BE_ATTACHED, only type 4
3391    is allowed.
3392    */
3393
3394 static EXTENT decode_extent(Lisp_Object extent_obj, unsigned int flags)
3395 {
3396         EXTENT extent;
3397         Lisp_Object obj;
3398
3399         CHECK_LIVE_EXTENT(extent_obj);
3400         extent = XEXTENT(extent_obj);
3401         obj = extent_object(extent);
3402
3403         /* the following condition will fail if we're dealing with a freed extent */
3404         assert(NILP(obj) || BUFFERP(obj) || STRINGP(obj));
3405
3406         if (flags & DE_MUST_BE_ATTACHED)
3407                 flags |= DE_MUST_HAVE_BUFFER;
3408
3409         /* if buffer is dead, then convert extent to have no buffer. */
3410         if (BUFFERP(obj) && !BUFFER_LIVE_P(XBUFFER(obj)))
3411                 obj = extent_object(extent) = Qnil;
3412
3413         assert(!NILP(obj) || extent_detached_p(extent));
3414
3415         if ((NILP(obj) && (flags & DE_MUST_HAVE_BUFFER))
3416             || (extent_detached_p(extent) && (flags & DE_MUST_BE_ATTACHED))) {
3417                 invalid_argument("extent doesn't belong to a buffer or string",
3418                                  extent_obj);
3419         }
3420
3421         return extent;
3422 }
3423
3424 /* Note that the returned value is a buffer position, not a byte index. */
3425
3426 static Lisp_Object extent_endpoint_external(Lisp_Object extent_obj, int endp)
3427 {
3428         EXTENT extent = decode_extent(extent_obj, 0);
3429
3430         if (extent_detached_p(extent))
3431                 return Qnil;
3432         else
3433                 return make_int(extent_endpoint_bufpos(extent, endp));
3434 }
3435
3436 DEFUN("extentp", Fextentp, 1, 1, 0,     /*
3437 Return t if OBJECT is an extent.
3438 */
3439       (object))
3440 {
3441         return EXTENTP(object) ? Qt : Qnil;
3442 }
3443
3444 DEFUN("extent-live-p", Fextent_live_p, 1, 1, 0, /*
3445 Return t if OBJECT is an extent that has not been destroyed.
3446 */
3447       (object))
3448 {
3449         return EXTENTP(object) && EXTENT_LIVE_P(XEXTENT(object)) ? Qt : Qnil;
3450 }
3451
3452 DEFUN("extent-detached-p", Fextent_detached_p, 1, 1, 0, /*
3453 Return t if EXTENT is detached.
3454 */
3455       (extent))
3456 {
3457         return extent_detached_p(decode_extent(extent, 0)) ? Qt : Qnil;
3458 }
3459
3460 DEFUN("extent-object", Fextent_object, 1, 1, 0, /*
3461 Return object (buffer or string) that EXTENT refers to.
3462 */
3463       (extent))
3464 {
3465         return extent_object(decode_extent(extent, 0));
3466 }
3467
3468 DEFUN("extent-start-position", Fextent_start_position, 1, 1, 0, /*
3469 Return start position of EXTENT, or nil if EXTENT is detached.
3470 */
3471       (extent))
3472 {
3473         return extent_endpoint_external(extent, 0);
3474 }
3475
3476 DEFUN("extent-end-position", Fextent_end_position, 1, 1, 0,     /*
3477 Return end position of EXTENT, or nil if EXTENT is detached.
3478 */
3479       (extent))
3480 {
3481         return extent_endpoint_external(extent, 1);
3482 }
3483
3484 DEFUN("extent-length", Fextent_length, 1, 1, 0, /*
3485 Return length of EXTENT in characters.
3486 */
3487       (extent))
3488 {
3489         EXTENT e = decode_extent(extent, DE_MUST_BE_ATTACHED);
3490         return make_int(extent_endpoint_bufpos(e, 1)
3491                         - extent_endpoint_bufpos(e, 0));
3492 }
3493
3494 DEFUN("next-extent", Fnext_extent, 1, 1, 0,     /*
3495 Find next extent after EXTENT.
3496 If EXTENT is a buffer return the first extent in the buffer; likewise
3497 for strings.
3498 Extents in a buffer are ordered in what is called the "display"
3499 order, which sorts by increasing start positions and then by *decreasing*
3500 end positions.
3501 If you want to perform an operation on a series of extents, use
3502 `map-extents' instead of this function; it is much more efficient.
3503 The primary use of this function should be to enumerate all the
3504 extents in a buffer.
3505 Note: The display order is not necessarily the order that `map-extents'
3506 processes extents in!
3507 */
3508       (extent))
3509 {
3510         Lisp_Object val;
3511         EXTENT next;
3512
3513         if (EXTENTP(extent))
3514                 next = extent_next(decode_extent(extent, DE_MUST_BE_ATTACHED));
3515         else
3516                 next = extent_first(decode_buffer_or_string(extent));
3517
3518         if (!next)
3519                 return Qnil;
3520         XSETEXTENT(val, next);
3521         return val;
3522 }
3523
3524 DEFUN("previous-extent", Fprevious_extent, 1, 1, 0,     /*
3525 Find last extent before EXTENT.
3526 If EXTENT is a buffer return the last extent in the buffer; likewise
3527 for strings.
3528 This function is analogous to `next-extent'.
3529 */
3530       (extent))
3531 {
3532         Lisp_Object val;
3533         EXTENT prev;
3534
3535         if (EXTENTP(extent))
3536                 prev =
3537                     extent_previous(decode_extent(extent, DE_MUST_BE_ATTACHED));
3538         else
3539                 prev = extent_last(decode_buffer_or_string(extent));
3540
3541         if (!prev)
3542                 return Qnil;
3543         XSETEXTENT(val, prev);
3544         return val;
3545 }
3546
3547 #ifdef DEBUG_SXEMACS
3548
3549 DEFUN("next-e-extent", Fnext_e_extent, 1, 1, 0, /*
3550 Find next extent after EXTENT using the "e" order.
3551 If EXTENT is a buffer return the first extent in the buffer; likewise
3552 for strings.
3553 */
3554       (extent))
3555 {
3556         Lisp_Object val;
3557         EXTENT next;
3558
3559         if (EXTENTP(extent))
3560                 next =
3561                     extent_e_next(decode_extent(extent, DE_MUST_BE_ATTACHED));
3562         else
3563                 next = extent_e_first(decode_buffer_or_string(extent));
3564
3565         if (!next)
3566                 return Qnil;
3567         XSETEXTENT(val, next);
3568         return val;
3569 }
3570
3571 DEFUN("previous-e-extent", Fprevious_e_extent, 1, 1, 0, /*
3572 Find last extent before EXTENT using the "e" order.
3573 If EXTENT is a buffer return the last extent in the buffer; likewise
3574 for strings.
3575 This function is analogous to `next-e-extent'.
3576 */
3577       (extent))
3578 {
3579         Lisp_Object val;
3580         EXTENT prev;
3581
3582         if (EXTENTP(extent))
3583                 prev =
3584                     extent_e_previous(decode_extent
3585                                       (extent, DE_MUST_BE_ATTACHED));
3586         else
3587                 prev = extent_e_last(decode_buffer_or_string(extent));
3588
3589         if (!prev)
3590                 return Qnil;
3591         XSETEXTENT(val, prev);
3592         return val;
3593 }
3594
3595 #endif
3596
3597 DEFUN("next-extent-change", Fnext_extent_change, 1, 2, 0,       /*
3598 Return the next position after POS where an extent begins or ends.
3599 If POS is at the end of the buffer or string, POS will be returned;
3600 otherwise a position greater than POS will always be returned.
3601 If OBJECT is nil, the current buffer is assumed.
3602 */
3603       (pos, object))
3604 {
3605         Lisp_Object obj = decode_buffer_or_string(object);
3606         Bytind bpos;
3607
3608         bpos =
3609             get_buffer_or_string_pos_byte(obj, pos, GB_ALLOW_PAST_ACCESSIBLE);
3610         bpos = extent_find_end_of_run(obj, bpos, 1);
3611         return make_int(buffer_or_string_bytind_to_bufpos(obj, bpos));
3612 }
3613
3614 DEFUN("previous-extent-change", Fprevious_extent_change, 1, 2, 0,       /*
3615 Return the last position before POS where an extent begins or ends.
3616 If POS is at the beginning of the buffer or string, POS will be returned;
3617 otherwise a position less than POS will always be returned.
3618 If OBJECT is nil, the current buffer is assumed.
3619 */
3620       (pos, object))
3621 {
3622         Lisp_Object obj = decode_buffer_or_string(object);
3623         Bytind bpos;
3624
3625         bpos =
3626             get_buffer_or_string_pos_byte(obj, pos, GB_ALLOW_PAST_ACCESSIBLE);
3627         bpos = extent_find_beginning_of_run(obj, bpos, 1);
3628         return make_int(buffer_or_string_bytind_to_bufpos(obj, bpos));
3629 }
3630 \f
3631 /************************************************************************/
3632 /*                      parent and children stuff                       */
3633 /************************************************************************/
3634
3635 DEFUN("extent-parent", Fextent_parent, 1, 1, 0, /*
3636 Return the parent (if any) of EXTENT.
3637 If an extent has a parent, it derives all its properties from that extent
3638 and has no properties of its own. (The only "properties" that the
3639 extent keeps are the buffer/string it refers to and the start and end
3640 points.) It is possible for an extent's parent to itself have a parent.
3641 */
3642       (extent))
3643 /* do I win the prize for the strangest split infinitive? */
3644 {
3645         EXTENT e = decode_extent(extent, 0);
3646         return extent_parent(e);
3647 }
3648
3649 DEFUN("extent-children", Fextent_children, 1, 1, 0,     /*
3650 Return a list of the children (if any) of EXTENT.
3651 The children of an extent are all those extents whose parent is that extent.
3652 This function does not recursively trace children of children.
3653 \(To do that, use `extent-descendants'.)
3654 */
3655       (extent))
3656 {
3657         EXTENT e = decode_extent(extent, 0);
3658         Lisp_Object children = extent_children(e);
3659
3660         if (!NILP(children))
3661                 return Fcopy_sequence(XWEAK_LIST_LIST(children));
3662         else
3663                 return Qnil;
3664 }
3665
3666 static void remove_extent_from_children_list(EXTENT e, Lisp_Object child)
3667 {
3668         Lisp_Object children = extent_children(e);
3669
3670 #ifdef ERROR_CHECK_EXTENTS
3671         assert(!NILP(memq_no_quit(child, XWEAK_LIST_LIST(children))));
3672 #endif
3673         XWEAK_LIST_LIST(children) =
3674             delq_no_quit(child, XWEAK_LIST_LIST(children));
3675 }
3676
3677 static void add_extent_to_children_list(EXTENT e, Lisp_Object child)
3678 {
3679         Lisp_Object children = extent_children(e);
3680
3681         if (NILP(children)) {
3682                 children = make_weak_list(WEAK_LIST_SIMPLE);
3683                 set_extent_no_chase_aux_field(e, children, children);
3684         }
3685 #ifdef ERROR_CHECK_EXTENTS
3686         assert(NILP(memq_no_quit(child, XWEAK_LIST_LIST(children))));
3687 #endif
3688         XWEAK_LIST_LIST(children) = Fcons(child, XWEAK_LIST_LIST(children));
3689 }
3690
3691 DEFUN("set-extent-parent", Fset_extent_parent, 2, 2, 0, /*
3692 Set the parent of EXTENT to PARENT (may be nil).
3693 See `extent-parent'.
3694 */
3695       (extent, parent))
3696 {
3697         EXTENT e = decode_extent(extent, 0);
3698         Lisp_Object cur_parent = extent_parent(e);
3699         Lisp_Object rest;
3700
3701         XSETEXTENT(extent, e);
3702         if (!NILP(parent))
3703                 CHECK_LIVE_EXTENT(parent);
3704         if (EQ(parent, cur_parent))
3705                 return Qnil;
3706         for (rest = parent; !NILP(rest); rest = extent_parent(XEXTENT(rest)))
3707                 if (EQ(rest, extent))
3708                         signal_type_error(Qinvalid_change,
3709                                           "Circular parent chain would result",
3710                                           extent);
3711         if (NILP(parent)) {
3712                 remove_extent_from_children_list(XEXTENT(cur_parent), extent);
3713                 set_extent_no_chase_aux_field(e, parent, Qnil);
3714                 e->flags.has_parent = 0;
3715         } else {
3716                 add_extent_to_children_list(XEXTENT(parent), extent);
3717                 set_extent_no_chase_aux_field(e, parent, parent);
3718                 e->flags.has_parent = 1;
3719         }
3720         /* changing the parent also changes the properties of all children. */
3721         {
3722                 int old_invis = (!NILP(cur_parent) &&
3723                                  !NILP(extent_invisible(XEXTENT(cur_parent))));
3724                 int new_invis = (!NILP(parent) &&
3725                                  !NILP(extent_invisible(XEXTENT(parent))));
3726
3727                 extent_maybe_changed_for_redisplay(e, 1,
3728                                                    new_invis != old_invis);
3729         }
3730
3731         return Qnil;
3732 }
3733 \f
3734 /************************************************************************/
3735 /*                      basic extent mutators                           */
3736 /************************************************************************/
3737
3738 /* Note:  If you track non-duplicable extents by undo, you'll get bogus
3739    undo records for transient extents via update-extent.
3740    For example, query-replace will do this.
3741  */
3742
3743 static void set_extent_endpoints_1(EXTENT extent, Memind start, Memind end)
3744 {
3745 #ifdef ERROR_CHECK_EXTENTS
3746         Lisp_Object obj = extent_object(extent);
3747
3748         assert(start <= end);
3749         if (BUFFERP(obj)) {
3750                 assert(valid_memind_p(XBUFFER(obj), start));
3751                 assert(valid_memind_p(XBUFFER(obj), end));
3752         }
3753 #endif
3754
3755         /* Optimization: if the extent is already where we want it to be,
3756            do nothing. */
3757         if (!extent_detached_p(extent) && extent_start(extent) == start &&
3758             extent_end(extent) == end)
3759                 return;
3760
3761         if (extent_detached_p(extent)) {
3762                 if (extent_duplicable_p(extent)) {
3763                         Lisp_Object extent_obj;
3764                         XSETEXTENT(extent_obj, extent);
3765                         record_extent(extent_obj, 1);
3766                 }
3767         } else
3768                 extent_detach(extent);
3769
3770         set_extent_start(extent, start);
3771         set_extent_end(extent, end);
3772         extent_attach(extent);
3773 }
3774
3775 /* Set extent's endpoints to S and E, and put extent in buffer or string
3776    OBJECT. (If OBJECT is nil, do not change the extent's object.) */
3777
3778 void set_extent_endpoints(EXTENT extent, Bytind s, Bytind e, Lisp_Object object)
3779 {
3780         Memind start, end;
3781
3782         if (NILP(object)) {
3783                 object = extent_object(extent);
3784                 assert(!NILP(object));
3785         } else if (!EQ(object, extent_object(extent))) {
3786                 extent_detach(extent);
3787                 extent_object(extent) = object;
3788         }
3789
3790         start = s < 0 ? extent_start(extent) :
3791             buffer_or_string_bytind_to_memind(object, s);
3792         end = e < 0 ? extent_end(extent) :
3793             buffer_or_string_bytind_to_memind(object, e);
3794         set_extent_endpoints_1(extent, start, end);
3795 }
3796
3797 static void set_extent_openness(EXTENT extent, int start_open, int end_open)
3798 {
3799         if (start_open != -1)
3800                 extent_start_open_p(extent) = start_open;
3801         if (end_open != -1)
3802                 extent_end_open_p(extent) = end_open;
3803         /* changing the open/closedness of an extent does not affect
3804            redisplay. */
3805 }
3806
3807 static EXTENT make_extent_internal(Lisp_Object object, Bytind from, Bytind to)
3808 {
3809         EXTENT extent;
3810
3811         extent = make_extent_detached(object);
3812         set_extent_endpoints(extent, from, to, Qnil);
3813         return extent;
3814 }
3815
3816 static EXTENT
3817 copy_extent(EXTENT original, Bytind from, Bytind to, Lisp_Object object)
3818 {
3819         EXTENT e;
3820
3821         e = make_extent_detached(object);
3822         if (from >= 0)
3823                 set_extent_endpoints(e, from, to, Qnil);
3824
3825         e->plist = Fcopy_sequence(original->plist);
3826         memcpy(&e->flags, &original->flags, sizeof(e->flags));
3827         if (e->flags.has_aux) {
3828                 /* also need to copy the aux struct.  It won't work for
3829                    this extent to share the same aux struct as the original
3830                    one. */
3831                 struct extent_auxiliary *data =
3832                     alloc_lcrecord_type(struct extent_auxiliary,
3833                                         &lrecord_extent_auxiliary);
3834
3835                 copy_lcrecord(data, XEXTENT_AUXILIARY(XCAR(original->plist)));
3836                 XSETEXTENT_AUXILIARY(XCAR(e->plist), data);
3837         }
3838
3839         {
3840                 /* we may have just added another child to the parent extent. */
3841                 Lisp_Object parent = extent_parent(e);
3842                 if (!NILP(parent)) {
3843                         Lisp_Object extent;
3844                         XSETEXTENT(extent, e);
3845                         add_extent_to_children_list(XEXTENT(parent), extent);
3846                 }
3847         }
3848
3849         return e;
3850 }
3851
3852 static void destroy_extent(EXTENT extent)
3853 {
3854         Lisp_Object rest, nextrest, children;
3855         Lisp_Object extent_obj;
3856
3857         if (!extent_detached_p(extent))
3858                 extent_detach(extent);
3859         /* disassociate the extent from its children and parent */
3860         children = extent_children(extent);
3861         if (!NILP(children)) {
3862                 LIST_LOOP_DELETING(rest, nextrest, XWEAK_LIST_LIST(children))
3863                     Fset_extent_parent(XCAR(rest), Qnil);
3864         }
3865         XSETEXTENT(extent_obj, extent);
3866         Fset_extent_parent(extent_obj, Qnil);
3867         /* mark the extent as destroyed */
3868         extent_object(extent) = Qt;
3869 }
3870
3871 DEFUN("make-extent", Fmake_extent, 2, 3, 0,     /*
3872 Make an extent for the range [FROM, TO) in BUFFER-OR-STRING.
3873 BUFFER-OR-STRING defaults to the current buffer.  Insertions at point
3874 TO will be outside of the extent; insertions at FROM will be inside the
3875 extent, causing the extent to grow. (This is the same way that markers
3876 behave.) You can change the behavior of insertions at the endpoints
3877 using `set-extent-property'.  The extent is initially detached if both
3878 FROM and TO are nil, and in this case BUFFER-OR-STRING defaults to nil,
3879 meaning the extent is in no buffer and no string.
3880 */
3881       (from, to, buffer_or_string))
3882 {
3883         Lisp_Object extent_obj;
3884         Lisp_Object obj;
3885
3886         obj = decode_buffer_or_string(buffer_or_string);
3887         if (NILP(from) && NILP(to)) {
3888                 if (NILP(buffer_or_string))
3889                         obj = Qnil;
3890                 XSETEXTENT(extent_obj, make_extent_detached(obj));
3891         } else {
3892                 Bytind start, end;
3893
3894                 get_buffer_or_string_range_byte(obj, from, to, &start, &end,
3895                                                 GB_ALLOW_PAST_ACCESSIBLE);
3896                 XSETEXTENT(extent_obj, make_extent_internal(obj, start, end));
3897         }
3898         return extent_obj;
3899 }
3900
3901 DEFUN("copy-extent", Fcopy_extent, 1, 2, 0,     /*
3902 Make a copy of EXTENT.  It is initially detached.
3903 Optional argument BUFFER-OR-STRING defaults to EXTENT's buffer or string.
3904 */
3905       (extent, buffer_or_string))
3906 {
3907         EXTENT ext = decode_extent(extent, 0);
3908
3909         if (NILP(buffer_or_string))
3910                 buffer_or_string = extent_object(ext);
3911         else
3912                 buffer_or_string = decode_buffer_or_string(buffer_or_string);
3913
3914         XSETEXTENT(extent, copy_extent(ext, -1, -1, buffer_or_string));
3915         return extent;
3916 }
3917
3918 DEFUN("delete-extent", Fdelete_extent, 1, 1, 0, /*
3919 Remove EXTENT from its buffer and destroy it.
3920 This does not modify the buffer's text, only its display properties.
3921 The extent cannot be used thereafter.
3922 */
3923       (extent))
3924 {
3925         EXTENT ext;
3926
3927         /* We do not call decode_extent() here because already-destroyed
3928            extents are OK. */
3929         CHECK_EXTENT(extent);
3930         ext = XEXTENT(extent);
3931
3932         if (!EXTENT_LIVE_P(ext))
3933                 return Qnil;
3934         destroy_extent(ext);
3935         return Qnil;
3936 }
3937
3938 DEFUN("detach-extent", Fdetach_extent, 1, 1, 0, /*
3939 Remove EXTENT from its buffer in such a way that it can be re-inserted.
3940 An extent is also detached when all of its characters are all killed by a
3941 deletion, unless its `detachable' property has been unset.
3942
3943 Extents which have the `duplicable' attribute are tracked by the undo
3944 mechanism.  Detachment via `detach-extent' and string deletion is recorded,
3945 as is attachment via `insert-extent' and string insertion.  Extent motion,
3946 face changes, and attachment via `make-extent' and `set-extent-endpoints'
3947 are not recorded.  This means that extent changes which are to be undo-able
3948 must be performed by character editing, or by insertion and detachment of
3949 duplicable extents.
3950 */
3951       (extent))
3952 {
3953         EXTENT ext = decode_extent(extent, 0);
3954
3955         if (extent_detached_p(ext))
3956                 return extent;
3957         if (extent_duplicable_p(ext))
3958                 record_extent(extent, 0);
3959         extent_detach(ext);
3960
3961         return extent;
3962 }
3963
3964 DEFUN("set-extent-endpoints", Fset_extent_endpoints, 3, 4, 0,   /*
3965 Set the endpoints of EXTENT to START, END.
3966 If START and END are null, call detach-extent on EXTENT.
3967 BUFFER-OR-STRING specifies the new buffer or string that the extent should
3968 be in, and defaults to EXTENT's buffer or string. (If nil, and EXTENT
3969 is in no buffer and no string, it defaults to the current buffer.)
3970 See documentation on `detach-extent' for a discussion of undo recording.
3971 */
3972       (extent, start, end, buffer_or_string))
3973 {
3974         EXTENT ext;
3975         Bytind s, e;
3976
3977         ext = decode_extent(extent, 0);
3978
3979         if (NILP(buffer_or_string)) {
3980                 buffer_or_string = extent_object(ext);
3981                 if (NILP(buffer_or_string))
3982                         buffer_or_string = Fcurrent_buffer();
3983         } else
3984                 buffer_or_string = decode_buffer_or_string(buffer_or_string);
3985
3986         if (NILP(start) && NILP(end))
3987                 return Fdetach_extent(extent);
3988
3989         get_buffer_or_string_range_byte(buffer_or_string, start, end, &s, &e,
3990                                         GB_ALLOW_PAST_ACCESSIBLE);
3991
3992         buffer_or_string_extent_info_force(buffer_or_string);
3993         set_extent_endpoints(ext, s, e, buffer_or_string);
3994         return extent;
3995 }
3996 \f
3997 /************************************************************************/
3998 /*                         mapping over extents                         */
3999 /************************************************************************/
4000
4001 static unsigned int decode_map_extents_flags(Lisp_Object flags)
4002 {
4003         unsigned int retval = 0;
4004         unsigned int all_extents_specified = 0;
4005         unsigned int in_region_specified = 0;
4006
4007         if (EQ(flags, Qt))      /* obsoleteness compatibility */
4008                 return ME_END_CLOSED;
4009         if (NILP(flags))
4010                 return 0;
4011         if (SYMBOLP(flags))
4012                 flags = Fcons(flags, Qnil);
4013         while (!NILP(flags)) {
4014                 Lisp_Object sym;
4015                 CHECK_CONS(flags);
4016                 sym = XCAR(flags);
4017                 CHECK_SYMBOL(sym);
4018                 if (EQ(sym, Qall_extents_closed) || EQ(sym, Qall_extents_open)
4019                     || EQ(sym, Qall_extents_closed_open)
4020                     || EQ(sym, Qall_extents_open_closed)) {
4021                         if (all_extents_specified)
4022                                 error
4023                                     ("Only one `all-extents-*' flag may be specified");
4024                         all_extents_specified = 1;
4025                 }
4026                 if (EQ(sym, Qstart_in_region) || EQ(sym, Qend_in_region) ||
4027                     EQ(sym, Qstart_and_end_in_region) ||
4028                     EQ(sym, Qstart_or_end_in_region)) {
4029                         if (in_region_specified)
4030                                 error
4031                                     ("Only one `*-in-region' flag may be specified");
4032                         in_region_specified = 1;
4033                 }
4034
4035                 /* I do so love that conditional operator ... */
4036                 retval |=
4037                     EQ(sym, Qend_closed) ? ME_END_CLOSED :
4038                     EQ(sym, Qstart_open) ? ME_START_OPEN :
4039                     EQ(sym, Qall_extents_closed) ? ME_ALL_EXTENTS_CLOSED :
4040                     EQ(sym, Qall_extents_open) ? ME_ALL_EXTENTS_OPEN :
4041                     EQ(sym,
4042                        Qall_extents_closed_open) ? ME_ALL_EXTENTS_CLOSED_OPEN :
4043                     EQ(sym,
4044                        Qall_extents_open_closed) ? ME_ALL_EXTENTS_OPEN_CLOSED :
4045                     EQ(sym, Qstart_in_region) ? ME_START_IN_REGION : EQ(sym,
4046                                                                         Qend_in_region)
4047                     ? ME_END_IN_REGION : EQ(sym,
4048                                             Qstart_and_end_in_region) ?
4049                     ME_START_AND_END_IN_REGION : EQ(sym,
4050                                                     Qstart_or_end_in_region) ?
4051                     ME_START_OR_END_IN_REGION : EQ(sym,
4052                                                    Qnegate_in_region) ?
4053                     ME_NEGATE_IN_REGION
4054                     : (invalid_argument("Invalid `map-extents' flag", sym), 0);
4055
4056                 flags = XCDR(flags);
4057         }
4058         return retval;
4059 }
4060
4061 DEFUN("extent-in-region-p", Fextent_in_region_p, 1, 4, 0,       /*
4062 Return whether EXTENT overlaps a specified region.
4063 This is equivalent to whether `map-extents' would visit EXTENT when called
4064 with these args.
4065 */
4066       (extent, from, to, flags))
4067 {
4068         Bytind start, end;
4069         EXTENT ext = decode_extent(extent, DE_MUST_BE_ATTACHED);
4070         Lisp_Object obj = extent_object(ext);
4071
4072         get_buffer_or_string_range_byte(obj, from, to, &start, &end,
4073                                         GB_ALLOW_NIL |
4074                                         GB_ALLOW_PAST_ACCESSIBLE);
4075
4076         return extent_in_region_p(ext, start, end,
4077                                   decode_map_extents_flags(flags)) ? Qt : Qnil;
4078 }
4079
4080 struct slow_map_extents_arg {
4081         Lisp_Object map_arg;
4082         Lisp_Object map_routine;
4083         Lisp_Object result;
4084         Lisp_Object property;
4085         Lisp_Object value;
4086 };
4087
4088 static int slow_map_extents_function(EXTENT extent, void *arg)
4089 {
4090         /* This function can GC */
4091         struct slow_map_extents_arg *closure =
4092             (struct slow_map_extents_arg *)arg;
4093         Lisp_Object extent_obj;
4094
4095         XSETEXTENT(extent_obj, extent);
4096
4097         /* make sure this extent qualifies according to the PROPERTY
4098            and VALUE args */
4099
4100         if (!NILP(closure->property)) {
4101                 Lisp_Object value =
4102                     Fextent_property(extent_obj, closure->property,
4103                                      Qnil);
4104                 if ((NILP(closure->value) && NILP(value)) ||
4105                     (!NILP(closure->value) && !EQ(value, closure->value)))
4106                         return 0;
4107         }
4108
4109         closure->result = call2(closure->map_routine, extent_obj,
4110                                 closure->map_arg);
4111         return !NILP(closure->result);
4112 }
4113
4114 DEFUN("map-extents", Fmap_extents, 1, 8, 0,     /*
4115 Map FUNCTION over the extents which overlap a region in OBJECT.
4116 OBJECT is normally a buffer or string but could be an extent (see below).
4117 The region is normally bounded by [FROM, TO) (i.e. the beginning of the
4118 region is closed and the end of the region is open), but this can be
4119 changed with the FLAGS argument (see below for a complete discussion).
4120
4121 FUNCTION is called with the arguments (extent, MAPARG).  The arguments
4122 OBJECT, FROM, TO, MAPARG, and FLAGS are all optional and default to
4123 the current buffer, the beginning of OBJECT, the end of OBJECT, nil,
4124 and nil, respectively.  `map-extents' returns the first non-nil result
4125 produced by FUNCTION, and no more calls to FUNCTION are made after it
4126 returns non-nil.
4127
4128 If OBJECT is an extent, FROM and TO default to the extent's endpoints,
4129 and the mapping omits that extent and its predecessors.  This feature
4130 supports restarting a loop based on `map-extents'.  Note: OBJECT must
4131 be attached to a buffer or string, and the mapping is done over that
4132 buffer or string.
4133
4134 An extent overlaps the region if there is any point in the extent that is
4135 also in the region. (For the purpose of overlap, zero-length extents and
4136 regions are treated as closed on both ends regardless of their endpoints'
4137 specified open/closedness.) Note that the endpoints of an extent or region
4138 are considered to be in that extent or region if and only if the
4139 corresponding end is closed.  For example, the extent [5,7] overlaps the
4140 region [2,5] because 5 is in both the extent and the region.  However, (5,7]
4141 does not overlap [2,5] because 5 is not in the extent, and neither [5,7] nor
4142 \(5,7] overlaps the region [2,5) because 5 is not in the region.
4143
4144 The optional FLAGS can be a symbol or a list of one or more symbols,
4145 modifying the behavior of `map-extents'.  Allowed symbols are:
4146
4147 end-closed              The region's end is closed.
4148
4149 start-open              The region's start is open.
4150
4151 all-extents-closed      Treat all extents as closed on both ends for the
4152 purpose of determining whether they overlap the
4153 region, irrespective of their actual open- or
4154 closedness.
4155 all-extents-open        Treat all extents as open on both ends.
4156 all-extents-closed-open Treat all extents as start-closed, end-open.
4157 all-extents-open-closed Treat all extents as start-open, end-closed.
4158
4159 start-in-region         In addition to the above conditions for extent
4160 overlap, the extent's start position must lie within
4161 the specified region.  Note that, for this
4162 condition, open start positions are treated as if
4163 0.5 was added to the endpoint's value, and open
4164 end positions are treated as if 0.5 was subtracted
4165 from the endpoint's value.
4166 end-in-region           The extent's end position must lie within the
4167 region.
4168 start-and-end-in-region Both the extent's start and end positions must lie
4169 within the region.
4170 start-or-end-in-region  Either the extent's start or end position must lie
4171 within the region.
4172
4173 negate-in-region        The condition specified by a `*-in-region' flag
4174 must NOT hold for the extent to be considered.
4175
4176 At most one of `all-extents-closed', `all-extents-open',
4177 `all-extents-closed-open', and `all-extents-open-closed' may be specified.
4178
4179 At most one of `start-in-region', `end-in-region',
4180 `start-and-end-in-region', and `start-or-end-in-region' may be specified.
4181
4182 If optional arg PROPERTY is non-nil, only extents with that property set
4183 on them will be visited.  If optional arg VALUE is non-nil, only extents
4184 whose value for that property is `eq' to VALUE will be visited.
4185 */
4186       (function, object, from, to, maparg, flags, property, value))
4187 {
4188         /* This function can GC */
4189         struct slow_map_extents_arg closure;
4190         unsigned int me_flags;
4191         Bytind start, end;
4192         struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
4193         EXTENT after = 0;
4194
4195         if (EXTENTP(object)) {
4196                 after = decode_extent(object, DE_MUST_BE_ATTACHED);
4197                 if (NILP(from))
4198                         from = Fextent_start_position(object);
4199                 if (NILP(to))
4200                         to = Fextent_end_position(object);
4201                 object = extent_object(after);
4202         } else
4203                 object = decode_buffer_or_string(object);
4204
4205         get_buffer_or_string_range_byte(object, from, to, &start, &end,
4206                                         GB_ALLOW_NIL |
4207                                         GB_ALLOW_PAST_ACCESSIBLE);
4208
4209         me_flags = decode_map_extents_flags(flags);
4210
4211         if (!NILP(property)) {
4212                 if (!NILP(value))
4213                         value = canonicalize_extent_property(property, value);
4214         }
4215
4216         GCPRO5(function, maparg, object, property, value);
4217
4218         closure.map_arg = maparg;
4219         closure.map_routine = function;
4220         closure.result = Qnil;
4221         closure.property = property;
4222         closure.value = value;
4223
4224         map_extents_bytind(start, end, slow_map_extents_function,
4225                            (void *)&closure, object, after,
4226                            /* You never know what the user might do ... */
4227                            me_flags | ME_MIGHT_CALL_ELISP);
4228
4229         UNGCPRO;
4230         return closure.result;
4231 }
4232 \f
4233 /************************************************************************/
4234 /*              mapping over extents -- other functions                 */
4235 /************************************************************************/
4236
4237 /* ------------------------------- */
4238 /*      map-extent-children        */
4239 /* ------------------------------- */
4240
4241 struct slow_map_extent_children_arg {
4242         Lisp_Object map_arg;
4243         Lisp_Object map_routine;
4244         Lisp_Object result;
4245         Lisp_Object property;
4246         Lisp_Object value;
4247         Bytind start_min;
4248         Bytind prev_start;
4249         Bytind prev_end;
4250 };
4251
4252 static int slow_map_extent_children_function(EXTENT extent, void *arg)
4253 {
4254         /* This function can GC */
4255         struct slow_map_extent_children_arg *closure =
4256             (struct slow_map_extent_children_arg *)arg;
4257         Lisp_Object extent_obj;
4258         Bytind start = extent_endpoint_bytind(extent, 0);
4259         Bytind end = extent_endpoint_bytind(extent, 1);
4260         /* Make sure the extent starts inside the region of interest,
4261            rather than just overlaps it.
4262          */
4263         if (start < closure->start_min)
4264                 return 0;
4265         /* Make sure the extent is not a child of a previous visited one.
4266            We know already, because of extent ordering,
4267            that start >= prev_start, and that if
4268            start == prev_start, then end <= prev_end.
4269          */
4270         if (start == closure->prev_start) {
4271                 if (end < closure->prev_end)
4272                         return 0;
4273         } else {                /* start > prev_start */
4274
4275                 if (start < closure->prev_end)
4276                         return 0;
4277                 /* corner case:  prev_end can be -1 if there is no prev */
4278         }
4279         XSETEXTENT(extent_obj, extent);
4280
4281         /* make sure this extent qualifies according to the PROPERTY
4282            and VALUE args */
4283
4284         if (!NILP(closure->property)) {
4285                 Lisp_Object value =
4286                     Fextent_property(extent_obj, closure->property,
4287                                      Qnil);
4288                 if ((NILP(closure->value) && NILP(value)) ||
4289                     (!NILP(closure->value) && !EQ(value, closure->value)))
4290                         return 0;
4291         }
4292
4293         closure->result = call2(closure->map_routine, extent_obj,
4294                                 closure->map_arg);
4295
4296         /* Since the callback may change the buffer, compute all stored
4297            buffer positions here.
4298          */
4299         closure->start_min = -1;        /* no need for this any more */
4300         closure->prev_start = extent_endpoint_bytind(extent, 0);
4301         closure->prev_end = extent_endpoint_bytind(extent, 1);
4302
4303         return !NILP(closure->result);
4304 }
4305
4306 DEFUN("map-extent-children", Fmap_extent_children, 1, 8, 0,     /*
4307 Map FUNCTION over the extents in the region from FROM to TO.
4308 FUNCTION is called with arguments (extent, MAPARG).  See `map-extents'
4309 for a full discussion of the arguments FROM, TO, and FLAGS.
4310
4311 The arguments are the same as for `map-extents', but this function differs
4312 in that it only visits extents which start in the given region, and also
4313 in that, after visiting an extent E, it skips all other extents which start
4314 inside E but end before E's end.
4315
4316 Thus, this function may be used to walk a tree of extents in a buffer:
4317 (defun walk-extents (buffer &optional ignore)
4318 (map-extent-children 'walk-extents buffer))
4319 */
4320       (function, object, from, to, maparg, flags, property, value))
4321 {
4322         /* This function can GC */
4323         struct slow_map_extent_children_arg closure;
4324         unsigned int me_flags;
4325         Bytind start, end;
4326         struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
4327         EXTENT after = 0;
4328
4329         if (EXTENTP(object)) {
4330                 after = decode_extent(object, DE_MUST_BE_ATTACHED);
4331                 if (NILP(from))
4332                         from = Fextent_start_position(object);
4333                 if (NILP(to))
4334                         to = Fextent_end_position(object);
4335                 object = extent_object(after);
4336         } else
4337                 object = decode_buffer_or_string(object);
4338
4339         get_buffer_or_string_range_byte(object, from, to, &start, &end,
4340                                         GB_ALLOW_NIL |
4341                                         GB_ALLOW_PAST_ACCESSIBLE);
4342
4343         me_flags = decode_map_extents_flags(flags);
4344
4345         if (!NILP(property)) {
4346                 if (!NILP(value))
4347                         value = canonicalize_extent_property(property, value);
4348         }
4349
4350         GCPRO5(function, maparg, object, property, value);
4351
4352         closure.map_arg = maparg;
4353         closure.map_routine = function;
4354         closure.result = Qnil;
4355         closure.property = property;
4356         closure.value = value;
4357         closure.start_min = start;
4358         closure.prev_start = -1;
4359         closure.prev_end = -1;
4360         map_extents_bytind(start, end, slow_map_extent_children_function,
4361                            (void *)&closure, object, after,
4362                            /* You never know what the user might do ... */
4363                            me_flags | ME_MIGHT_CALL_ELISP);
4364
4365         UNGCPRO;
4366         return closure.result;
4367 }
4368
4369 /* ------------------------------- */
4370 /*             extent-at           */
4371 /* ------------------------------- */
4372
4373 /* find "smallest" matching extent containing pos -- (flag == 0) means
4374    all extents match, else (EXTENT_FLAGS (extent) & flag) must be true;
4375    for more than one matching extent with precisely the same endpoints,
4376    we choose the last extent in the extents_list.
4377    The search stops just before "before", if that is non-null.
4378    */
4379
4380 struct extent_at_arg {
4381         Lisp_Object best_match; /* or list of extents */
4382         Memind best_start;
4383         Memind best_end;
4384         Lisp_Object prop;
4385         EXTENT before;
4386         int all_extents;
4387 };
4388
4389 enum extent_at_flag {
4390         EXTENT_AT_AFTER,
4391         EXTENT_AT_BEFORE,
4392         EXTENT_AT_AT
4393 };
4394
4395 static enum extent_at_flag decode_extent_at_flag(Lisp_Object at_flag)
4396 {
4397         if (NILP(at_flag))
4398                 return EXTENT_AT_AFTER;
4399
4400         CHECK_SYMBOL(at_flag);
4401         if (EQ(at_flag, Qafter))
4402                 return EXTENT_AT_AFTER;
4403         if (EQ(at_flag, Qbefore))
4404                 return EXTENT_AT_BEFORE;
4405         if (EQ(at_flag, Qat))
4406                 return EXTENT_AT_AT;
4407
4408         invalid_argument("Invalid AT-FLAG in `extent-at'", at_flag);
4409         return EXTENT_AT_AFTER; /* unreached */
4410 }
4411
4412 static int extent_at_mapper(EXTENT e, void *arg)
4413 {
4414         struct extent_at_arg *closure = (struct extent_at_arg *)arg;
4415
4416         if (e == closure->before)
4417                 return 1;
4418
4419         /* If closure->prop is non-nil, then the extent is only acceptable
4420            if it has a non-nil value for that property. */
4421         if (!NILP(closure->prop)) {
4422                 Lisp_Object extent;
4423                 XSETEXTENT(extent, e);
4424                 if (NILP(Fextent_property(extent, closure->prop, Qnil)))
4425                         return 0;
4426         }
4427
4428         if (!closure->all_extents) {
4429                 EXTENT current;
4430
4431                 if (NILP(closure->best_match))
4432                         goto accept;
4433                 current = XEXTENT(closure->best_match);
4434                 /* redundant but quick test */
4435                 if (extent_start(current) > extent_start(e))
4436                         return 0;
4437
4438                 /* we return the "last" best fit, instead of the first --
4439                    this is because then the glyph closest to two equivalent
4440                    extents corresponds to the "extent-at" the text just past
4441                    that same glyph */
4442                 else if (!EXTENT_LESS_VALS(e, closure->best_start,
4443                                            closure->best_end))
4444                         goto accept;
4445                 else
4446                         return 0;
4447               accept:
4448                 XSETEXTENT(closure->best_match, e);
4449                 closure->best_start = extent_start(e);
4450                 closure->best_end = extent_end(e);
4451         } else {
4452                 Lisp_Object extent;
4453
4454                 XSETEXTENT(extent, e);
4455                 closure->best_match = Fcons(extent, closure->best_match);
4456         }
4457
4458         return 0;
4459 }
4460
4461 static Lisp_Object
4462 extent_at_bytind(Bytind position, Lisp_Object object, Lisp_Object property,
4463                  EXTENT before, enum extent_at_flag at_flag, int all_extents)
4464 {
4465         struct extent_at_arg closure;
4466         struct gcpro gcpro1;
4467
4468         /* it might be argued that invalid positions should cause
4469            errors, but the principle of least surprise dictates that
4470            nil should be returned (extent-at is often used in
4471            response to a mouse event, and in many cases previous events
4472            have changed the buffer contents).
4473
4474            Also, the openness stuff in the text-property code currently
4475            does not check its limits and might go off the end. */
4476         if ((at_flag == EXTENT_AT_BEFORE
4477              ? position <= buffer_or_string_absolute_begin_byte(object)
4478              : position < buffer_or_string_absolute_begin_byte(object))
4479             || (at_flag == EXTENT_AT_AFTER
4480                 ? position >= buffer_or_string_absolute_end_byte(object)
4481                 : position > buffer_or_string_absolute_end_byte(object)))
4482                 return Qnil;
4483
4484         closure.best_match = Qnil;
4485         closure.prop = property;
4486         closure.before = before;
4487         closure.all_extents = all_extents;
4488
4489         GCPRO1(closure.best_match);
4490         map_extents_bytind(at_flag ==
4491                            EXTENT_AT_BEFORE ? position - 1 : position,
4492                            at_flag == EXTENT_AT_AFTER ? position + 1 : position,
4493                            extent_at_mapper, (void *)&closure, object, 0,
4494                            ME_START_OPEN | ME_ALL_EXTENTS_CLOSED);
4495         if (all_extents)
4496                 closure.best_match = Fnreverse(closure.best_match);
4497         UNGCPRO;
4498
4499         return closure.best_match;
4500 }
4501
4502 DEFUN("extent-at", Fextent_at, 1, 5, 0, /*
4503 Find "smallest" extent at POS in OBJECT having PROPERTY set.
4504 Normally, an extent is "at" POS if it overlaps the region (POS, POS+1);
4505 i.e. if it covers the character after POS. (However, see the definition
4506 of AT-FLAG.) "Smallest" means the extent that comes last in the display
4507 order; this normally means the extent whose start position is closest to
4508 POS.  See `next-extent' for more information.
4509 OBJECT specifies a buffer or string and defaults to the current buffer.
4510 PROPERTY defaults to nil, meaning that any extent will do.
4511 Properties are attached to extents with `set-extent-property', which see.
4512 Returns nil if POS is invalid or there is no matching extent at POS.
4513 If the fourth argument BEFORE is not nil, it must be an extent; any returned
4514 extent will precede that extent.  This feature allows `extent-at' to be
4515 used by a loop over extents.
4516 AT-FLAG controls how end cases are handled, and should be one of:
4517
4518 nil or `after'              An extent is at POS if it covers the character
4519 after POS.  This is consistent with the way
4520 that text properties work.
4521 `before'            An extent is at POS if it covers the character
4522 before POS.
4523 `at'                        An extent is at POS if it overlaps or abuts POS.
4524 This includes all zero-length extents at POS.
4525
4526 Note that in all cases, the start-openness and end-openness of the extents
4527 considered is ignored.  If you want to pay attention to those properties,
4528 you should use `map-extents', which gives you more control.
4529 */
4530       (pos, object, property, before, at_flag))
4531 {
4532         Bytind position;
4533         EXTENT before_extent;
4534         enum extent_at_flag fl;
4535
4536         object = decode_buffer_or_string(object);
4537         position =
4538             get_buffer_or_string_pos_byte(object, pos, GB_NO_ERROR_IF_BAD);
4539         if (NILP(before))
4540                 before_extent = 0;
4541         else
4542                 before_extent = decode_extent(before, DE_MUST_BE_ATTACHED);
4543         if (before_extent && !EQ(object, extent_object(before_extent)))
4544                 invalid_argument("extent not in specified buffer or string",
4545                                  object);
4546         fl = decode_extent_at_flag(at_flag);
4547
4548         return extent_at_bytind(position, object, property, before_extent, fl,
4549                                 0);
4550 }
4551
4552 DEFUN("extents-at", Fextents_at, 1, 5, 0,       /*
4553 Find all extents at POS in OBJECT having PROPERTY set.
4554 Normally, an extent is "at" POS if it overlaps the region (POS, POS+1);
4555 i.e. if it covers the character after POS. (However, see the definition
4556 of AT-FLAG.)
4557 This provides similar functionality to `extent-list', but does so in a way
4558 that is compatible with `extent-at'. (For example, errors due to POS out of
4559 range are ignored; this makes it safer to use this function in response to
4560 a mouse event, because in many cases previous events have changed the buffer
4561 contents.)
4562 OBJECT specifies a buffer or string and defaults to the current buffer.
4563 PROPERTY defaults to nil, meaning that any extent will do.
4564 Properties are attached to extents with `set-extent-property', which see.
4565 Returns nil if POS is invalid or there is no matching extent at POS.
4566 If the fourth argument BEFORE is not nil, it must be an extent; any returned
4567 extent will precede that extent.  This feature allows `extents-at' to be
4568 used by a loop over extents.
4569 AT-FLAG controls how end cases are handled, and should be one of:
4570
4571 nil or `after'            An extent is at POS if it covers the character
4572 after POS.  This is consistent with the way
4573 that text properties work.
4574 `before'          An extent is at POS if it covers the character
4575 before POS.
4576 `at'                      An extent is at POS if it overlaps or abuts POS.
4577 This includes all zero-length extents at POS.
4578
4579 Note that in all cases, the start-openness and end-openness of the extents
4580 considered is ignored.  If you want to pay attention to those properties,
4581 you should use `map-extents', which gives you more control.
4582 */
4583       (pos, object, property, before, at_flag))
4584 {
4585         Bytind position;
4586         EXTENT before_extent;
4587         enum extent_at_flag fl;
4588
4589         object = decode_buffer_or_string(object);
4590         position =
4591             get_buffer_or_string_pos_byte(object, pos, GB_NO_ERROR_IF_BAD);
4592         if (NILP(before))
4593                 before_extent = 0;
4594         else
4595                 before_extent = decode_extent(before, DE_MUST_BE_ATTACHED);
4596         if (before_extent && !EQ(object, extent_object(before_extent)))
4597                 invalid_argument("extent not in specified buffer or string",
4598                                  object);
4599         fl = decode_extent_at_flag(at_flag);
4600
4601         return extent_at_bytind(position, object, property, before_extent, fl,
4602                                 1);
4603 }
4604
4605 /* ------------------------------- */
4606 /*   verify_extent_modification()  */
4607 /* ------------------------------- */
4608
4609 /* verify_extent_modification() is called when a buffer or string is
4610    modified to check whether the modification is occuring inside a
4611    read-only extent.
4612  */
4613
4614 struct verify_extents_arg {
4615         Lisp_Object object;
4616         Memind start;
4617         Memind end;
4618         Lisp_Object iro;        /* value of inhibit-read-only */
4619 };
4620
4621 static int verify_extent_mapper(EXTENT extent, void *arg)
4622 {
4623         struct verify_extents_arg *closure = (struct verify_extents_arg *)arg;
4624         Lisp_Object prop = extent_read_only(extent);
4625
4626         if (NILP(prop))
4627                 return 0;
4628
4629         if (CONSP(closure->iro) && !NILP(Fmemq(prop, closure->iro)))
4630                 return 0;
4631
4632 #if 0                           /* Nobody seems to care for this any more -sb */
4633         /* Allow deletion if the extent is completely contained in
4634            the region being deleted.
4635            This is important for supporting tokens which are internally
4636            write-protected, but which can be killed and yanked as a whole.
4637            Ignore open/closed distinctions at this point.
4638            -- Rose
4639          */
4640         if (closure->start != closure->end &&
4641             extent_start(extent) >= closure->start &&
4642             extent_end(extent) <= closure->end)
4643                 return 0;
4644 #endif
4645
4646         while (1)
4647                 Fsignal(Qbuffer_read_only, (list1(closure->object)));
4648
4649         RETURN_NOT_REACHED(0)
4650 }
4651
4652 /* Value of Vinhibit_read_only is precomputed and passed in for
4653    efficiency */
4654
4655 void
4656 verify_extent_modification(Lisp_Object object, Bytind from, Bytind to,
4657                            Lisp_Object inhibit_read_only_value)
4658 {
4659         int closed;
4660         struct verify_extents_arg closure;
4661
4662         /* If insertion, visit closed-endpoint extents touching the insertion
4663            point because the text would go inside those extents.  If deletion,
4664            treat the range as open on both ends so that touching extents are not
4665            visited.  Note that we assume that an insertion is occurring if the
4666            changed range has zero length, and a deletion otherwise.  This
4667            fails if a change (i.e. non-insertion, non-deletion) is happening.
4668            As far as I know, this doesn't currently occur in XEmacs. --ben */
4669         closed = (from == to);
4670         closure.object = object;
4671         closure.start = buffer_or_string_bytind_to_memind(object, from);
4672         closure.end = buffer_or_string_bytind_to_memind(object, to);
4673         closure.iro = inhibit_read_only_value;
4674
4675         map_extents_bytind(from, to, verify_extent_mapper, (void *)&closure,
4676                            object, 0, closed ? ME_END_CLOSED : ME_START_OPEN);
4677 }
4678
4679 /* ------------------------------------ */
4680 /*    process_extents_for_insertion()   */
4681 /* ------------------------------------ */
4682
4683 struct process_extents_for_insertion_arg {
4684         Bytind opoint;
4685         int length;
4686         Lisp_Object object;
4687 };
4688
4689 /*   A region of length LENGTH was just inserted at OPOINT.  Modify all
4690      of the extents as required for the insertion, based on their
4691      start-open/end-open properties.
4692  */
4693
4694 static int process_extents_for_insertion_mapper(EXTENT extent, void *arg)
4695 {
4696         struct process_extents_for_insertion_arg *closure =
4697             (struct process_extents_for_insertion_arg *)arg;
4698         Memind indice = buffer_or_string_bytind_to_memind(closure->object,
4699                                                           closure->opoint);
4700
4701         /* When this function is called, one end of the newly-inserted text should
4702            be adjacent to some endpoint of the extent, or disjoint from it.  If
4703            the insertion overlaps any existing extent, something is wrong.
4704          */
4705 #ifdef ERROR_CHECK_EXTENTS
4706         if (extent_start(extent) > indice &&
4707             extent_start(extent) < indice + closure->length)
4708                 abort();
4709         if (extent_end(extent) > indice &&
4710             extent_end(extent) < indice + closure->length)
4711                 abort();
4712 #endif
4713
4714         /* The extent-adjustment code adjusted the extent's endpoints as if
4715            all extents were closed-open -- endpoints at the insertion point
4716            remain unchanged.  We need to fix the other kinds of extents:
4717
4718            1. Start position of start-open extents needs to be moved.
4719
4720            2. End position of end-closed extents needs to be moved.
4721
4722            Note that both conditions hold for zero-length (] extents at the
4723            insertion point.  But under these rules, zero-length () extents
4724            would get adjusted such that their start is greater than their
4725            end; instead of allowing that, we treat them as [) extents by
4726            modifying condition #1 to not fire nothing when dealing with a
4727            zero-length open-open extent.
4728
4729            Existence of zero-length open-open extents is unfortunately an
4730            inelegant part of the extent model, but there is no way around
4731            it. */
4732
4733         {
4734                 Memind new_start = extent_start(extent);
4735                 Memind new_end = extent_end(extent);
4736
4737                 if (indice == extent_start(extent)
4738                     && extent_start_open_p(extent)
4739                     /* zero-length () extents are exempt; see comment above. */
4740                     && !(new_start == new_end && extent_end_open_p(extent))
4741                     )
4742                         new_start += closure->length;
4743                 if (indice == extent_end(extent) && !extent_end_open_p(extent))
4744                         new_end += closure->length;
4745
4746                 set_extent_endpoints_1(extent, new_start, new_end);
4747         }
4748
4749         return 0;
4750 }
4751
4752 void
4753 process_extents_for_insertion(Lisp_Object object, Bytind opoint,
4754                               Bytecount length)
4755 {
4756         struct process_extents_for_insertion_arg closure;
4757
4758         closure.opoint = opoint;
4759         closure.length = length;
4760         closure.object = object;
4761
4762         map_extents_bytind(opoint, opoint + length,
4763                            process_extents_for_insertion_mapper,
4764                            (void *)&closure, object, 0,
4765                            ME_END_CLOSED | ME_MIGHT_MODIFY_EXTENTS |
4766                            ME_INCLUDE_INTERNAL);
4767 }
4768
4769 /* ------------------------------------ */
4770 /*    process_extents_for_deletion()    */
4771 /* ------------------------------------ */
4772
4773 struct process_extents_for_deletion_arg {
4774         Memind start, end;
4775         int destroy_included_extents;
4776 };
4777
4778 /* This function is called when we're about to delete the range [from, to].
4779    Detach all of the extents that are completely inside the range [from, to],
4780    if they're detachable or open-open. */
4781
4782 static int process_extents_for_deletion_mapper(EXTENT extent, void *arg)
4783 {
4784         struct process_extents_for_deletion_arg *closure =
4785             (struct process_extents_for_deletion_arg *)arg;
4786
4787         /* If the extent lies completely within the range that
4788            is being deleted, then nuke the extent if it's detachable
4789            (otherwise, it will become a zero-length extent). */
4790
4791         if (closure->start <= extent_start(extent) &&
4792             extent_end(extent) <= closure->end) {
4793                 if (extent_detachable_p(extent)) {
4794                         if (closure->destroy_included_extents)
4795                                 destroy_extent(extent);
4796                         else
4797                                 extent_detach(extent);
4798                 }
4799         }
4800
4801         return 0;
4802 }
4803
4804 /* DESTROY_THEM means destroy the extents instead of just deleting them.
4805    It is unused currently, but perhaps might be used (there used to
4806    be a function process_extents_for_destruction(), #if 0'd out,
4807    that did the equivalent). */
4808 void
4809 process_extents_for_deletion(Lisp_Object object, Bytind from,
4810                              Bytind to, int destroy_them)
4811 {
4812         struct process_extents_for_deletion_arg closure;
4813
4814         closure.start = buffer_or_string_bytind_to_memind(object, from);
4815         closure.end = buffer_or_string_bytind_to_memind(object, to);
4816         closure.destroy_included_extents = destroy_them;
4817
4818         map_extents_bytind(from, to, process_extents_for_deletion_mapper,
4819                            (void *)&closure, object, 0,
4820                            ME_END_CLOSED | ME_MIGHT_MODIFY_EXTENTS);
4821 }
4822
4823 /* ------------------------------- */
4824 /*   report_extent_modification()  */
4825 /* ------------------------------- */
4826 struct report_extent_modification_closure {
4827         Lisp_Object buffer;
4828         Bufpos start, end;
4829         int afterp;
4830         int speccount;
4831 };
4832
4833 static Lisp_Object report_extent_modification_restore(Lisp_Object buffer)
4834 {
4835         if (current_buffer != XBUFFER(buffer))
4836                 Fset_buffer(buffer);
4837         return Qnil;
4838 }
4839
4840 static int report_extent_modification_mapper(EXTENT extent, void *arg)
4841 {
4842         struct report_extent_modification_closure *closure =
4843             (struct report_extent_modification_closure *)arg;
4844         Lisp_Object exobj, startobj, endobj;
4845         Lisp_Object hook = (closure->afterp
4846                             ? extent_after_change_functions(extent)
4847                             : extent_before_change_functions(extent));
4848         if (NILP(hook))
4849                 return 0;
4850
4851         XSETEXTENT(exobj, extent);
4852         XSETINT(startobj, closure->start);
4853         XSETINT(endobj, closure->end);
4854
4855         /* Now that we are sure to call elisp, set up an unwind-protect so
4856            inside_change_hook gets restored in case we throw.  Also record
4857            the current buffer, in case we change it.  Do the recording only
4858            once.
4859
4860            One confusing thing here is that our caller never actually calls
4861            unbind_to (closure.speccount, Qnil).  This is because
4862            map_extents_bytind() unbinds before, and with a smaller
4863            speccount.  The additional unbind_to() in
4864            report_extent_modification() would cause XEmacs to abort.  */
4865         if (closure->speccount == -1) {
4866                 closure->speccount = specpdl_depth();
4867                 record_unwind_protect(report_extent_modification_restore,
4868                                       Fcurrent_buffer());
4869         }
4870
4871         /* The functions will expect closure->buffer to be the current
4872            buffer, so change it if it isn't.  */
4873         if (current_buffer != XBUFFER(closure->buffer))
4874                 Fset_buffer(closure->buffer);
4875
4876         /* #### It's a shame that we can't use any of the existing run_hook*
4877            functions here.  This is so because all of them work with
4878            symbols, to be able to retrieve default values of local hooks.
4879            <sigh>
4880
4881            #### Idea: we could set up a dummy symbol, and call the hook
4882            functions on *that*.  */
4883
4884         if (!CONSP(hook) || EQ(XCAR(hook), Qlambda))
4885                 call3(hook, exobj, startobj, endobj);
4886         else {
4887                 Lisp_Object tail;
4888                 EXTERNAL_LIST_LOOP(tail, hook)
4889                     /* #### Shouldn't this perform the same Fset_buffer() check as
4890                        above?  */
4891                     call3(XCAR(tail), exobj, startobj, endobj);
4892         }
4893         return 0;
4894 }
4895
4896 void
4897 report_extent_modification(Lisp_Object buffer, Bufpos start, Bufpos end,
4898                            int afterp)
4899 {
4900         struct report_extent_modification_closure closure;
4901
4902         closure.buffer = buffer;
4903         closure.start = start;
4904         closure.end = end;
4905         closure.afterp = afterp;
4906         closure.speccount = -1;
4907
4908         map_extents(start, end, report_extent_modification_mapper,
4909                     (void *)&closure, buffer, NULL, ME_MIGHT_CALL_ELISP);
4910 }
4911 \f
4912 /************************************************************************/
4913 /*                      extent properties                               */
4914 /************************************************************************/
4915
4916 static void set_extent_invisible(EXTENT extent, Lisp_Object value)
4917 {
4918         if (!EQ(extent_invisible(extent), value)) {
4919                 set_extent_invisible_1(extent, value);
4920                 extent_changed_for_redisplay(extent, 1, 1);
4921         }
4922 }
4923
4924 /* This function does "memoization" -- similar to the interning
4925    that happens with symbols.  Given a list of faces, an equivalent
4926    list is returned such that if this function is called twice with
4927    input that is `equal', the resulting outputs will be `eq'.
4928
4929    Note that the inputs and outputs are in general *not* `equal' --
4930    faces in symbol form become actual face objects in the output.
4931    This is necessary so that temporary faces stay around. */
4932
4933 static Lisp_Object memoize_extent_face_internal(Lisp_Object list)
4934 {
4935         int len;
4936         int thelen;
4937         Lisp_Object cons, thecons;
4938         Lisp_Object oldtail, tail;
4939         struct gcpro gcpro1;
4940
4941         if (NILP(list))
4942                 return Qnil;
4943         if (!CONSP(list))
4944                 return Fget_face(list);
4945
4946         /* To do the memoization, we use a hash table mapping from
4947            external lists to internal lists.  We do `equal' comparisons
4948            on the keys so the memoization works correctly.
4949
4950            Note that we canonicalize things so that the keys in the
4951            hash table (the external lists) always contain symbols and
4952            the values (the internal lists) always contain face objects.
4953
4954            We also maintain a "reverse" table that maps from the internal
4955            lists to the external equivalents.  The idea here is twofold:
4956
4957            1) `extent-face' wants to return a list containing face symbols
4958            rather than face objects.
4959            2) We don't want things to get quite so messed up if the user
4960            maliciously side-effects the returned lists.
4961          */
4962
4963         len = XINT(Flength(list));
4964         thelen = XINT(Flength(Vextent_face_reusable_list));
4965         oldtail = Qnil;
4966         tail = Qnil;
4967         GCPRO1(oldtail);
4968
4969         /* We canonicalize the given list into another list.
4970            We try to avoid consing except when necessary, so we have
4971            a reusable list.
4972          */
4973
4974         if (thelen < len) {
4975                 cons = Vextent_face_reusable_list;
4976                 while (!NILP(XCDR(cons)))
4977                         cons = XCDR(cons);
4978                 XCDR(cons) = Fmake_list(make_int(len - thelen), Qnil);
4979         } else if (thelen > len) {
4980                 int i;
4981
4982                 /* Truncate the list temporarily so it's the right length;
4983                    remember the old tail. */
4984                 cons = Vextent_face_reusable_list;
4985                 for (i = 0; i < len - 1; i++)
4986                         cons = XCDR(cons);
4987                 tail = cons;
4988                 oldtail = XCDR(cons);
4989                 XCDR(cons) = Qnil;
4990         }
4991
4992         thecons = Vextent_face_reusable_list;
4993         EXTERNAL_LIST_LOOP(cons, list) {
4994                 Lisp_Object face = Fget_face(XCAR(cons));
4995
4996                 XCAR(thecons) = Fface_name(face);
4997                 thecons = XCDR(thecons);
4998         }
4999
5000         list =
5001             Fgethash(Vextent_face_reusable_list,
5002                      Vextent_face_memoize_hash_table, Qnil);
5003         if (NILP(list)) {
5004                 Lisp_Object symlist =
5005                     Fcopy_sequence(Vextent_face_reusable_list);
5006                 Lisp_Object facelist =
5007                     Fcopy_sequence(Vextent_face_reusable_list);
5008
5009                 LIST_LOOP(cons, facelist) {
5010                         XCAR(cons) = Fget_face(XCAR(cons));
5011                 }
5012                 Fputhash(symlist, facelist, Vextent_face_memoize_hash_table);
5013                 Fputhash(facelist, symlist,
5014                          Vextent_face_reverse_memoize_hash_table);
5015                 list = facelist;
5016         }
5017
5018         /* Now restore the truncated tail of the reusable list, if necessary. */
5019         if (!NILP(tail))
5020                 XCDR(tail) = oldtail;
5021
5022         UNGCPRO;
5023         return list;
5024 }
5025
5026 static Lisp_Object external_of_internal_memoized_face(Lisp_Object face)
5027 {
5028         if (NILP(face))
5029                 return Qnil;
5030         else if (!CONSP(face))
5031                 return XFACE(face)->name;
5032         else {
5033                 face = Fgethash(face, Vextent_face_reverse_memoize_hash_table,
5034                                 Qunbound);
5035                 assert(!UNBOUNDP(face));
5036                 return face;
5037         }
5038 }
5039
5040 static Lisp_Object
5041 canonicalize_extent_property(Lisp_Object prop, Lisp_Object value)
5042 {
5043         if (EQ(prop, Qface) || EQ(prop, Qmouse_face))
5044                 value = (external_of_internal_memoized_face
5045                          (memoize_extent_face_internal(value)));
5046         return value;
5047 }
5048
5049 /* Do we need a lisp-level function ? */
5050 DEFUN("set-extent-initial-redisplay-function", Fset_extent_initial_redisplay_function, 2, 2, 0, /*
5051 Note: This feature is experimental!
5052
5053 Set initial-redisplay-function of EXTENT to the function
5054 FUNCTION.
5055
5056 The first time the EXTENT is (re)displayed, an eval event will be
5057 dispatched calling FUNCTION with EXTENT as its only argument.
5058 */
5059       (extent, function))
5060 {
5061         EXTENT e = decode_extent(extent, DE_MUST_BE_ATTACHED);
5062
5063         e = extent_ancestor(e); /* Is this needed? Macro also does chasing! */
5064         set_extent_initial_redisplay_function(e, function);
5065         extent_in_red_event_p(e) = 0;   /* If the function changed we can spawn
5066                                            new events */
5067         extent_changed_for_redisplay(e, 1, 0);  /* Do we need to mark children too ? */
5068
5069         return function;
5070 }
5071
5072 DEFUN("extent-face", Fextent_face, 1, 1, 0,     /*
5073 Return the name of the face in which EXTENT is displayed, or nil
5074 if the extent's face is unspecified.  This might also return a list
5075 of face names.
5076 */
5077       (extent))
5078 {
5079         Lisp_Object face;
5080
5081         CHECK_EXTENT(extent);
5082         face = extent_face(XEXTENT(extent));
5083
5084         return external_of_internal_memoized_face(face);
5085 }
5086
5087 DEFUN("set-extent-face", Fset_extent_face, 2, 2, 0,     /*
5088 Make the given EXTENT have the graphic attributes specified by FACE.
5089 FACE can also be a list of faces, and all faces listed will apply,
5090 with faces earlier in the list taking priority over those later in the
5091 list.
5092 */
5093       (extent, face))
5094 {
5095         EXTENT e = decode_extent(extent, 0);
5096         Lisp_Object orig_face = face;
5097
5098         /* retrieve the ancestor for efficiency and proper redisplay noting. */
5099         e = extent_ancestor(e);
5100
5101         face = memoize_extent_face_internal(face);
5102
5103         extent_face(e) = face;
5104         extent_changed_for_redisplay(e, 1, 0);
5105
5106         return orig_face;
5107 }
5108
5109 DEFUN("extent-mouse-face", Fextent_mouse_face, 1, 1, 0, /*
5110 Return the face used to highlight EXTENT when the mouse passes over it.
5111 The return value will be a face name, a list of face names, or nil
5112 if the extent's mouse face is unspecified.
5113 */
5114       (extent))
5115 {
5116         Lisp_Object face;
5117
5118         CHECK_EXTENT(extent);
5119         face = extent_mouse_face(XEXTENT(extent));
5120
5121         return external_of_internal_memoized_face(face);
5122 }
5123
5124 DEFUN("set-extent-mouse-face", Fset_extent_mouse_face, 2, 2, 0, /*
5125 Set the face used to highlight EXTENT when the mouse passes over it.
5126 FACE can also be a list of faces, and all faces listed will apply,
5127 with faces earlier in the list taking priority over those later in the
5128 list.
5129 */
5130       (extent, face))
5131 {
5132         EXTENT e;
5133         Lisp_Object orig_face = face;
5134
5135         CHECK_EXTENT(extent);
5136         e = XEXTENT(extent);
5137         /* retrieve the ancestor for efficiency and proper redisplay noting. */
5138         e = extent_ancestor(e);
5139
5140         face = memoize_extent_face_internal(face);
5141
5142         set_extent_mouse_face(e, face);
5143         extent_changed_for_redisplay(e, 1, 0);
5144
5145         return orig_face;
5146 }
5147
5148 void
5149 set_extent_glyph(EXTENT extent, Lisp_Object glyph, int endp,
5150                  glyph_layout layout)
5151 {
5152         extent = extent_ancestor(extent);
5153
5154         if (!endp) {
5155                 set_extent_begin_glyph(extent, glyph);
5156                 extent_begin_glyph_layout(extent) = layout;
5157         } else {
5158                 set_extent_end_glyph(extent, glyph);
5159                 extent_end_glyph_layout(extent) = layout;
5160         }
5161
5162         extent_changed_for_redisplay(extent, 1, 0);
5163 }
5164
5165 static Lisp_Object glyph_layout_to_symbol(glyph_layout layout)
5166 {
5167         switch (layout) {
5168         case GL_TEXT:
5169                 return Qtext;
5170         case GL_OUTSIDE_MARGIN:
5171                 return Qoutside_margin;
5172         case GL_INSIDE_MARGIN:
5173                 return Qinside_margin;
5174         case GL_WHITESPACE:
5175                 return Qwhitespace;
5176         default:
5177                 abort();
5178                 return Qnil;    /* unreached */
5179         }
5180 }
5181
5182 static glyph_layout symbol_to_glyph_layout(Lisp_Object layout_obj)
5183 {
5184         if (NILP(layout_obj))
5185                 return GL_TEXT;
5186
5187         CHECK_SYMBOL(layout_obj);
5188         if (EQ(layout_obj, Qoutside_margin))
5189                 return GL_OUTSIDE_MARGIN;
5190         if (EQ(layout_obj, Qinside_margin))
5191                 return GL_INSIDE_MARGIN;
5192         if (EQ(layout_obj, Qwhitespace))
5193                 return GL_WHITESPACE;
5194         if (EQ(layout_obj, Qtext))
5195                 return GL_TEXT;
5196
5197         invalid_argument("Unknown glyph layout type", layout_obj);
5198         return GL_TEXT;         /* unreached */
5199 }
5200
5201 static Lisp_Object
5202 set_extent_glyph_1(Lisp_Object extent_obj, Lisp_Object glyph, int endp,
5203                    Lisp_Object layout_obj)
5204 {
5205         EXTENT extent = decode_extent(extent_obj, 0);
5206         glyph_layout layout = symbol_to_glyph_layout(layout_obj);
5207
5208         /* Make sure we've actually been given a valid glyph or it's nil
5209            (meaning we're deleting a glyph from an extent). */
5210         if (!NILP(glyph))
5211                 CHECK_BUFFER_GLYPH(glyph);
5212
5213         set_extent_glyph(extent, glyph, endp, layout);
5214         return glyph;
5215 }
5216
5217 DEFUN("set-extent-begin-glyph", Fset_extent_begin_glyph, 2, 3, 0,       /*
5218 Display a bitmap, subwindow or string at the beginning of EXTENT.
5219 BEGIN-GLYPH must be a glyph object.  The layout policy defaults to `text'.
5220 */
5221       (extent, begin_glyph, layout))
5222 {
5223         return set_extent_glyph_1(extent, begin_glyph, 0, layout);
5224 }
5225
5226 DEFUN("set-extent-end-glyph", Fset_extent_end_glyph, 2, 3, 0,   /*
5227 Display a bitmap, subwindow or string at the end of EXTENT.
5228 END-GLYPH must be a glyph object.  The layout policy defaults to `text'.
5229 */
5230       (extent, end_glyph, layout))
5231 {
5232         return set_extent_glyph_1(extent, end_glyph, 1, layout);
5233 }
5234
5235 DEFUN("extent-begin-glyph", Fextent_begin_glyph, 1, 1, 0,       /*
5236 Return the glyph object displayed at the beginning of EXTENT.
5237 If there is none, nil is returned.
5238 */
5239       (extent))
5240 {
5241         return extent_begin_glyph(decode_extent(extent, 0));
5242 }
5243
5244 DEFUN("extent-end-glyph", Fextent_end_glyph, 1, 1, 0,   /*
5245 Return the glyph object displayed at the end of EXTENT.
5246 If there is none, nil is returned.
5247 */
5248       (extent))
5249 {
5250         return extent_end_glyph(decode_extent(extent, 0));
5251 }
5252
5253 DEFUN("set-extent-begin-glyph-layout", Fset_extent_begin_glyph_layout, 2, 2, 0, /*
5254 Set the layout policy of EXTENT's begin glyph.
5255 Access this using the `extent-begin-glyph-layout' function.
5256 */
5257       (extent, layout))
5258 {
5259         EXTENT e = decode_extent(extent, 0);
5260         e = extent_ancestor(e);
5261         extent_begin_glyph_layout(e) = symbol_to_glyph_layout(layout);
5262         extent_maybe_changed_for_redisplay(e, 1, 0);
5263         return layout;
5264 }
5265
5266 DEFUN("set-extent-end-glyph-layout", Fset_extent_end_glyph_layout, 2, 2, 0,     /*
5267 Set the layout policy of EXTENT's end glyph.
5268 Access this using the `extent-end-glyph-layout' function.
5269 */
5270       (extent, layout))
5271 {
5272         EXTENT e = decode_extent(extent, 0);
5273         e = extent_ancestor(e);
5274         extent_end_glyph_layout(e) = symbol_to_glyph_layout(layout);
5275         extent_maybe_changed_for_redisplay(e, 1, 0);
5276         return layout;
5277 }
5278
5279 DEFUN("extent-begin-glyph-layout", Fextent_begin_glyph_layout, 1, 1, 0, /*
5280 Return the layout policy associated with EXTENT's begin glyph.
5281 Set this using the `set-extent-begin-glyph-layout' function.
5282 */
5283       (extent))
5284 {
5285         EXTENT e = decode_extent(extent, 0);
5286         return glyph_layout_to_symbol((glyph_layout)
5287                                       extent_begin_glyph_layout(e));
5288 }
5289
5290 DEFUN("extent-end-glyph-layout", Fextent_end_glyph_layout, 1, 1, 0,     /*
5291 Return the layout policy associated with EXTENT's end glyph.
5292 Set this using the `set-extent-end-glyph-layout' function.
5293 */
5294       (extent))
5295 {
5296         EXTENT e = decode_extent(extent, 0);
5297         return glyph_layout_to_symbol((glyph_layout)
5298                                       extent_end_glyph_layout(e));
5299 }
5300
5301 DEFUN("set-extent-priority", Fset_extent_priority, 2, 2, 0,     /*
5302 Set the display priority of EXTENT to PRIORITY (an integer).
5303 When the extent attributes are being merged for display, the priority
5304 is used to determine which extent takes precedence in the event of a
5305 conflict (two extents whose faces both specify font, for example: the
5306 font of the extent with the higher priority will be used).
5307 Extents are created with priority 0; priorities may be negative.
5308 */
5309       (extent, priority))
5310 {
5311         EXTENT e = decode_extent(extent, 0);
5312
5313         CHECK_INT(priority);
5314         e = extent_ancestor(e);
5315         set_extent_priority(e, XINT(priority));
5316         extent_maybe_changed_for_redisplay(e, 1, 0);
5317         return priority;
5318 }
5319
5320 DEFUN("extent-priority", Fextent_priority, 1, 1, 0,     /*
5321 Return the display priority of EXTENT; see `set-extent-priority'.
5322 */
5323       (extent))
5324 {
5325         EXTENT e = decode_extent(extent, 0);
5326         return make_int(extent_priority(e));
5327 }
5328
5329 DEFUN("set-extent-property", Fset_extent_property, 3, 3, 0,     /*
5330 Change a property of an extent.
5331 PROPERTY may be any symbol; the value stored may be accessed with
5332 the `extent-property' function.
5333 The following symbols have predefined meanings:
5334
5335 detached           Removes the extent from its buffer; setting this is
5336 the same as calling `detach-extent'.
5337
5338 destroyed          Removes the extent from its buffer, and makes it
5339 unusable in the future; this is the same calling
5340 `delete-extent'.
5341
5342 priority           Change redisplay priority; same as `set-extent-priority'.
5343
5344 start-open         Whether the set of characters within the extent is
5345 treated being open on the left, that is, whether
5346 the start position is an exclusive, rather than
5347 inclusive, boundary.  If true, then characters
5348 inserted exactly at the beginning of the extent
5349 will remain outside of the extent; otherwise they
5350 will go into the extent, extending it.
5351
5352 end-open           Whether the set of characters within the extent is
5353 treated being open on the right, that is, whether
5354 the end position is an exclusive, rather than
5355 inclusive, boundary.  If true, then characters
5356 inserted exactly at the end of the extent will
5357 remain outside of the extent; otherwise they will
5358 go into the extent, extending it.
5359
5360 By default, extents have the `end-open' but not the
5361 `start-open' property set.
5362
5363 read-only          Text within this extent will be unmodifiable.
5364
5365 initial-redisplay-function (EXPERIMENTAL)
5366 function to be called the first time (part of) the extent
5367 is redisplayed. It will be called with the extent as its
5368 first argument.
5369 Note: The function will not be called immediately
5370 during redisplay, an eval event will be dispatched.
5371
5372 detachable         Whether the extent gets detached (as with
5373 `detach-extent') when all the text within the
5374 extent is deleted.  This is true by default.  If
5375 this property is not set, the extent becomes a
5376 zero-length extent when its text is deleted. (In
5377 such a case, the `start-open' property is
5378 automatically removed if both the `start-open' and
5379 `end-open' properties are set, since zero-length
5380 extents open on both ends are not allowed.)
5381
5382 face               The face in which to display the text.  Setting
5383 this is the same as calling `set-extent-face'.
5384
5385 mouse-face          If non-nil, the extent will be highlighted in this
5386 face when the mouse moves over it.
5387
5388 pointer            If non-nil, and a valid pointer glyph, this specifies
5389 the shape of the mouse pointer while over the extent.
5390
5391 highlight          Obsolete: Setting this property is equivalent to
5392 setting a `mouse-face' property of `highlight'.
5393 Reading this property returns non-nil if
5394 the extent has a non-nil `mouse-face' property.
5395
5396 duplicable         Whether this extent should be copied into strings,
5397 so that kill, yank, and undo commands will restore
5398 or copy it.  `duplicable' extents are copied from
5399 an extent into a string when `buffer-substring' or
5400 a similar function creates a string.  The extents
5401 in a string are copied into other strings created
5402 from the string using `concat' or `substring'.
5403 When `insert' or a similar function inserts the
5404 string into a buffer, the extents are copied back
5405 into the buffer.
5406
5407 unique             Meaningful only in conjunction with `duplicable'.
5408 When this is set, there may be only one instance
5409 of this extent attached at a time: if it is copied
5410 to the kill ring and then yanked, the extent is
5411 not copied.  If, however, it is killed (removed
5412 from the buffer) and then yanked, it will be
5413 re-attached at the new position.
5414
5415 invisible          If the value is non-nil, text under this extent
5416 may be treated as not present for the purpose of
5417 redisplay, or may be displayed using an ellipsis
5418 or other marker; see `buffer-invisibility-spec'
5419 and `invisible-text-glyph'.  In all cases,
5420 however, the text is still visible to other
5421 functions that examine a buffer's text.
5422
5423 keymap             This keymap is consulted for mouse clicks on this
5424 extent, or keypresses made while point is within the
5425 extent.
5426
5427 copy-function      This is a hook that is run when a duplicable extent
5428 is about to be copied from a buffer to a string (or
5429 the kill ring).  It is called with three arguments,
5430 the extent, and the buffer-positions within it
5431 which are being copied.  If this function returns
5432 nil, then the extent will not be copied; otherwise
5433 it will.
5434
5435 paste-function     This is a hook that is run when a duplicable extent is
5436 about to be copied from a string (or the kill ring)
5437 into a buffer.  It is called with three arguments,
5438 the original extent, and the buffer positions which
5439 the copied extent will occupy.  (This hook is run
5440 after the corresponding text has already been
5441 inserted into the buffer.)  Note that the extent
5442 argument may be detached when this function is run.
5443 If this function returns nil, no extent will be
5444 inserted.  Otherwise, there will be an extent
5445 covering the range in question.
5446
5447 If the original extent is not attached to a buffer,
5448 then it will be re-attached at this range.
5449 Otherwise, a copy will be made, and that copy
5450 attached here.
5451
5452 The copy-function and paste-function are meaningful
5453 only for extents with the `duplicable' flag set,
5454 and if they are not specified, behave as if `t' was
5455 the returned value.  When these hooks are invoked,
5456 the current buffer is the buffer which the extent
5457 is being copied from/to, respectively.
5458
5459 begin-glyph        A glyph to be displayed at the beginning of the extent,
5460 or nil.
5461
5462 end-glyph          A glyph to be displayed at the end of the extent,
5463 or nil.
5464
5465 begin-glyph-layout The layout policy (one of `text', `whitespace',
5466 `inside-margin', or `outside-margin') of the extent's
5467 begin glyph.
5468
5469 end-glyph-layout   The layout policy of the extent's end glyph.
5470
5471 syntax-table       A cons or a syntax table object.  If a cons, the car must
5472 be an integer (interpreted as a syntax code, applicable to
5473 all characters in the extent).  Otherwise, syntax of
5474 characters in the extent is looked up in the syntax table.
5475 You should use the text property API to manipulate this
5476 property.  (This may be required in the future.)
5477 */
5478       (extent, property, value))
5479 {
5480         /* This function can GC if property is `keymap' */
5481         EXTENT e = decode_extent(extent, 0);
5482
5483         if (EQ(property, Qread_only))
5484                 set_extent_read_only(e, value);
5485         else if (EQ(property, Qunique))
5486                 extent_unique_p(e) = !NILP(value);
5487         else if (EQ(property, Qduplicable))
5488                 extent_duplicable_p(e) = !NILP(value);
5489         else if (EQ(property, Qinvisible))
5490                 set_extent_invisible(e, value);
5491         else if (EQ(property, Qdetachable))
5492                 extent_detachable_p(e) = !NILP(value);
5493
5494         else if (EQ(property, Qdetached)) {
5495                 if (NILP(value))
5496                         error("can only set `detached' to t");
5497                 Fdetach_extent(extent);
5498         } else if (EQ(property, Qdestroyed)) {
5499                 if (NILP(value))
5500                         error("can only set `destroyed' to t");
5501                 Fdelete_extent(extent);
5502         } else if (EQ(property, Qpriority))
5503                 Fset_extent_priority(extent, value);
5504         else if (EQ(property, Qface))
5505                 Fset_extent_face(extent, value);
5506         else if (EQ(property, Qinitial_redisplay_function))
5507                 Fset_extent_initial_redisplay_function(extent, value);
5508         else if (EQ(property, Qbefore_change_functions))
5509                 set_extent_before_change_functions(e, value);
5510         else if (EQ(property, Qafter_change_functions))
5511                 set_extent_after_change_functions(e, value);
5512         else if (EQ(property, Qmouse_face))
5513                 Fset_extent_mouse_face(extent, value);
5514         /* Obsolete: */
5515         else if (EQ(property, Qhighlight))
5516                 Fset_extent_mouse_face(extent, Qhighlight);
5517         else if (EQ(property, Qbegin_glyph_layout))
5518                 Fset_extent_begin_glyph_layout(extent, value);
5519         else if (EQ(property, Qend_glyph_layout))
5520                 Fset_extent_end_glyph_layout(extent, value);
5521         /* For backwards compatibility.  We use begin glyph because it is by
5522            far the more used of the two. */
5523         else if (EQ(property, Qglyph_layout))
5524                 Fset_extent_begin_glyph_layout(extent, value);
5525         else if (EQ(property, Qbegin_glyph))
5526                 Fset_extent_begin_glyph(extent, value, Qnil);
5527         else if (EQ(property, Qend_glyph))
5528                 Fset_extent_end_glyph(extent, value, Qnil);
5529         else if (EQ(property, Qstart_open))
5530                 set_extent_openness(e, !NILP(value), -1);
5531         else if (EQ(property, Qend_open))
5532                 set_extent_openness(e, -1, !NILP(value));
5533         /* Support (but don't document...) the obvious *_closed antonyms. */
5534         else if (EQ(property, Qstart_closed))
5535                 set_extent_openness(e, NILP(value), -1);
5536         else if (EQ(property, Qend_closed))
5537                 set_extent_openness(e, -1, NILP(value));
5538         else {
5539                 if (EQ(property, Qkeymap))
5540                         while (!NILP(value) && NILP(Fkeymapp(value)))
5541                                 value = wrong_type_argument(Qkeymapp, value);
5542
5543                 external_plist_put(extent_plist_addr(e), property, value, 0,
5544                                    ERROR_ME);
5545         }
5546
5547         return value;
5548 }
5549
5550 DEFUN("set-extent-properties", Fset_extent_properties, 2, 2, 0, /*
5551 Change some properties of EXTENT.
5552 PLIST is a property list.
5553 For a list of built-in properties, see `set-extent-property'.
5554 */
5555       (extent, plist))
5556 {
5557         /* This function can GC, if one of the properties is `keymap' */
5558         Lisp_Object property, value;
5559         struct gcpro gcpro1;
5560         GCPRO1(plist);
5561
5562         plist = Fcopy_sequence(plist);
5563         Fcanonicalize_plist(plist, Qnil);
5564
5565         while (!NILP(plist)) {
5566                 property = Fcar(plist);
5567                 plist = Fcdr(plist);
5568                 value = Fcar(plist);
5569                 plist = Fcdr(plist);
5570                 Fset_extent_property(extent, property, value);
5571         }
5572         UNGCPRO;
5573         return Qnil;
5574 }
5575
5576 DEFUN("extent-property", Fextent_property, 2, 3, 0,     /*
5577 Return EXTENT's value for property PROPERTY.
5578 If no such property exists, DEFAULT is returned.
5579 See `set-extent-property' for the built-in property names.
5580 */
5581       (extent, property, default_))
5582 {
5583         EXTENT e = decode_extent(extent, 0);
5584
5585         if (EQ(property, Qdetached))
5586                 return extent_detached_p(e) ? Qt : Qnil;
5587         else if (EQ(property, Qdestroyed))
5588                 return !EXTENT_LIVE_P(e) ? Qt : Qnil;
5589         else if (EQ(property, Qstart_open))
5590                 return extent_normal_field(e, start_open) ? Qt : Qnil;
5591         else if (EQ(property, Qend_open))
5592                 return extent_normal_field(e, end_open) ? Qt : Qnil;
5593         else if (EQ(property, Qunique))
5594                 return extent_normal_field(e, unique) ? Qt : Qnil;
5595         else if (EQ(property, Qduplicable))
5596                 return extent_normal_field(e, duplicable) ? Qt : Qnil;
5597         else if (EQ(property, Qdetachable))
5598                 return extent_normal_field(e, detachable) ? Qt : Qnil;
5599         /* Support (but don't document...) the obvious *_closed antonyms. */
5600         else if (EQ(property, Qstart_closed))
5601                 return extent_start_open_p(e) ? Qnil : Qt;
5602         else if (EQ(property, Qend_closed))
5603                 return extent_end_open_p(e) ? Qnil : Qt;
5604         else if (EQ(property, Qpriority))
5605                 return make_int(extent_priority(e));
5606         else if (EQ(property, Qread_only))
5607                 return extent_read_only(e);
5608         else if (EQ(property, Qinvisible))
5609                 return extent_invisible(e);
5610         else if (EQ(property, Qface))
5611                 return Fextent_face(extent);
5612         else if (EQ(property, Qinitial_redisplay_function))
5613                 return extent_initial_redisplay_function(e);
5614         else if (EQ(property, Qbefore_change_functions))
5615                 return extent_before_change_functions(e);
5616         else if (EQ(property, Qafter_change_functions))
5617                 return extent_after_change_functions(e);
5618         else if (EQ(property, Qmouse_face))
5619                 return Fextent_mouse_face(extent);
5620         /* Obsolete: */
5621         else if (EQ(property, Qhighlight))
5622                 return !NILP(Fextent_mouse_face(extent)) ? Qt : Qnil;
5623         else if (EQ(property, Qbegin_glyph_layout))
5624                 return Fextent_begin_glyph_layout(extent);
5625         else if (EQ(property, Qend_glyph_layout))
5626                 return Fextent_end_glyph_layout(extent);
5627         /* For backwards compatibility.  We use begin glyph because it is by
5628            far the more used of the two. */
5629         else if (EQ(property, Qglyph_layout))
5630                 return Fextent_begin_glyph_layout(extent);
5631         else if (EQ(property, Qbegin_glyph))
5632                 return extent_begin_glyph(e);
5633         else if (EQ(property, Qend_glyph))
5634                 return extent_end_glyph(e);
5635         else {
5636                 Lisp_Object value = external_plist_get(extent_plist_addr(e),
5637                                                        property, 0, ERROR_ME);
5638                 return UNBOUNDP(value) ? default_ : value;
5639         }
5640 }
5641
5642 DEFUN("extent-properties", Fextent_properties, 1, 1, 0, /*
5643 Return a property list of the attributes of EXTENT.
5644 Do not modify this list; use `set-extent-property' instead.
5645 */
5646       (extent))
5647 {
5648         EXTENT e, anc;
5649         Lisp_Object result, face, anc_obj;
5650         glyph_layout layout;
5651
5652         CHECK_EXTENT(extent);
5653         e = XEXTENT(extent);
5654         if (!EXTENT_LIVE_P(e))
5655                 return cons3(Qdestroyed, Qt, Qnil);
5656
5657         anc = extent_ancestor(e);
5658         XSETEXTENT(anc_obj, anc);
5659
5660         /* For efficiency, use the ancestor for all properties except detached */
5661
5662         result = extent_plist_slot(anc);
5663
5664         if (!NILP(face = Fextent_face(anc_obj)))
5665                 result = cons3(Qface, face, result);
5666
5667         if (!NILP(face = Fextent_mouse_face(anc_obj)))
5668                 result = cons3(Qmouse_face, face, result);
5669
5670         if ((layout = (glyph_layout) extent_begin_glyph_layout(anc)) != GL_TEXT) {
5671                 Lisp_Object sym = glyph_layout_to_symbol(layout);
5672                 result = cons3(Qglyph_layout, sym, result);     /* compatibility */
5673                 result = cons3(Qbegin_glyph_layout, sym, result);
5674         }
5675
5676         if ((layout = (glyph_layout) extent_end_glyph_layout(anc)) != GL_TEXT)
5677                 result =
5678                     cons3(Qend_glyph_layout, glyph_layout_to_symbol(layout),
5679                           result);
5680
5681         if (!NILP(extent_end_glyph(anc)))
5682                 result = cons3(Qend_glyph, extent_end_glyph(anc), result);
5683
5684         if (!NILP(extent_begin_glyph(anc)))
5685                 result = cons3(Qbegin_glyph, extent_begin_glyph(anc), result);
5686
5687         if (extent_priority(anc) != 0)
5688                 result =
5689                     cons3(Qpriority, make_int(extent_priority(anc)), result);
5690
5691         if (!NILP(extent_initial_redisplay_function(anc)))
5692                 result = cons3(Qinitial_redisplay_function,
5693                                extent_initial_redisplay_function(anc), result);
5694
5695         if (!NILP(extent_before_change_functions(anc)))
5696                 result = cons3(Qbefore_change_functions,
5697                                extent_before_change_functions(anc), result);
5698
5699         if (!NILP(extent_after_change_functions(anc)))
5700                 result = cons3(Qafter_change_functions,
5701                                extent_after_change_functions(anc), result);
5702
5703         if (!NILP(extent_invisible(anc)))
5704                 result = cons3(Qinvisible, extent_invisible(anc), result);
5705
5706         if (!NILP(extent_read_only(anc)))
5707                 result = cons3(Qread_only, extent_read_only(anc), result);
5708
5709         if (extent_normal_field(anc, end_open))
5710                 result = cons3(Qend_open, Qt, result);
5711
5712         if (extent_normal_field(anc, start_open))
5713                 result = cons3(Qstart_open, Qt, result);
5714
5715         if (extent_normal_field(anc, detachable))
5716                 result = cons3(Qdetachable, Qt, result);
5717
5718         if (extent_normal_field(anc, duplicable))
5719                 result = cons3(Qduplicable, Qt, result);
5720
5721         if (extent_normal_field(anc, unique))
5722                 result = cons3(Qunique, Qt, result);
5723
5724         /* detached is not an inherited property */
5725         if (extent_detached_p(e))
5726                 result = cons3(Qdetached, Qt, result);
5727
5728         return result;
5729 }
5730 \f
5731 /************************************************************************/
5732 /*                           highlighting                               */
5733 /************************************************************************/
5734
5735 /* The display code looks into the Vlast_highlighted_extent variable to
5736    correctly display highlighted extents.  This updates that variable,
5737    and marks the appropriate buffers as needing some redisplay.
5738  */
5739 static void do_highlight(Lisp_Object extent_obj, int highlight_p)
5740 {
5741         if ((highlight_p && (EQ(Vlast_highlighted_extent, extent_obj))) ||
5742             (!highlight_p && (EQ(Vlast_highlighted_extent, Qnil))))
5743                 return;
5744         if (EXTENTP(Vlast_highlighted_extent) &&
5745             EXTENT_LIVE_P(XEXTENT(Vlast_highlighted_extent))) {
5746                 /* do not recurse on descendants.  Only one extent is highlighted
5747                    at a time. */
5748                 extent_changed_for_redisplay(XEXTENT(Vlast_highlighted_extent),
5749                                              0, 0);
5750         }
5751         Vlast_highlighted_extent = Qnil;
5752         if (!NILP(extent_obj)
5753             && BUFFERP(extent_object(XEXTENT(extent_obj)))
5754             && highlight_p) {
5755                 extent_changed_for_redisplay(XEXTENT(extent_obj), 0, 0);
5756                 Vlast_highlighted_extent = extent_obj;
5757         }
5758 }
5759
5760 DEFUN("force-highlight-extent", Fforce_highlight_extent, 1, 2, 0,       /*
5761 Highlight or unhighlight the given extent.
5762 If the second arg is non-nil, it will be highlighted, else dehighlighted.
5763 This is the same as `highlight-extent', except that it will work even
5764 on extents without the `mouse-face' property.
5765 */
5766       (extent, highlight_p))
5767 {
5768         if (NILP(extent))
5769                 highlight_p = Qnil;
5770         else
5771                 XSETEXTENT(extent, decode_extent(extent, DE_MUST_BE_ATTACHED));
5772         do_highlight(extent, !NILP(highlight_p));
5773         return Qnil;
5774 }
5775
5776 DEFUN("highlight-extent", Fhighlight_extent, 1, 2, 0,   /*
5777 Highlight EXTENT, if it is highlightable.
5778 \(that is, if it has the `mouse-face' property).
5779 If the second arg is non-nil, it will be highlighted, else dehighlighted.
5780 Highlighted extents are displayed as if they were merged with the face
5781 or faces specified by the `mouse-face' property.
5782 */
5783       (extent, highlight_p))
5784 {
5785         if (EXTENTP(extent) && NILP(extent_mouse_face(XEXTENT(extent))))
5786                 return Qnil;
5787         else
5788                 return Fforce_highlight_extent(extent, highlight_p);
5789 }
5790 \f
5791 /************************************************************************/
5792 /*                         strings and extents                          */
5793 /************************************************************************/
5794
5795 /* copy/paste hooks */
5796
5797 static int
5798 run_extent_copy_paste_internal(EXTENT e, Bufpos from, Bufpos to,
5799                                Lisp_Object object, Lisp_Object prop)
5800 {
5801         /* This function can GC */
5802         Lisp_Object extent;
5803         Lisp_Object copy_fn;
5804         XSETEXTENT(extent, e);
5805         copy_fn = Fextent_property(extent, prop, Qnil);
5806         if (!NILP(copy_fn)) {
5807                 Lisp_Object flag;
5808                 struct gcpro gcpro1, gcpro2, gcpro3;
5809                 GCPRO3(extent, copy_fn, object);
5810                 if (BUFFERP(object))
5811                         flag = call3_in_buffer(XBUFFER(object), copy_fn, extent,
5812                                                make_int(from), make_int(to));
5813                 else
5814                         flag =
5815                             call3(copy_fn, extent, make_int(from),
5816                                   make_int(to));
5817                 UNGCPRO;
5818                 if (NILP(flag) || !EXTENT_LIVE_P(XEXTENT(extent)))
5819                         return 0;
5820         }
5821         return 1;
5822 }
5823
5824 static int run_extent_copy_function(EXTENT e, Bytind from, Bytind to)
5825 {
5826         Lisp_Object object = extent_object(e);
5827         /* This function can GC */
5828         return run_extent_copy_paste_internal
5829             (e, buffer_or_string_bytind_to_bufpos(object, from),
5830              buffer_or_string_bytind_to_bufpos(object, to), object,
5831              Qcopy_function);
5832 }
5833
5834 static int
5835 run_extent_paste_function(EXTENT e, Bytind from, Bytind to, Lisp_Object object)
5836 {
5837         /* This function can GC */
5838         return run_extent_copy_paste_internal
5839             (e, buffer_or_string_bytind_to_bufpos(object, from),
5840              buffer_or_string_bytind_to_bufpos(object, to), object,
5841              Qpaste_function);
5842 }
5843
5844 static void update_extent(EXTENT extent, Bytind from, Bytind to)
5845 {
5846         set_extent_endpoints(extent, from, to, Qnil);
5847 }
5848
5849 /* Insert an extent, usually from the dup_list of a string which
5850    has just been inserted.
5851    This code does not handle the case of undo.
5852    */
5853 static Lisp_Object
5854 insert_extent(EXTENT extent, Bytind new_start, Bytind new_end,
5855               Lisp_Object object, int run_hooks)
5856 {
5857         /* This function can GC */
5858         Lisp_Object tmp;
5859
5860         if (!EQ(extent_object(extent), object))
5861                 goto copy_it;
5862
5863         if (extent_detached_p(extent)) {
5864                 if (run_hooks &&
5865                     !run_extent_paste_function(extent, new_start, new_end,
5866                                                object))
5867                         /* The paste-function said don't re-attach this extent here. */
5868                         return Qnil;
5869                 else
5870                         update_extent(extent, new_start, new_end);
5871         } else {
5872                 Bytind exstart = extent_endpoint_bytind(extent, 0);
5873                 Bytind exend = extent_endpoint_bytind(extent, 1);
5874
5875                 if (exend < new_start || exstart > new_end)
5876                         goto copy_it;
5877                 else {
5878                         new_start = min(exstart, new_start);
5879                         new_end = max(exend, new_end);
5880                         if (exstart != new_start || exend != new_end)
5881                                 update_extent(extent, new_start, new_end);
5882                 }
5883         }
5884
5885         XSETEXTENT(tmp, extent);
5886         return tmp;
5887
5888       copy_it:
5889         if (run_hooks &&
5890             !run_extent_paste_function(extent, new_start, new_end, object))
5891                 /* The paste-function said don't attach a copy of the extent here. */
5892                 return Qnil;
5893         else {
5894                 XSETEXTENT(tmp,
5895                            copy_extent(extent, new_start, new_end, object));
5896                 return tmp;
5897         }
5898 }
5899
5900 DEFUN("insert-extent", Finsert_extent, 1, 5, 0, /*
5901 Insert EXTENT from START to END in BUFFER-OR-STRING.
5902 BUFFER-OR-STRING defaults to the current buffer if omitted.
5903 This operation does not insert any characters,
5904 but otherwise acts as if there were a replicating extent whose
5905 parent is EXTENT in some string that was just inserted.
5906 Returns the newly-inserted extent.
5907 The fourth arg, NO-HOOKS, can be used to inhibit the running of the
5908 extent's `paste-function' property if it has one.
5909 See documentation on `detach-extent' for a discussion of undo recording.
5910 */
5911       (extent, start, end, no_hooks, buffer_or_string))
5912 {
5913         EXTENT ext = decode_extent(extent, 0);
5914         Lisp_Object copy;
5915         Bytind s, e;
5916
5917         buffer_or_string = decode_buffer_or_string(buffer_or_string);
5918         get_buffer_or_string_range_byte(buffer_or_string, start, end, &s, &e,
5919                                         GB_ALLOW_PAST_ACCESSIBLE);
5920
5921         copy = insert_extent(ext, s, e, buffer_or_string, NILP(no_hooks));
5922         if (EXTENTP(copy)) {
5923                 if (extent_duplicable_p(XEXTENT(copy)))
5924                         record_extent(copy, 1);
5925         }
5926         return copy;
5927 }
5928 \f
5929 /* adding buffer extents to a string */
5930
5931 struct add_string_extents_arg {
5932         Bytind from;
5933         Bytecount length;
5934         Lisp_Object string;
5935 };
5936
5937 static int add_string_extents_mapper(EXTENT extent, void *arg)
5938 {
5939         /* This function can GC */
5940         struct add_string_extents_arg *closure =
5941             (struct add_string_extents_arg *)arg;
5942         Bytecount start = extent_endpoint_bytind(extent, 0) - closure->from;
5943         Bytecount end = extent_endpoint_bytind(extent, 1) - closure->from;
5944
5945         if (extent_duplicable_p(extent)) {
5946                 start = max(start, 0);
5947                 end = min(end, closure->length);
5948
5949                 /* Run the copy-function to give an extent the option of
5950                    not being copied into the string (or kill ring).
5951                  */
5952                 if (extent_duplicable_p(extent) &&
5953                     !run_extent_copy_function(extent, start + closure->from,
5954                                               end + closure->from))
5955                         return 0;
5956                 copy_extent(extent, start, end, closure->string);
5957         }
5958
5959         return 0;
5960 }
5961
5962 /* Add the extents in buffer BUF from OPOINT to OPOINT+LENGTH to
5963    the string STRING. */
5964 void
5965 add_string_extents(Lisp_Object string, struct buffer *buf, Bytind opoint,
5966                    Bytecount length)
5967 {
5968         /* This function can GC */
5969         struct add_string_extents_arg closure;
5970         struct gcpro gcpro1, gcpro2;
5971         Lisp_Object buffer;
5972
5973         closure.from = opoint;
5974         closure.length = length;
5975         closure.string = string;
5976         buffer = make_buffer(buf);
5977         GCPRO2(buffer, string);
5978         map_extents_bytind(opoint, opoint + length, add_string_extents_mapper,
5979                            (void *)&closure, buffer, 0,
5980                            /* ignore extents that just abut the region */
5981                            ME_END_CLOSED | ME_ALL_EXTENTS_OPEN |
5982                            /* we are calling E-Lisp (the extent's copy function)
5983                               so anything might happen */
5984                            ME_MIGHT_CALL_ELISP);
5985         UNGCPRO;
5986 }
5987
5988 struct splice_in_string_extents_arg {
5989         Bytecount pos;
5990         Bytecount length;
5991         Bytind opoint;
5992         Lisp_Object buffer;
5993 };
5994
5995 static int splice_in_string_extents_mapper(EXTENT extent, void *arg)
5996 {
5997         /* This function can GC */
5998         struct splice_in_string_extents_arg *closure =
5999             (struct splice_in_string_extents_arg *)arg;
6000         /* BASE_START and BASE_END are the limits in the buffer of the string
6001            that was just inserted.
6002
6003            NEW_START and NEW_END are the prospective buffer positions of the
6004            extent that is going into the buffer. */
6005         Bytind base_start = closure->opoint;
6006         Bytind base_end = base_start + closure->length;
6007         Bytind new_start = (base_start + extent_endpoint_bytind(extent, 0) -
6008                             closure->pos);
6009         Bytind new_end = (base_start + extent_endpoint_bytind(extent, 1) -
6010                           closure->pos);
6011
6012         if (new_start < base_start)
6013                 new_start = base_start;
6014         if (new_end > base_end)
6015                 new_end = base_end;
6016         if (new_end <= new_start)
6017                 return 0;
6018
6019         if (!extent_duplicable_p(extent))
6020                 return 0;
6021
6022         if (!inside_undo &&
6023             !run_extent_paste_function(extent, new_start, new_end,
6024                                        closure->buffer))
6025                 return 0;
6026         copy_extent(extent, new_start, new_end, closure->buffer);
6027
6028         return 0;
6029 }
6030
6031 /* We have just inserted a section of STRING (starting at POS, of
6032    length LENGTH) into buffer BUF at OPOINT.  Do whatever is necessary
6033    to get the string's extents into the buffer. */
6034
6035 void
6036 splice_in_string_extents(Lisp_Object string, struct buffer *buf,
6037                          Bytind opoint, Bytecount length, Bytecount pos)
6038 {
6039         struct splice_in_string_extents_arg closure;
6040         struct gcpro gcpro1, gcpro2;
6041         Lisp_Object buffer;
6042
6043         buffer = make_buffer(buf);
6044         closure.opoint = opoint;
6045         closure.pos = pos;
6046         closure.length = length;
6047         closure.buffer = buffer;
6048         GCPRO2(buffer, string);
6049         map_extents_bytind(pos, pos + length,
6050                            splice_in_string_extents_mapper,
6051                            (void *)&closure, string, 0,
6052                            /* ignore extents that just abut the region */
6053                            ME_END_CLOSED | ME_ALL_EXTENTS_OPEN |
6054                            /* we are calling E-Lisp (the extent's copy function)
6055                               so anything might happen */
6056                            ME_MIGHT_CALL_ELISP);
6057         UNGCPRO;
6058 }
6059
6060 struct copy_string_extents_arg {
6061         Bytecount new_pos;
6062         Bytecount old_pos;
6063         Bytecount length;
6064         Lisp_Object new_string;
6065 };
6066
6067 struct copy_string_extents_1_arg {
6068         Lisp_Object parent_in_question;
6069         EXTENT found_extent;
6070 };
6071
6072 static int copy_string_extents_mapper(EXTENT extent, void *arg)
6073 {
6074         struct copy_string_extents_arg *closure =
6075             (struct copy_string_extents_arg *)arg;
6076         Bytecount old_start, old_end, new_start, new_end;
6077
6078         old_start = extent_endpoint_bytind(extent, 0);
6079         old_end = extent_endpoint_bytind(extent, 1);
6080
6081         old_start = max(closure->old_pos, old_start);
6082         old_end = min(closure->old_pos + closure->length, old_end);
6083
6084         if (old_start >= old_end)
6085                 return 0;
6086
6087         new_start = old_start + closure->new_pos - closure->old_pos;
6088         new_end = old_end + closure->new_pos - closure->old_pos;
6089
6090         copy_extent(extent, new_start, new_end, closure->new_string);
6091         return 0;
6092 }
6093
6094 /* The string NEW_STRING was partially constructed from OLD_STRING.
6095    In particular, the section of length LEN starting at NEW_POS in
6096    NEW_STRING came from the section of the same length starting at
6097    OLD_POS in OLD_STRING.  Copy the extents as appropriate. */
6098
6099 void
6100 copy_string_extents(Lisp_Object new_string, Lisp_Object old_string,
6101                     Bytecount new_pos, Bytecount old_pos, Bytecount length)
6102 {
6103         struct copy_string_extents_arg closure;
6104         struct gcpro gcpro1, gcpro2;
6105
6106         closure.new_pos = new_pos;
6107         closure.old_pos = old_pos;
6108         closure.new_string = new_string;
6109         closure.length = length;
6110         GCPRO2(new_string, old_string);
6111         map_extents_bytind(old_pos, old_pos + length,
6112                            copy_string_extents_mapper,
6113                            (void *)&closure, old_string, 0,
6114                            /* ignore extents that just abut the region */
6115                            ME_END_CLOSED | ME_ALL_EXTENTS_OPEN |
6116                            /* we are calling E-Lisp (the extent's copy function)
6117                               so anything might happen */
6118                            ME_MIGHT_CALL_ELISP);
6119         UNGCPRO;
6120 }
6121
6122 /* Checklist for sanity checking:
6123    - {kill, yank, copy} at {open, closed} {start, end} of {writable, read-only} extent
6124    - {kill, copy} & yank {once, repeatedly} duplicable extent in {same, different} buffer
6125  */
6126 \f
6127 /************************************************************************/
6128 /*                              text properties                         */
6129 /************************************************************************/
6130
6131 /* Text properties
6132    Originally this stuff was implemented in lisp (all of the functionality
6133    exists to make that possible) but speed was a problem.
6134  */
6135
6136 Lisp_Object Qtext_prop;
6137 Lisp_Object Qtext_prop_extent_paste_function;
6138
6139 static Lisp_Object
6140 get_text_property_bytind(Bytind position, Lisp_Object prop,
6141                          Lisp_Object object, enum extent_at_flag fl,
6142                          int text_props_only)
6143 {
6144         Lisp_Object extent;
6145
6146         /* text_props_only specifies whether we only consider text-property
6147            extents (those with the 'text-prop property set) or all extents. */
6148         if (!text_props_only)
6149                 extent = extent_at_bytind(position, object, prop, 0, fl, 0);
6150         else {
6151                 EXTENT prior = 0;
6152                 while (1) {
6153                         extent =
6154                             extent_at_bytind(position, object, Qtext_prop,
6155                                              prior, fl, 0);
6156                         if (NILP(extent))
6157                                 return Qnil;
6158                         if (EQ
6159                             (prop, Fextent_property(extent, Qtext_prop, Qnil)))
6160                                 break;
6161                         prior = XEXTENT(extent);
6162                 }
6163         }
6164
6165         if (!NILP(extent))
6166                 return Fextent_property(extent, prop, Qnil);
6167         if (!NILP(Vdefault_text_properties))
6168                 return Fplist_get(Vdefault_text_properties, prop, Qnil);
6169         return Qnil;
6170 }
6171
6172 static Lisp_Object
6173 get_text_property_1(Lisp_Object pos, Lisp_Object prop, Lisp_Object object,
6174                     Lisp_Object at_flag, int text_props_only)
6175 {
6176         Bytind position;
6177         int invert = 0;
6178
6179         object = decode_buffer_or_string(object);
6180         position =
6181             get_buffer_or_string_pos_byte(object, pos, GB_NO_ERROR_IF_BAD);
6182
6183         /* We canonicalize the start/end-open/closed properties to the
6184            non-default version -- "adding" the default property really
6185            needs to remove the non-default one.  See below for more
6186            on this. */
6187         if (EQ(prop, Qstart_closed)) {
6188                 prop = Qstart_open;
6189                 invert = 1;
6190         }
6191
6192         if (EQ(prop, Qend_open)) {
6193                 prop = Qend_closed;
6194                 invert = 1;
6195         }
6196
6197         {
6198                 Lisp_Object val =
6199                     get_text_property_bytind(position, prop, object,
6200                                              decode_extent_at_flag(at_flag),
6201                                              text_props_only);
6202                 if (invert)
6203                         val = NILP(val) ? Qt : Qnil;
6204                 return val;
6205         }
6206 }
6207
6208 DEFUN("get-text-property", Fget_text_property, 2, 4, 0, /*
6209 Return the value of the PROP property at the given position.
6210 Optional arg OBJECT specifies the buffer or string to look in, and
6211 defaults to the current buffer.
6212 Optional arg AT-FLAG controls what it means for a property to be "at"
6213 a position, and has the same meaning as in `extent-at'.
6214 This examines only those properties added with `put-text-property'.
6215 See also `get-char-property'.
6216 */
6217       (pos, prop, object, at_flag))
6218 {
6219         return get_text_property_1(pos, prop, object, at_flag, 1);
6220 }
6221
6222 DEFUN("get-char-property", Fget_char_property, 2, 4, 0, /*
6223 Return the value of the PROP property at the given position.
6224 Optional arg OBJECT specifies the buffer or string to look in, and
6225 defaults to the current buffer.
6226 Optional arg AT-FLAG controls what it means for a property to be "at"
6227 a position, and has the same meaning as in `extent-at'.
6228 This examines properties on all extents.
6229 See also `get-text-property'.
6230 */
6231       (pos, prop, object, at_flag))
6232 {
6233         return get_text_property_1(pos, prop, object, at_flag, 0);
6234 }
6235
6236 /* About start/end-open/closed:
6237
6238    These properties have to be handled specially because of their
6239    strange behavior.  If I put the "start-open" property on a region,
6240    then *all* text-property extents in the region have to have their
6241    start be open.  This is unlike all other properties, which don't
6242    affect the extents of text properties other than their own.
6243
6244    So:
6245
6246    1) We have to map start-closed to (not start-open) and end-open
6247       to (not end-closed) -- i.e. adding the default is really the
6248       same as remove the non-default property.  It won't work, for
6249       example, to have both "start-open" and "start-closed" on
6250       the same region.
6251    2) Whenever we add one of these properties, we go through all
6252       text-property extents in the region and set the appropriate
6253       open/closedness on them.
6254    3) Whenever we change a text-property extent for a property,
6255       we have to make sure we set the open/closedness properly.
6256
6257       (2) and (3) together rely on, and maintain, the invariant
6258       that the open/closedness of text-property extents is correct
6259       at the beginning and end of each operation.
6260    */
6261
6262 struct put_text_prop_arg {
6263         Lisp_Object prop, value;        /* The property and value we are storing */
6264         Bytind start, end;      /* The region into which we are storing it */
6265         Lisp_Object object;
6266         Lisp_Object the_extent; /* Our chosen extent; this is used for
6267                                    communication between subsequent passes. */
6268         int changed_p;          /* Output: whether we have modified anything */
6269 };
6270
6271 static int put_text_prop_mapper(EXTENT e, void *arg)
6272 {
6273         struct put_text_prop_arg *closure = (struct put_text_prop_arg *)arg;
6274
6275         Lisp_Object object = closure->object;
6276         Lisp_Object value = closure->value;
6277         Bytind e_start, e_end;
6278         Bytind start = closure->start;
6279         Bytind end = closure->end;
6280         Lisp_Object extent, e_val;
6281         int is_eq;
6282
6283         XSETEXTENT(extent, e);
6284
6285         /* Note: in some cases when the property itself is 'start-open
6286            or 'end-closed, the checks to set the openness may do a bit
6287            of extra work; but it won't hurt because we then fix up the
6288            openness later on in put_text_prop_openness_mapper(). */
6289         if (!EQ(Fextent_property(extent, Qtext_prop, Qnil), closure->prop))
6290                 /* It's not for this property; do nothing. */
6291                 return 0;
6292
6293         e_start = extent_endpoint_bytind(e, 0);
6294         e_end = extent_endpoint_bytind(e, 1);
6295         e_val = Fextent_property(extent, closure->prop, Qnil);
6296         is_eq = EQ(value, e_val);
6297
6298         if (!NILP(value) && NILP(closure->the_extent) && is_eq) {
6299                 /* We want there to be an extent here at the end, and we haven't picked
6300                    one yet, so use this one.  Extend it as necessary.  We only reuse an
6301                    extent which has an EQ value for the prop in question to avoid
6302                    side-effecting the kill ring (that is, we never change the property
6303                    on an extent after it has been created.)
6304                  */
6305                 if (e_start != start || e_end != end) {
6306                         Bytind new_start = min(e_start, start);
6307                         Bytind new_end = max(e_end, end);
6308                         set_extent_endpoints(e, new_start, new_end, Qnil);
6309                         /* If we changed the endpoint, then we need to set its
6310                            openness. */
6311                         set_extent_openness(e, new_start != e_start
6312                                             ? !NILP(get_text_property_bytind
6313                                                     (start, Qstart_open, object,
6314                                                      EXTENT_AT_AFTER, 1)) : -1,
6315                                             new_end != e_end
6316                                             ? NILP(get_text_property_bytind
6317                                                    (end - 1, Qend_closed,
6318                                                     object, EXTENT_AT_AFTER, 1))
6319                                             : -1);
6320                         closure->changed_p = 1;
6321                 }
6322                 closure->the_extent = extent;
6323         }
6324
6325         /* Even if we're adding a prop, at this point, we want all other extents of
6326            this prop to go away (as now they overlap).  So the theory here is that,
6327            when we are adding a prop to a region that has multiple (disjoint)
6328            occurrences of that prop in it already, we pick one of those and extend
6329            it, and remove the others.
6330          */
6331
6332         else if (EQ(extent, closure->the_extent)) {
6333                 /* just in case map-extents hits it again (does that happen?) */
6334                 ;
6335         } else if (e_start >= start && e_end <= end) {
6336                 /* Extent is contained in region; remove it.  Don't destroy or modify
6337                    it, because we don't want to change the attributes pointed to by the
6338                    duplicates in the kill ring.
6339                  */
6340                 extent_detach(e);
6341                 closure->changed_p = 1;
6342         } else if (!NILP(closure->the_extent) &&
6343                    is_eq && e_start <= end && e_end >= start) {
6344                 EXTENT te = XEXTENT(closure->the_extent);
6345                 /* This extent overlaps, and has the same prop/value as the extent we've
6346                    decided to reuse, so we can remove this existing extent as well (the
6347                    whole thing, even the part outside of the region) and extend
6348                    the-extent to cover it, resulting in the minimum number of extents in
6349                    the buffer.
6350                  */
6351                 Bytind the_start = extent_endpoint_bytind(te, 0);
6352                 Bytind the_end = extent_endpoint_bytind(te, 1);
6353                 if (e_start != the_start &&     /* note AND not OR -- hmm, why is this
6354                                                    the case? I think it's because the
6355                                                    assumption that the text-property
6356                                                    extents don't overlap makes it
6357                                                    OK; changing it to an OR would
6358                                                    result in changed_p sometimes getting
6359                                                    falsely marked.  Is this bad? */
6360                     e_end != the_end) {
6361                         Bytind new_start = min(e_start, the_start);
6362                         Bytind new_end = max(e_end, the_end);
6363                         set_extent_endpoints(te, new_start, new_end, Qnil);
6364                         /* If we changed the endpoint, then we need to set its
6365                            openness.  We are setting the endpoint to be the same as
6366                            that of the extent we're about to remove, and we assume
6367                            (the invariant mentioned above) that extent has the
6368                            proper endpoint setting, so we just use it. */
6369                         set_extent_openness(te, new_start != e_start ?
6370                                             (int)extent_start_open_p(e) : -1,
6371                                             new_end != e_end ?
6372                                             (int)extent_end_open_p(e) : -1);
6373                         closure->changed_p = 1;
6374                 }
6375                 extent_detach(e);
6376         } else if (e_end <= end) {
6377                 /* Extent begins before start but ends before end, so we can just
6378                    decrease its end position.
6379                  */
6380                 if (e_end != start) {
6381                         set_extent_endpoints(e, e_start, start, Qnil);
6382                         set_extent_openness(e, -1, NILP(get_text_property_bytind
6383                                                         (start - 1, Qend_closed,
6384                                                          object,
6385                                                          EXTENT_AT_AFTER, 1)));
6386                         closure->changed_p = 1;
6387                 }
6388         } else if (e_start >= start) {
6389                 /* Extent ends after end but begins after start, so we can just
6390                    increase its start position.
6391                  */
6392                 if (e_start != end) {
6393                         set_extent_endpoints(e, end, e_end, Qnil);
6394                         set_extent_openness(e, !NILP(get_text_property_bytind
6395                                                      (end, Qstart_open, object,
6396                                                       EXTENT_AT_AFTER, 1)), -1);
6397                         closure->changed_p = 1;
6398                 }
6399         } else {
6400                 /* Otherwise, `extent' straddles the region.  We need to split it.
6401                  */
6402                 set_extent_endpoints(e, e_start, start, Qnil);
6403                 set_extent_openness(e, -1, NILP(get_text_property_bytind
6404                                                 (start - 1, Qend_closed, object,
6405                                                  EXTENT_AT_AFTER, 1)));
6406                 set_extent_openness(copy_extent
6407                                     (e, end, e_end, extent_object(e)),
6408                                     !NILP(get_text_property_bytind
6409                                           (end, Qstart_open, object,
6410                                            EXTENT_AT_AFTER, 1)), -1);
6411                 closure->changed_p = 1;
6412         }
6413
6414         return 0;               /* to continue mapping. */
6415 }
6416
6417 static int put_text_prop_openness_mapper(EXTENT e, void *arg)
6418 {
6419         struct put_text_prop_arg *closure = (struct put_text_prop_arg *)arg;
6420         Bytind e_start, e_end;
6421         Bytind start = closure->start;
6422         Bytind end = closure->end;
6423         Lisp_Object extent;
6424         XSETEXTENT(extent, e);
6425         e_start = extent_endpoint_bytind(e, 0);
6426         e_end = extent_endpoint_bytind(e, 1);
6427
6428         if (NILP(Fextent_property(extent, Qtext_prop, Qnil))) {
6429                 /* It's not a text-property extent; do nothing. */
6430                 ;
6431         }
6432         /* Note end conditions and NILP/!NILP's carefully. */
6433         else if (EQ(closure->prop, Qstart_open)
6434                  && e_start >= start && e_start < end)
6435                 set_extent_openness(e, !NILP(closure->value), -1);
6436         else if (EQ(closure->prop, Qend_closed)
6437                  && e_end > start && e_end <= end)
6438                 set_extent_openness(e, -1, NILP(closure->value));
6439
6440         return 0;               /* to continue mapping. */
6441 }
6442
6443 static int
6444 put_text_prop(Bytind start, Bytind end, Lisp_Object object,
6445               Lisp_Object prop, Lisp_Object value, int duplicable_p)
6446 {
6447         /* This function can GC */
6448         struct put_text_prop_arg closure;
6449
6450         if (start == end)       /* There are no characters in the region. */
6451                 return 0;
6452
6453         /* convert to the non-default versions, since a nil property is
6454            the same as it not being present. */
6455         if (EQ(prop, Qstart_closed)) {
6456                 prop = Qstart_open;
6457                 value = NILP(value) ? Qt : Qnil;
6458         } else if (EQ(prop, Qend_open)) {
6459                 prop = Qend_closed;
6460                 value = NILP(value) ? Qt : Qnil;
6461         }
6462
6463         value = canonicalize_extent_property(prop, value);
6464
6465         closure.prop = prop;
6466         closure.value = value;
6467         closure.start = start;
6468         closure.end = end;
6469         closure.object = object;
6470         closure.changed_p = 0;
6471         closure.the_extent = Qnil;
6472
6473         map_extents_bytind(start, end,
6474                            put_text_prop_mapper, (void *)&closure, object, 0,
6475                            /* get all extents that abut the region */
6476                            ME_ALL_EXTENTS_CLOSED | ME_END_CLOSED |
6477                            /* it might QUIT or error if the user has
6478                               fucked with the extent plist. */
6479                            /* #### dmoore - I think this should include
6480                               ME_MIGHT_MOVE_SOE, since the callback function
6481                               might recurse back into map_extents_bytind. */
6482                            ME_MIGHT_THROW | ME_MIGHT_MODIFY_EXTENTS);
6483
6484         /* If we made it through the loop without reusing an extent
6485            (and we want there to be one) make it now.
6486          */
6487         if (!NILP(value) && NILP(closure.the_extent)) {
6488                 Lisp_Object extent;
6489
6490                 XSETEXTENT(extent, make_extent_internal(object, start, end));
6491                 closure.changed_p = 1;
6492                 Fset_extent_property(extent, Qtext_prop, prop);
6493                 Fset_extent_property(extent, prop, value);
6494                 if (duplicable_p) {
6495                         extent_duplicable_p(XEXTENT(extent)) = 1;
6496                         Fset_extent_property(extent, Qpaste_function,
6497                                              Qtext_prop_extent_paste_function);
6498                 }
6499                 set_extent_openness(XEXTENT(extent),
6500                                     !NILP(get_text_property_bytind
6501                                           (start, Qstart_open, object,
6502                                            EXTENT_AT_AFTER, 1)),
6503                                     NILP(get_text_property_bytind
6504                                          (end - 1, Qend_closed, object,
6505                                           EXTENT_AT_AFTER, 1)));
6506         }
6507
6508         if (EQ(prop, Qstart_open) || EQ(prop, Qend_closed)) {
6509                 map_extents_bytind(start, end,
6510                                    put_text_prop_openness_mapper,
6511                                    (void *)&closure, object, 0,
6512                                    /* get all extents that abut the region */
6513                                    ME_ALL_EXTENTS_CLOSED | ME_END_CLOSED |
6514                                    ME_MIGHT_MODIFY_EXTENTS);
6515         }
6516
6517         return closure.changed_p;
6518 }
6519
6520 DEFUN("put-text-property", Fput_text_property, 4, 5, 0, /*
6521 Adds the given property/value to all characters in the specified region.
6522 The property is conceptually attached to the characters rather than the
6523 region.  The properties are copied when the characters are copied/pasted.
6524 Fifth argument OBJECT is the buffer or string containing the text, and
6525 defaults to the current buffer.
6526 */
6527       (start, end, prop, value, object))
6528 {
6529         /* This function can GC */
6530         Bytind s, e;
6531
6532         object = decode_buffer_or_string(object);
6533         get_buffer_or_string_range_byte(object, start, end, &s, &e, 0);
6534         put_text_prop(s, e, object, prop, value, 1);
6535         return prop;
6536 }
6537
6538 DEFUN("put-nonduplicable-text-property", Fput_nonduplicable_text_property, 4, 5, 0,     /*
6539 Adds the given property/value to all characters in the specified region.
6540 The property is conceptually attached to the characters rather than the
6541 region, however the properties will not be copied when the characters
6542 are copied.
6543 Fifth argument OBJECT is the buffer or string containing the text, and
6544 defaults to the current buffer.
6545 */
6546       (start, end, prop, value, object))
6547 {
6548         /* This function can GC */
6549         Bytind s, e;
6550
6551         object = decode_buffer_or_string(object);
6552         get_buffer_or_string_range_byte(object, start, end, &s, &e, 0);
6553         put_text_prop(s, e, object, prop, value, 0);
6554         return prop;
6555 }
6556
6557 DEFUN("add-text-properties", Fadd_text_properties, 3, 4, 0,     /*
6558 Add properties to the characters from START to END.
6559 The third argument PROPS is a property list specifying the property values
6560 to add.  The optional fourth argument, OBJECT, is the buffer or string
6561 containing the text and defaults to the current buffer.  Returns t if
6562 any property was changed, nil otherwise.
6563 */
6564       (start, end, props, object))
6565 {
6566         /* This function can GC */
6567         int changed = 0;
6568         Bytind s, e;
6569
6570         object = decode_buffer_or_string(object);
6571         get_buffer_or_string_range_byte(object, start, end, &s, &e, 0);
6572         CHECK_LIST(props);
6573         for (; !NILP(props); props = Fcdr(Fcdr(props))) {
6574                 Lisp_Object prop = XCAR(props);
6575                 Lisp_Object value = Fcar(XCDR(props));
6576                 changed |= put_text_prop(s, e, object, prop, value, 1);
6577         }
6578         return changed ? Qt : Qnil;
6579 }
6580
6581 DEFUN("add-nonduplicable-text-properties", Fadd_nonduplicable_text_properties, 3, 4, 0, /*
6582 Add nonduplicable properties to the characters from START to END.
6583 \(The properties will not be copied when the characters are copied.)
6584 The third argument PROPS is a property list specifying the property values
6585 to add.  The optional fourth argument, OBJECT, is the buffer or string
6586 containing the text and defaults to the current buffer.  Returns t if
6587 any property was changed, nil otherwise.
6588 */
6589       (start, end, props, object))
6590 {
6591         /* This function can GC */
6592         int changed = 0;
6593         Bytind s, e;
6594
6595         object = decode_buffer_or_string(object);
6596         get_buffer_or_string_range_byte(object, start, end, &s, &e, 0);
6597         CHECK_LIST(props);
6598         for (; !NILP(props); props = Fcdr(Fcdr(props))) {
6599                 Lisp_Object prop = XCAR(props);
6600                 Lisp_Object value = Fcar(XCDR(props));
6601                 changed |= put_text_prop(s, e, object, prop, value, 0);
6602         }
6603         return changed ? Qt : Qnil;
6604 }
6605
6606 DEFUN("remove-text-properties", Fremove_text_properties, 3, 4, 0,       /*
6607 Remove the given properties from all characters in the specified region.
6608 PROPS should be a plist, but the values in that plist are ignored (treated
6609 as nil).  Returns t if any property was changed, nil otherwise.
6610 Fourth argument OBJECT is the buffer or string containing the text, and
6611 defaults to the current buffer.
6612 */
6613       (start, end, props, object))
6614 {
6615         /* This function can GC */
6616         int changed = 0;
6617         Bytind s, e;
6618
6619         object = decode_buffer_or_string(object);
6620         get_buffer_or_string_range_byte(object, start, end, &s, &e, 0);
6621         CHECK_LIST(props);
6622         for (; !NILP(props); props = Fcdr(Fcdr(props))) {
6623                 Lisp_Object prop = XCAR(props);
6624                 changed |= put_text_prop(s, e, object, prop, Qnil, 1);
6625         }
6626         return changed ? Qt : Qnil;
6627 }
6628
6629 /* Whenever a text-prop extent is pasted into a buffer (via `yank' or `insert'
6630    or whatever) we attach the properties to the buffer by calling
6631    `put-text-property' instead of by simply allowing the extent to be copied or
6632    re-attached.  Then we return nil, telling the extents code not to attach it
6633    again.  By handing the insertion hackery in this way, we make kill/yank
6634    behave consistently with put-text-property and not fragment the extents
6635    (since text-prop extents must partition, not overlap).
6636
6637    The lisp implementation of this was probably fast enough, but since I moved
6638    the rest of the put-text-prop code here, I moved this as well for
6639    completeness.
6640  */
6641 DEFUN("text-prop-extent-paste-function", Ftext_prop_extent_paste_function, 3, 3, 0,     /*
6642 Used as the `paste-function' property of `text-prop' extents.
6643 */
6644       (extent, from, to))
6645 {
6646         /* This function can GC */
6647         Lisp_Object prop, val;
6648
6649         prop = Fextent_property(extent, Qtext_prop, Qnil);
6650         if (NILP(prop))
6651                 signal_type_error(Qinternal_error,
6652                                   "Internal error: no text-prop", extent);
6653         val = Fextent_property(extent, prop, Qnil);
6654 #if 0
6655         /* removed by bill perry, 2/9/97
6656          ** This little bit of code would not allow you to have a text property
6657          ** with a value of Qnil.  This is bad bad bad.
6658          */
6659         if (NILP(val))
6660                 signal_type_error_2(Qinternal_error,
6661                                     "Internal error: no text-prop",
6662                                     extent, prop);
6663 #endif
6664         Fput_text_property(from, to, prop, val, Qnil);
6665         return Qnil;            /* important! */
6666 }
6667
6668 /* This function could easily be written in Lisp but the C code wants
6669    to use it in connection with invisible extents (at least currently).
6670    If this changes, consider moving this back into Lisp. */
6671
6672 DEFUN("next-single-property-change", Fnext_single_property_change, 2, 4, 0,     /*
6673 Return the position of next property change for a specific property.
6674 Scans characters forward from POS till it finds a change in the PROP
6675 property, then returns the position of the change.  The optional third
6676 argument OBJECT is the buffer or string to scan (defaults to the current
6677 buffer).
6678 The property values are compared with `eq'.
6679 Return nil if the property is constant all the way to the end of OBJECT.
6680 If the value is non-nil, it is a position greater than POS, never equal.
6681
6682 If the optional fourth argument LIMIT is non-nil, don't search
6683 past position LIMIT; return LIMIT if nothing is found before LIMIT.
6684 If two or more extents with conflicting non-nil values for PROP overlap
6685 a particular character, it is undefined which value is considered to be
6686 the value of PROP. (Note that this situation will not happen if you always
6687 use the text-property primitives.)
6688 */
6689       (pos, prop, object, limit))
6690 {
6691         Bufpos bpos;
6692         Bufpos blim;
6693         Lisp_Object extent, value;
6694         int limit_was_nil;
6695
6696         object = decode_buffer_or_string(object);
6697         bpos = get_buffer_or_string_pos_char(object, pos, 0);
6698         if (NILP(limit)) {
6699                 blim = buffer_or_string_accessible_end_char(object);
6700                 limit_was_nil = 1;
6701         } else {
6702                 blim = get_buffer_or_string_pos_char(object, limit, 0);
6703                 limit_was_nil = 0;
6704         }
6705
6706         extent = Fextent_at(make_int(bpos), object, prop, Qnil, Qnil);
6707         if (!NILP(extent))
6708                 value = Fextent_property(extent, prop, Qnil);
6709         else
6710                 value = Qnil;
6711
6712         while (1) {
6713                 bpos = XINT(Fnext_extent_change(make_int(bpos), object));
6714                 if (bpos >= blim)
6715                         break;  /* property is the same all the way to the end */
6716                 extent = Fextent_at(make_int(bpos), object, prop, Qnil, Qnil);
6717                 if ((NILP(extent) && !NILP(value)) ||
6718                     (!NILP(extent) && !EQ(value,
6719                                           Fextent_property(extent, prop,
6720                                                            Qnil))))
6721                         return make_int(bpos);
6722         }
6723
6724         /* I think it's more sensible for this function to return nil always
6725            in this situation and it used to do it this way, but it's been changed
6726            for FSF compatibility. */
6727         if (limit_was_nil)
6728                 return Qnil;
6729         else
6730                 return make_int(blim);
6731 }
6732
6733 /* See comment on previous function about why this is written in C. */
6734
6735 DEFUN("previous-single-property-change", Fprevious_single_property_change, 2, 4, 0,     /*
6736 Return the position of next property change for a specific property.
6737 Scans characters backward from POS till it finds a change in the PROP
6738 property, then returns the position of the change.  The optional third
6739 argument OBJECT is the buffer or string to scan (defaults to the current
6740 buffer).
6741 The property values are compared with `eq'.
6742 Return nil if the property is constant all the way to the start of OBJECT.
6743 If the value is non-nil, it is a position less than POS, never equal.
6744
6745 If the optional fourth argument LIMIT is non-nil, don't search back
6746 past position LIMIT; return LIMIT if nothing is found until LIMIT.
6747 If two or more extents with conflicting non-nil values for PROP overlap
6748 a particular character, it is undefined which value is considered to be
6749 the value of PROP. (Note that this situation will not happen if you always
6750 use the text-property primitives.)
6751 */
6752       (pos, prop, object, limit))
6753 {
6754         Bufpos bpos;
6755         Bufpos blim;
6756         Lisp_Object extent, value;
6757         int limit_was_nil;
6758
6759         object = decode_buffer_or_string(object);
6760         bpos = get_buffer_or_string_pos_char(object, pos, 0);
6761         if (NILP(limit)) {
6762                 blim = buffer_or_string_accessible_begin_char(object);
6763                 limit_was_nil = 1;
6764         } else {
6765                 blim = get_buffer_or_string_pos_char(object, limit, 0);
6766                 limit_was_nil = 0;
6767         }
6768
6769         /* extent-at refers to the character AFTER bpos, but we want the
6770            character before bpos.  Thus the - 1.  extent-at simply
6771            returns nil on bogus positions, so not to worry. */
6772         extent = Fextent_at(make_int(bpos - 1), object, prop, Qnil, Qnil);
6773         if (!NILP(extent))
6774                 value = Fextent_property(extent, prop, Qnil);
6775         else
6776                 value = Qnil;
6777
6778         while (1) {
6779                 bpos = XINT(Fprevious_extent_change(make_int(bpos), object));
6780                 if (bpos <= blim)
6781                         break;  /* property is the same all the way to the beginning */
6782                 extent =
6783                     Fextent_at(make_int(bpos - 1), object, prop, Qnil, Qnil);
6784                 if ((NILP(extent) && !NILP(value))
6785                     || (!NILP(extent)
6786                         && !EQ(value, Fextent_property(extent, prop, Qnil))))
6787                         return make_int(bpos);
6788         }
6789
6790         /* I think it's more sensible for this function to return nil always
6791            in this situation and it used to do it this way, but it's been changed
6792            for FSF compatibility. */
6793         if (limit_was_nil)
6794                 return Qnil;
6795         else
6796                 return make_int(blim);
6797 }
6798
6799 #ifdef MEMORY_USAGE_STATS
6800
6801 int
6802 compute_buffer_extent_usage(struct buffer *b, struct overhead_stats *ovstats)
6803 {
6804         /* #### not yet written */
6805         return 0;
6806 }
6807
6808 #endif                          /* MEMORY_USAGE_STATS */
6809 \f
6810 /************************************************************************/
6811 /*                              initialization                          */
6812 /************************************************************************/
6813
6814 void syms_of_extents(void)
6815 {
6816         INIT_LRECORD_IMPLEMENTATION(extent);
6817         INIT_LRECORD_IMPLEMENTATION(extent_info);
6818         INIT_LRECORD_IMPLEMENTATION(extent_auxiliary);
6819
6820         defsymbol(&Qextentp, "extentp");
6821         defsymbol(&Qextent_live_p, "extent-live-p");
6822
6823         defsymbol(&Qall_extents_closed, "all-extents-closed");
6824         defsymbol(&Qall_extents_open, "all-extents-open");
6825         defsymbol(&Qall_extents_closed_open, "all-extents-closed-open");
6826         defsymbol(&Qall_extents_open_closed, "all-extents-open-closed");
6827         defsymbol(&Qstart_in_region, "start-in-region");
6828         defsymbol(&Qend_in_region, "end-in-region");
6829         defsymbol(&Qstart_and_end_in_region, "start-and-end-in-region");
6830         defsymbol(&Qstart_or_end_in_region, "start-or-end-in-region");
6831         defsymbol(&Qnegate_in_region, "negate-in-region");
6832
6833         defsymbol(&Qdetached, "detached");
6834         defsymbol(&Qdestroyed, "destroyed");
6835         defsymbol(&Qbegin_glyph, "begin-glyph");
6836         defsymbol(&Qend_glyph, "end-glyph");
6837         defsymbol(&Qstart_open, "start-open");
6838         defsymbol(&Qend_open, "end-open");
6839         defsymbol(&Qstart_closed, "start-closed");
6840         defsymbol(&Qend_closed, "end-closed");
6841         defsymbol(&Qread_only, "read-only");
6842         /* defsymbol (&Qhighlight, "highlight"); in faces.c */
6843         defsymbol(&Qunique, "unique");
6844         defsymbol(&Qduplicable, "duplicable");
6845         defsymbol(&Qdetachable, "detachable");
6846         defsymbol(&Qpriority, "priority");
6847         defsymbol(&Qmouse_face, "mouse-face");
6848         defsymbol(&Qinitial_redisplay_function, "initial-redisplay-function");
6849
6850         defsymbol(&Qglyph_layout, "glyph-layout");      /* backwards compatibility */
6851         defsymbol(&Qbegin_glyph_layout, "begin-glyph-layout");
6852         defsymbol(&Qend_glyph_layout, "end-glyph-layout");
6853         defsymbol(&Qoutside_margin, "outside-margin");
6854         defsymbol(&Qinside_margin, "inside-margin");
6855         defsymbol(&Qwhitespace, "whitespace");
6856         /* Qtext defined in general.c */
6857
6858         defsymbol(&Qpaste_function, "paste-function");
6859         defsymbol(&Qcopy_function, "copy-function");
6860
6861         defsymbol(&Qtext_prop, "text-prop");
6862         defsymbol(&Qtext_prop_extent_paste_function,
6863                   "text-prop-extent-paste-function");
6864
6865         DEFSUBR(Fextentp);
6866         DEFSUBR(Fextent_live_p);
6867         DEFSUBR(Fextent_detached_p);
6868         DEFSUBR(Fextent_start_position);
6869         DEFSUBR(Fextent_end_position);
6870         DEFSUBR(Fextent_object);
6871         DEFSUBR(Fextent_length);
6872
6873         DEFSUBR(Fmake_extent);
6874         DEFSUBR(Fcopy_extent);
6875         DEFSUBR(Fdelete_extent);
6876         DEFSUBR(Fdetach_extent);
6877         DEFSUBR(Fset_extent_endpoints);
6878         DEFSUBR(Fnext_extent);
6879         DEFSUBR(Fprevious_extent);
6880 #if DEBUG_SXEMACS
6881         DEFSUBR(Fnext_e_extent);
6882         DEFSUBR(Fprevious_e_extent);
6883 #endif
6884         DEFSUBR(Fnext_extent_change);
6885         DEFSUBR(Fprevious_extent_change);
6886
6887         DEFSUBR(Fextent_parent);
6888         DEFSUBR(Fextent_children);
6889         DEFSUBR(Fset_extent_parent);
6890
6891         DEFSUBR(Fextent_in_region_p);
6892         DEFSUBR(Fmap_extents);
6893         DEFSUBR(Fmap_extent_children);
6894         DEFSUBR(Fextent_at);
6895         DEFSUBR(Fextents_at);
6896
6897         DEFSUBR(Fset_extent_initial_redisplay_function);
6898         DEFSUBR(Fextent_face);
6899         DEFSUBR(Fset_extent_face);
6900         DEFSUBR(Fextent_mouse_face);
6901         DEFSUBR(Fset_extent_mouse_face);
6902         DEFSUBR(Fset_extent_begin_glyph);
6903         DEFSUBR(Fset_extent_end_glyph);
6904         DEFSUBR(Fextent_begin_glyph);
6905         DEFSUBR(Fextent_end_glyph);
6906         DEFSUBR(Fset_extent_begin_glyph_layout);
6907         DEFSUBR(Fset_extent_end_glyph_layout);
6908         DEFSUBR(Fextent_begin_glyph_layout);
6909         DEFSUBR(Fextent_end_glyph_layout);
6910         DEFSUBR(Fset_extent_priority);
6911         DEFSUBR(Fextent_priority);
6912         DEFSUBR(Fset_extent_property);
6913         DEFSUBR(Fset_extent_properties);
6914         DEFSUBR(Fextent_property);
6915         DEFSUBR(Fextent_properties);
6916
6917         DEFSUBR(Fhighlight_extent);
6918         DEFSUBR(Fforce_highlight_extent);
6919
6920         DEFSUBR(Finsert_extent);
6921
6922         DEFSUBR(Fget_text_property);
6923         DEFSUBR(Fget_char_property);
6924         DEFSUBR(Fput_text_property);
6925         DEFSUBR(Fput_nonduplicable_text_property);
6926         DEFSUBR(Fadd_text_properties);
6927         DEFSUBR(Fadd_nonduplicable_text_properties);
6928         DEFSUBR(Fremove_text_properties);
6929         DEFSUBR(Ftext_prop_extent_paste_function);
6930         DEFSUBR(Fnext_single_property_change);
6931         DEFSUBR(Fprevious_single_property_change);
6932 }
6933
6934 void reinit_vars_of_extents(void)
6935 {
6936         extent_auxiliary_defaults.begin_glyph = Qnil;
6937         extent_auxiliary_defaults.end_glyph = Qnil;
6938         extent_auxiliary_defaults.parent = Qnil;
6939         extent_auxiliary_defaults.children = Qnil;
6940         extent_auxiliary_defaults.priority = 0;
6941         extent_auxiliary_defaults.invisible = Qnil;
6942         extent_auxiliary_defaults.read_only = Qnil;
6943         extent_auxiliary_defaults.mouse_face = Qnil;
6944         extent_auxiliary_defaults.initial_redisplay_function = Qnil;
6945         extent_auxiliary_defaults.before_change_functions = Qnil;
6946         extent_auxiliary_defaults.after_change_functions = Qnil;
6947 }
6948
6949 void vars_of_extents(void)
6950 {
6951         reinit_vars_of_extents();
6952
6953         DEFVAR_INT("mouse-highlight-priority", &mouse_highlight_priority        /*
6954 The priority to use for the mouse-highlighting pseudo-extent
6955 that is used to highlight extents with the `mouse-face' attribute set.
6956 See `set-extent-priority'.
6957                                                                                  */ );
6958         /* Set mouse-highlight-priority (which ends up being used both for the
6959            mouse-highlighting pseudo-extent and the primary selection extent)
6960            to a very high value because very few extents should override it.
6961            1000 gives lots of room below it for different-prioritized extents.
6962            10 doesn't. ediff, for example, likes to use priorities around 100.
6963            --ben */
6964         mouse_highlight_priority = /* 10 */ 1000;
6965
6966         DEFVAR_LISP("default-text-properties", &Vdefault_text_properties        /*
6967 Property list giving default values for text properties.
6968 Whenever a character does not specify a value for a property, the value
6969 stored in this list is used instead.  This only applies when the
6970 functions `get-text-property' or `get-char-property' are called.
6971                                                                                  */ );
6972         Vdefault_text_properties = Qnil;
6973
6974         staticpro(&Vlast_highlighted_extent);
6975         Vlast_highlighted_extent = Qnil;
6976
6977         Vextent_face_reusable_list = Fcons(Qnil, Qnil);
6978         staticpro(&Vextent_face_reusable_list);
6979 }
6980
6981 void complex_vars_of_extents(void)
6982 {
6983         staticpro(&Vextent_face_memoize_hash_table);
6984         /* The memoize hash table maps from lists of symbols to lists of
6985            faces.  It needs to be `equal' to implement the memoization.
6986            The reverse table maps in the other direction and just needs
6987            to do `eq' comparison because the lists of faces are already
6988            memoized. */
6989         Vextent_face_memoize_hash_table =
6990             make_lisp_hash_table(100, HASH_TABLE_VALUE_WEAK, HASH_TABLE_EQUAL);
6991         staticpro(&Vextent_face_reverse_memoize_hash_table);
6992         Vextent_face_reverse_memoize_hash_table =
6993             make_lisp_hash_table(100, HASH_TABLE_KEY_WEAK, HASH_TABLE_EQ);
6994 }