Fix ChangeLog to reflect merge better.
[bpt/emacs.git] / src / intervals.c
CommitLineData
a50699fd 1/* Code for doing intervals.
73b0cd50 2 Copyright (C) 1993-1995, 1997-1998, 2001-2011 Free Software Foundation, Inc.
a50699fd
JA
3
4This file is part of GNU Emacs.
5
9ec0b715 6GNU Emacs is free software: you can redistribute it and/or modify
a50699fd 7it under the terms of the GNU General Public License as published by
9ec0b715
GM
8the Free Software Foundation, either version 3 of the License, or
9(at your option) any later version.
a50699fd
JA
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
9ec0b715 17along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
a50699fd
JA
18
19
20/* NOTES:
21
22 Have to ensure that we can't put symbol nil on a plist, or some
23 functions may work incorrectly.
24
25 An idea: Have the owner of the tree keep count of splits and/or
26 insertion lengths (in intervals), and balance after every N.
27
28 Need to call *_left_hook when buffer is killed.
29
30 Scan for zero-length, or 0-length to see notes about handling
31 zero length interval-markers.
32
33 There are comments around about freeing intervals. It might be
34 faster to explicitly free them (put them on the free list) than
35 to GC them.
36
37*/
38
39
18160b98 40#include <config.h>
d7306fe6 41#include <setjmp.h>
37aa2f85 42#include <intprops.h>
a50699fd
JA
43#include "lisp.h"
44#include "intervals.h"
45#include "buffer.h"
328c0f1f 46#include "puresize.h"
f54a8c1a 47#include "keyboard.h"
8feddab4 48#include "keymap.h"
a50699fd 49
45d82bdc
KH
50/* Test for membership, allowing for t (actually any non-cons) to mean the
51 universal set. */
52
53#define TMEM(sym, set) (CONSP (set) ? ! NILP (Fmemq (sym, set)) : ! NILP (set))
54
93ea6e8f
PE
55static Lisp_Object merge_properties_sticky (Lisp_Object, Lisp_Object);
56static INTERVAL merge_interval_right (INTERVAL);
f57e2426
J
57static INTERVAL reproduce_tree (INTERVAL, INTERVAL);
58static INTERVAL reproduce_tree_obj (INTERVAL, Lisp_Object);
a50699fd 59\f
7ce503fd 60/* Utility functions for intervals. */
a50699fd
JA
61
62
7ce503fd 63/* Create the root interval of some object, a buffer or string. */
a50699fd
JA
64
65INTERVAL
971de7fb 66create_root_interval (Lisp_Object parent)
a50699fd 67{
328c0f1f
RS
68 INTERVAL new;
69
70 CHECK_IMPURE (parent);
71
72 new = make_interval ();
a50699fd 73
b629dd47 74 if (BUFFERP (parent))
a50699fd 75 {
2bc7a79b
JB
76 new->total_length = (BUF_Z (XBUFFER (parent))
77 - BUF_BEG (XBUFFER (parent)));
727fec2d 78 CHECK_TOTAL_LENGTH (new);
e5d967c9 79 BUF_INTERVALS (XBUFFER (parent)) = new;
4867a283 80 new->position = BEG;
a50699fd 81 }
b629dd47 82 else if (STRINGP (parent))
a50699fd 83 {
d5db4077 84 new->total_length = SCHARS (parent);
727fec2d 85 CHECK_TOTAL_LENGTH (new);
b13738b6 86 STRING_SET_INTERVALS (parent, new);
944d4e4b 87 new->position = 0;
a50699fd
JA
88 }
89
439d5cb4 90 SET_INTERVAL_OBJECT (new, parent);
a50699fd
JA
91
92 return new;
93}
94
95/* Make the interval TARGET have exactly the properties of SOURCE */
96
97void
971de7fb 98copy_properties (register INTERVAL source, register INTERVAL target)
a50699fd
JA
99{
100 if (DEFAULT_INTERVAL_P (source) && DEFAULT_INTERVAL_P (target))
101 return;
102
103 COPY_INTERVAL_CACHE (source, target);
104 target->plist = Fcopy_sequence (source->plist);
105}
106
107/* Merge the properties of interval SOURCE into the properties
323a7ad4
RS
108 of interval TARGET. That is to say, each property in SOURCE
109 is added to TARGET if TARGET has no such property as yet. */
a50699fd
JA
110
111static void
971de7fb 112merge_properties (register INTERVAL source, register INTERVAL target)
a50699fd
JA
113{
114 register Lisp_Object o, sym, val;
115
116 if (DEFAULT_INTERVAL_P (source) && DEFAULT_INTERVAL_P (target))
117 return;
118
119 MERGE_INTERVAL_CACHE (source, target);
120
121 o = source->plist;
4867a283 122 while (CONSP (o))
a50699fd 123 {
4867a283 124 sym = XCAR (o);
4028a938
KS
125 o = XCDR (o);
126 CHECK_CONS (o);
127
128 val = target->plist;
129 while (CONSP (val) && !EQ (XCAR (val), sym))
130 {
131 val = XCDR (val);
132 if (!CONSP (val))
133 break;
134 val = XCDR (val);
135 }
a50699fd
JA
136
137 if (NILP (val))
138 {
4867a283 139 val = XCAR (o);
a50699fd 140 target->plist = Fcons (sym, Fcons (val, target->plist));
a50699fd 141 }
4028a938 142 o = XCDR (o);
a50699fd
JA
143 }
144}
145
146/* Return 1 if the two intervals have the same properties,
7ce503fd 147 0 otherwise. */
a50699fd
JA
148
149int
971de7fb 150intervals_equal (INTERVAL i0, INTERVAL i1)
a50699fd 151{
4028a938
KS
152 register Lisp_Object i0_cdr, i0_sym;
153 register Lisp_Object i1_cdr, i1_val;
a50699fd
JA
154
155 if (DEFAULT_INTERVAL_P (i0) && DEFAULT_INTERVAL_P (i1))
156 return 1;
157
323a7ad4
RS
158 if (DEFAULT_INTERVAL_P (i0) || DEFAULT_INTERVAL_P (i1))
159 return 0;
160
a50699fd 161 i0_cdr = i0->plist;
4028a938
KS
162 i1_cdr = i1->plist;
163 while (CONSP (i0_cdr) && CONSP (i1_cdr))
a50699fd 164 {
4867a283 165 i0_sym = XCAR (i0_cdr);
4028a938
KS
166 i0_cdr = XCDR (i0_cdr);
167 if (!CONSP (i0_cdr))
168 return 0; /* abort (); */
169 i1_val = i1->plist;
170 while (CONSP (i1_val) && !EQ (XCAR (i1_val), i0_sym))
171 {
172 i1_val = XCDR (i1_val);
173 if (!CONSP (i1_val))
174 return 0; /* abort (); */
175 i1_val = XCDR (i1_val);
176 }
a50699fd 177
7ce503fd 178 /* i0 has something i1 doesn't. */
a50699fd
JA
179 if (EQ (i1_val, Qnil))
180 return 0;
181
7ce503fd 182 /* i0 and i1 both have sym, but it has different values in each. */
4028a938
KS
183 if (!CONSP (i1_val)
184 || (i1_val = XCDR (i1_val), !CONSP (i1_val))
185 || !EQ (XCAR (i1_val), XCAR (i0_cdr)))
a50699fd
JA
186 return 0;
187
4867a283 188 i0_cdr = XCDR (i0_cdr);
a50699fd 189
4028a938
KS
190 i1_cdr = XCDR (i1_cdr);
191 if (!CONSP (i1_cdr))
192 return 0; /* abort (); */
193 i1_cdr = XCDR (i1_cdr);
194 }
a50699fd 195
4028a938
KS
196 /* Lengths of the two plists were equal. */
197 return (NILP (i0_cdr) && NILP (i1_cdr));
a50699fd
JA
198}
199\f
a50699fd 200
19d4e9a7
SM
201/* Traverse an interval tree TREE, performing FUNCTION on each node.
202 No guarantee is made about the order of traversal.
203 Pass FUNCTION two args: an interval, and ARG. */
204
205void
971de7fb 206traverse_intervals_noorder (INTERVAL tree, void (*function) (INTERVAL, Lisp_Object), Lisp_Object arg)
19d4e9a7
SM
207{
208 /* Minimize stack usage. */
209 while (!NULL_INTERVAL_P (tree))
210 {
211 (*function) (tree, arg);
212 if (NULL_INTERVAL_P (tree->right))
213 tree = tree->left;
214 else
215 {
216 traverse_intervals_noorder (tree->left, function, arg);
217 tree = tree->right;
218 }
219 }
220}
221
a50699fd 222/* Traverse an interval tree TREE, performing FUNCTION on each node.
4a93c905 223 Pass FUNCTION two args: an interval, and ARG. */
a50699fd
JA
224
225void
c50bd0d2 226traverse_intervals (INTERVAL tree, EMACS_INT position,
e79123aa 227 void (*function) (INTERVAL, Lisp_Object), Lisp_Object arg)
a50699fd 228{
19d4e9a7
SM
229 while (!NULL_INTERVAL_P (tree))
230 {
42005513 231 traverse_intervals (tree->left, position, function, arg);
19d4e9a7
SM
232 position += LEFT_TOTAL_LENGTH (tree);
233 tree->position = position;
234 (*function) (tree, arg);
42005513 235 position += LENGTH (tree); tree = tree->right;
19d4e9a7 236 }
a50699fd
JA
237}
238\f
239#if 0
e39adcda
GM
240
241static int icount;
242static int idepth;
243static int zero_length;
244
7ce503fd 245/* These functions are temporary, for debugging purposes only. */
a50699fd
JA
246
247INTERVAL search_interval, found_interval;
248
249void
250check_for_interval (i)
251 register INTERVAL i;
252{
253 if (i == search_interval)
254 {
255 found_interval = i;
256 icount++;
257 }
258}
259
260INTERVAL
261search_for_interval (i, tree)
262 register INTERVAL i, tree;
263{
264 icount = 0;
265 search_interval = i;
266 found_interval = NULL_INTERVAL;
19d4e9a7 267 traverse_intervals_noorder (tree, &check_for_interval, Qnil);
a50699fd
JA
268 return found_interval;
269}
270
271static void
272inc_interval_count (i)
273 INTERVAL i;
274{
275 icount++;
276 if (LENGTH (i) == 0)
277 zero_length++;
278 if (depth > idepth)
279 idepth = depth;
280}
281
282int
283count_intervals (i)
284 register INTERVAL i;
285{
286 icount = 0;
287 idepth = 0;
288 zero_length = 0;
19d4e9a7 289 traverse_intervals_noorder (i, &inc_interval_count, Qnil);
a50699fd
JA
290
291 return icount;
292}
293
294static INTERVAL
295root_interval (interval)
296 INTERVAL interval;
297{
298 register INTERVAL i = interval;
299
300 while (! ROOT_INTERVAL_P (i))
439d5cb4 301 i = INTERVAL_PARENT (i);
a50699fd
JA
302
303 return i;
304}
305#endif
306\f
307/* Assuming that a left child exists, perform the following operation:
308
309 A B
310 / \ / \
311 B => A
312 / \ / \
313 c c
314*/
315
55d4c1b2 316static inline INTERVAL
971de7fb 317rotate_right (INTERVAL interval)
a50699fd
JA
318{
319 INTERVAL i;
320 INTERVAL B = interval->left;
c50bd0d2 321 EMACS_INT old_total = interval->total_length;
a50699fd 322
7ce503fd 323 /* Deal with any Parent of A; make it point to B. */
a50699fd 324 if (! ROOT_INTERVAL_P (interval))
e39adcda
GM
325 {
326 if (AM_LEFT_CHILD (interval))
439d5cb4 327 INTERVAL_PARENT (interval)->left = B;
e39adcda 328 else
439d5cb4 329 INTERVAL_PARENT (interval)->right = B;
e39adcda 330 }
439d5cb4 331 COPY_INTERVAL_PARENT (B, interval);
a50699fd 332
4314dea4
RS
333 /* Make B the parent of A */
334 i = B->right;
335 B->right = interval;
439d5cb4 336 SET_INTERVAL_PARENT (interval, B);
a50699fd 337
4314dea4 338 /* Make A point to c */
a50699fd
JA
339 interval->left = i;
340 if (! NULL_INTERVAL_P (i))
439d5cb4 341 SET_INTERVAL_PARENT (i, interval);
4314dea4 342
550bd63a 343 /* A's total length is decreased by the length of B and its left child. */
4314dea4 344 interval->total_length -= B->total_length - LEFT_TOTAL_LENGTH (interval);
727fec2d 345 CHECK_TOTAL_LENGTH (interval);
4314dea4
RS
346
347 /* B must have the same total length of A. */
348 B->total_length = old_total;
727fec2d 349 CHECK_TOTAL_LENGTH (B);
a50699fd
JA
350
351 return B;
352}
4314dea4 353
a50699fd
JA
354/* Assuming that a right child exists, perform the following operation:
355
7d0393cf
JB
356 A B
357 / \ / \
a50699fd 358 B => A
7d0393cf 359 / \ / \
a50699fd
JA
360 c c
361*/
362
55d4c1b2 363static inline INTERVAL
971de7fb 364rotate_left (INTERVAL interval)
a50699fd
JA
365{
366 INTERVAL i;
367 INTERVAL B = interval->right;
c50bd0d2 368 EMACS_INT old_total = interval->total_length;
a50699fd 369
4314dea4 370 /* Deal with any parent of A; make it point to B. */
a50699fd 371 if (! ROOT_INTERVAL_P (interval))
e39adcda
GM
372 {
373 if (AM_LEFT_CHILD (interval))
439d5cb4 374 INTERVAL_PARENT (interval)->left = B;
e39adcda 375 else
439d5cb4 376 INTERVAL_PARENT (interval)->right = B;
e39adcda 377 }
439d5cb4 378 COPY_INTERVAL_PARENT (B, interval);
a50699fd
JA
379
380 /* Make B the parent of A */
4314dea4
RS
381 i = B->left;
382 B->left = interval;
439d5cb4 383 SET_INTERVAL_PARENT (interval, B);
a50699fd
JA
384
385 /* Make A point to c */
386 interval->right = i;
387 if (! NULL_INTERVAL_P (i))
439d5cb4 388 SET_INTERVAL_PARENT (i, interval);
4314dea4 389
550bd63a 390 /* A's total length is decreased by the length of B and its right child. */
4314dea4 391 interval->total_length -= B->total_length - RIGHT_TOTAL_LENGTH (interval);
727fec2d 392 CHECK_TOTAL_LENGTH (interval);
4314dea4
RS
393
394 /* B must have the same total length of A. */
395 B->total_length = old_total;
727fec2d 396 CHECK_TOTAL_LENGTH (B);
a50699fd
JA
397
398 return B;
399}
400\f
4314dea4
RS
401/* Balance an interval tree with the assumption that the subtrees
402 themselves are already balanced. */
403
404static INTERVAL
971de7fb 405balance_an_interval (INTERVAL i)
4314dea4 406{
e79123aa 407 register EMACS_INT old_diff, new_diff;
4314dea4
RS
408
409 while (1)
410 {
411 old_diff = LEFT_TOTAL_LENGTH (i) - RIGHT_TOTAL_LENGTH (i);
412 if (old_diff > 0)
413 {
727fec2d 414 /* Since the left child is longer, there must be one. */
4314dea4
RS
415 new_diff = i->total_length - i->left->total_length
416 + RIGHT_TOTAL_LENGTH (i->left) - LEFT_TOTAL_LENGTH (i->left);
1ea40aa2 417 if (eabs (new_diff) >= old_diff)
4314dea4
RS
418 break;
419 i = rotate_right (i);
420 balance_an_interval (i->right);
421 }
422 else if (old_diff < 0)
423 {
727fec2d 424 /* Since the right child is longer, there must be one. */
4314dea4
RS
425 new_diff = i->total_length - i->right->total_length
426 + LEFT_TOTAL_LENGTH (i->right) - RIGHT_TOTAL_LENGTH (i->right);
1ea40aa2 427 if (eabs (new_diff) >= -old_diff)
4314dea4
RS
428 break;
429 i = rotate_left (i);
430 balance_an_interval (i->left);
431 }
432 else
433 break;
434 }
435 return i;
436}
437
438/* Balance INTERVAL, potentially stuffing it back into its parent
439 Lisp Object. */
440
55d4c1b2 441static inline INTERVAL
971de7fb 442balance_possible_root_interval (register INTERVAL interval)
4314dea4
RS
443{
444 Lisp_Object parent;
439d5cb4 445 int have_parent = 0;
4314dea4 446
439d5cb4 447 if (!INTERVAL_HAS_OBJECT (interval) && !INTERVAL_HAS_PARENT (interval))
4314dea4
RS
448 return interval;
449
439d5cb4
KR
450 if (INTERVAL_HAS_OBJECT (interval))
451 {
452 have_parent = 1;
453 GET_INTERVAL_OBJECT (parent, interval);
454 }
4314dea4
RS
455 interval = balance_an_interval (interval);
456
439d5cb4
KR
457 if (have_parent)
458 {
459 if (BUFFERP (parent))
460 BUF_INTERVALS (XBUFFER (parent)) = interval;
461 else if (STRINGP (parent))
b13738b6 462 STRING_SET_INTERVALS (parent, interval);
439d5cb4 463 }
4314dea4
RS
464
465 return interval;
466}
467
468/* Balance the interval tree TREE. Balancing is by weight
469 (the amount of text). */
470
471static INTERVAL
971de7fb 472balance_intervals_internal (register INTERVAL tree)
4314dea4
RS
473{
474 /* Balance within each side. */
475 if (tree->left)
8f3b9b95 476 balance_intervals_internal (tree->left);
4314dea4 477 if (tree->right)
8f3b9b95 478 balance_intervals_internal (tree->right);
4314dea4
RS
479 return balance_an_interval (tree);
480}
481
482/* Advertised interface to balance intervals. */
483
484INTERVAL
971de7fb 485balance_intervals (INTERVAL tree)
4314dea4
RS
486{
487 if (tree == NULL_INTERVAL)
488 return NULL_INTERVAL;
489
490 return balance_intervals_internal (tree);
491}
492\f
2bc7a79b
JB
493/* Split INTERVAL into two pieces, starting the second piece at
494 character position OFFSET (counting from 0), relative to INTERVAL.
495 INTERVAL becomes the left-hand piece, and the right-hand piece
496 (second, lexicographically) is returned.
90ba40fc
JA
497
498 The size and position fields of the two intervals are set based upon
499 those of the original interval. The property list of the new interval
500 is reset, thus it is up to the caller to do the right thing with the
501 result.
a50699fd
JA
502
503 Note that this does not change the position of INTERVAL; if it is a root,
7ce503fd 504 it is still a root after this operation. */
a50699fd
JA
505
506INTERVAL
e79123aa 507split_interval_right (INTERVAL interval, EMACS_INT offset)
a50699fd
JA
508{
509 INTERVAL new = make_interval ();
c50bd0d2
CY
510 EMACS_INT position = interval->position;
511 EMACS_INT new_length = LENGTH (interval) - offset;
a50699fd 512
2bc7a79b 513 new->position = position + offset;
439d5cb4 514 SET_INTERVAL_PARENT (new, interval);
a50699fd 515
4314dea4 516 if (NULL_RIGHT_CHILD (interval))
a50699fd
JA
517 {
518 interval->right = new;
519 new->total_length = new_length;
727fec2d 520 CHECK_TOTAL_LENGTH (new);
a50699fd 521 }
cc6e2aaa
RS
522 else
523 {
524 /* Insert the new node between INTERVAL and its right child. */
525 new->right = interval->right;
439d5cb4 526 SET_INTERVAL_PARENT (interval->right, new);
cc6e2aaa
RS
527 interval->right = new;
528 new->total_length = new_length + new->right->total_length;
727fec2d 529 CHECK_TOTAL_LENGTH (new);
cc6e2aaa
RS
530 balance_an_interval (new);
531 }
7d0393cf 532
4314dea4
RS
533 balance_possible_root_interval (interval);
534
a50699fd
JA
535 return new;
536}
537
2bc7a79b
JB
538/* Split INTERVAL into two pieces, starting the second piece at
539 character position OFFSET (counting from 0), relative to INTERVAL.
540 INTERVAL becomes the right-hand piece, and the left-hand piece
541 (first, lexicographically) is returned.
a50699fd 542
90ba40fc
JA
543 The size and position fields of the two intervals are set based upon
544 those of the original interval. The property list of the new interval
545 is reset, thus it is up to the caller to do the right thing with the
546 result.
547
548 Note that this does not change the position of INTERVAL; if it is a root,
7ce503fd 549 it is still a root after this operation. */
a50699fd
JA
550
551INTERVAL
e79123aa 552split_interval_left (INTERVAL interval, EMACS_INT offset)
a50699fd
JA
553{
554 INTERVAL new = make_interval ();
e79123aa 555 EMACS_INT new_length = offset;
a50699fd 556
a50699fd 557 new->position = interval->position;
2bc7a79b 558 interval->position = interval->position + offset;
439d5cb4 559 SET_INTERVAL_PARENT (new, interval);
a50699fd
JA
560
561 if (NULL_LEFT_CHILD (interval))
562 {
563 interval->left = new;
564 new->total_length = new_length;
727fec2d 565 CHECK_TOTAL_LENGTH (new);
a50699fd 566 }
cc6e2aaa
RS
567 else
568 {
569 /* Insert the new node between INTERVAL and its left child. */
570 new->left = interval->left;
439d5cb4 571 SET_INTERVAL_PARENT (new->left, new);
cc6e2aaa
RS
572 interval->left = new;
573 new->total_length = new_length + new->left->total_length;
727fec2d 574 CHECK_TOTAL_LENGTH (new);
cc6e2aaa
RS
575 balance_an_interval (new);
576 }
7d0393cf 577
4314dea4 578 balance_possible_root_interval (interval);
a50699fd
JA
579
580 return new;
581}
582\f
944d4e4b
KH
583/* Return the proper position for the first character
584 described by the interval tree SOURCE.
585 This is 1 if the parent is a buffer,
586 0 if the parent is a string or if there is no parent.
587
588 Don't use this function on an interval which is the child
589 of another interval! */
590
fc7bf025 591static int
971de7fb 592interval_start_pos (INTERVAL source)
944d4e4b
KH
593{
594 Lisp_Object parent;
595
596 if (NULL_INTERVAL_P (source))
597 return 0;
598
e0b8c689
KR
599 if (! INTERVAL_HAS_OBJECT (source))
600 return 0;
439d5cb4 601 GET_INTERVAL_OBJECT (parent, source);
944d4e4b
KH
602 if (BUFFERP (parent))
603 return BUF_BEG (XBUFFER (parent));
604 return 0;
605}
606
90ba40fc 607/* Find the interval containing text position POSITION in the text
24e3d3bf 608 represented by the interval tree TREE. POSITION is a buffer
944d4e4b
KH
609 position (starting from 1) or a string index (starting from 0).
610 If POSITION is at the end of the buffer or string,
611 return the interval containing the last character.
a50699fd 612
90ba40fc
JA
613 The `position' field, which is a cache of an interval's position,
614 is updated in the interval found. Other functions (e.g., next_interval)
7ce503fd 615 will update this cache based on the result of find_interval. */
90ba40fc 616
1863bbf8 617INTERVAL
e79123aa 618find_interval (register INTERVAL tree, register EMACS_INT position)
a50699fd 619{
24e3d3bf
JB
620 /* The distance from the left edge of the subtree at TREE
621 to POSITION. */
c50bd0d2 622 register EMACS_INT relative_position;
a50699fd
JA
623
624 if (NULL_INTERVAL_P (tree))
625 return NULL_INTERVAL;
626
944d4e4b 627 relative_position = position;
439d5cb4
KR
628 if (INTERVAL_HAS_OBJECT (tree))
629 {
630 Lisp_Object parent;
631 GET_INTERVAL_OBJECT (parent, tree);
632 if (BUFFERP (parent))
633 relative_position -= BUF_BEG (XBUFFER (parent));
634 }
944d4e4b 635
24e3d3bf 636 if (relative_position > TOTAL_LENGTH (tree))
a50699fd 637 abort (); /* Paranoia */
a50699fd 638
52283633
SM
639 if (!handling_signal)
640 tree = balance_possible_root_interval (tree);
4314dea4 641
a50699fd
JA
642 while (1)
643 {
24e3d3bf 644 if (relative_position < LEFT_TOTAL_LENGTH (tree))
a50699fd
JA
645 {
646 tree = tree->left;
647 }
24e3d3bf
JB
648 else if (! NULL_RIGHT_CHILD (tree)
649 && relative_position >= (TOTAL_LENGTH (tree)
650 - RIGHT_TOTAL_LENGTH (tree)))
a50699fd
JA
651 {
652 relative_position -= (TOTAL_LENGTH (tree)
653 - RIGHT_TOTAL_LENGTH (tree));
654 tree = tree->right;
655 }
656 else
657 {
944d4e4b 658 tree->position
4867a283
SM
659 = (position - relative_position /* left edge of *tree. */
660 + LEFT_TOTAL_LENGTH (tree)); /* left edge of this interval. */
24e3d3bf 661
a50699fd
JA
662 return tree;
663 }
664 }
665}
666\f
667/* Find the succeeding interval (lexicographically) to INTERVAL.
90ba40fc 668 Sets the `position' field based on that of INTERVAL (see
7ce503fd 669 find_interval). */
a50699fd
JA
670
671INTERVAL
971de7fb 672next_interval (register INTERVAL interval)
a50699fd
JA
673{
674 register INTERVAL i = interval;
c50bd0d2 675 register EMACS_INT next_position;
a50699fd
JA
676
677 if (NULL_INTERVAL_P (i))
678 return NULL_INTERVAL;
679 next_position = interval->position + LENGTH (interval);
680
681 if (! NULL_RIGHT_CHILD (i))
682 {
683 i = i->right;
684 while (! NULL_LEFT_CHILD (i))
685 i = i->left;
686
687 i->position = next_position;
688 return i;
689 }
690
691 while (! NULL_PARENT (i))
692 {
693 if (AM_LEFT_CHILD (i))
694 {
439d5cb4 695 i = INTERVAL_PARENT (i);
a50699fd
JA
696 i->position = next_position;
697 return i;
698 }
699
439d5cb4 700 i = INTERVAL_PARENT (i);
a50699fd
JA
701 }
702
703 return NULL_INTERVAL;
704}
705
706/* Find the preceding interval (lexicographically) to INTERVAL.
90ba40fc 707 Sets the `position' field based on that of INTERVAL (see
7ce503fd 708 find_interval). */
a50699fd
JA
709
710INTERVAL
971de7fb 711previous_interval (register INTERVAL interval)
a50699fd
JA
712{
713 register INTERVAL i;
a50699fd
JA
714
715 if (NULL_INTERVAL_P (interval))
716 return NULL_INTERVAL;
717
718 if (! NULL_LEFT_CHILD (interval))
719 {
720 i = interval->left;
721 while (! NULL_RIGHT_CHILD (i))
722 i = i->right;
723
724 i->position = interval->position - LENGTH (i);
725 return i;
726 }
727
728 i = interval;
729 while (! NULL_PARENT (i))
730 {
731 if (AM_RIGHT_CHILD (i))
732 {
439d5cb4 733 i = INTERVAL_PARENT (i);
a50699fd
JA
734
735 i->position = interval->position - LENGTH (i);
736 return i;
737 }
439d5cb4 738 i = INTERVAL_PARENT (i);
a50699fd
JA
739 }
740
741 return NULL_INTERVAL;
742}
25eeac41
RS
743
744/* Find the interval containing POS given some non-NULL INTERVAL
75167cd4 745 in the same tree. Note that we need to update interval->position
52283633
SM
746 if we go down the tree.
747 To speed up the process, we assume that the ->position of
748 I and all its parents is already uptodate. */
25eeac41 749INTERVAL
e79123aa 750update_interval (register INTERVAL i, EMACS_INT pos)
25eeac41
RS
751{
752 if (NULL_INTERVAL_P (i))
753 return NULL_INTERVAL;
754
7d0393cf 755 while (1)
25eeac41 756 {
7d0393cf 757 if (pos < i->position)
25eeac41
RS
758 {
759 /* Move left. */
7d0393cf 760 if (pos >= i->position - TOTAL_LENGTH (i->left))
75167cd4
RS
761 {
762 i->left->position = i->position - TOTAL_LENGTH (i->left)
763 + LEFT_TOTAL_LENGTH (i->left);
764 i = i->left; /* Move to the left child */
765 }
7d0393cf 766 else if (NULL_PARENT (i))
25eeac41 767 error ("Point before start of properties");
7d0393cf 768 else
439d5cb4 769 i = INTERVAL_PARENT (i);
25eeac41
RS
770 continue;
771 }
772 else if (pos >= INTERVAL_LAST_POS (i))
773 {
774 /* Move right. */
7d0393cf 775 if (pos < INTERVAL_LAST_POS (i) + TOTAL_LENGTH (i->right))
75167cd4 776 {
70cc95c4
SM
777 i->right->position = INTERVAL_LAST_POS (i)
778 + LEFT_TOTAL_LENGTH (i->right);
75167cd4
RS
779 i = i->right; /* Move to the right child */
780 }
7d0393cf 781 else if (NULL_PARENT (i))
c2982e87 782 error ("Point %"pI"d after end of properties", pos);
7d0393cf 783 else
70cc95c4 784 i = INTERVAL_PARENT (i);
25eeac41
RS
785 continue;
786 }
7d0393cf 787 else
25eeac41
RS
788 return i;
789 }
790}
791
a50699fd 792\f
90ba40fc 793#if 0
a50699fd
JA
794/* Traverse a path down the interval tree TREE to the interval
795 containing POSITION, adjusting all nodes on the path for
796 an addition of LENGTH characters. Insertion between two intervals
797 (i.e., point == i->position, where i is second interval) means
798 text goes into second interval.
799
800 Modifications are needed to handle the hungry bits -- after simply
801 finding the interval at position (don't add length going down),
802 if it's the beginning of the interval, get the previous interval
8e6208c5 803 and check the hungry bits of both. Then add the length going back up
7ce503fd 804 to the root. */
a50699fd
JA
805
806static INTERVAL
807adjust_intervals_for_insertion (tree, position, length)
808 INTERVAL tree;
d1dfb56c 809 EMACS_INT position, length;
a50699fd 810{
d1dfb56c 811 register EMACS_INT relative_position;
a50699fd
JA
812 register INTERVAL this;
813
814 if (TOTAL_LENGTH (tree) == 0) /* Paranoia */
815 abort ();
816
817 /* If inserting at point-max of a buffer, that position
818 will be out of range */
819 if (position > TOTAL_LENGTH (tree))
820 position = TOTAL_LENGTH (tree);
821 relative_position = position;
822 this = tree;
823
824 while (1)
825 {
826 if (relative_position <= LEFT_TOTAL_LENGTH (this))
827 {
828 this->total_length += length;
727fec2d 829 CHECK_TOTAL_LENGTH (this);
a50699fd
JA
830 this = this->left;
831 }
832 else if (relative_position > (TOTAL_LENGTH (this)
833 - RIGHT_TOTAL_LENGTH (this)))
834 {
835 relative_position -= (TOTAL_LENGTH (this)
836 - RIGHT_TOTAL_LENGTH (this));
837 this->total_length += length;
727fec2d 838 CHECK_TOTAL_LENGTH (this);
a50699fd
JA
839 this = this->right;
840 }
841 else
842 {
843 /* If we are to use zero-length intervals as buffer pointers,
7ce503fd 844 then this code will have to change. */
a50699fd 845 this->total_length += length;
727fec2d 846 CHECK_TOTAL_LENGTH (this);
a50699fd
JA
847 this->position = LEFT_TOTAL_LENGTH (this)
848 + position - relative_position + 1;
849 return tree;
850 }
851 }
852}
90ba40fc
JA
853#endif
854
855/* Effect an adjustment corresponding to the addition of LENGTH characters
856 of text. Do this by finding the interval containing POSITION in the
550bd63a 857 interval tree TREE, and then adjusting all of its ancestors by adding
90ba40fc
JA
858 LENGTH to them.
859
860 If POSITION is the first character of an interval, meaning that point
861 is actually between the two intervals, make the new text belong to
862 the interval which is "sticky".
863
1d1d7ba0 864 If both intervals are "sticky", then make them belong to the left-most
90ba40fc 865 interval. Another possibility would be to create a new interval for
7ce503fd 866 this text, and make it have the merged properties of both ends. */
90ba40fc
JA
867
868static INTERVAL
e79123aa
EZ
869adjust_intervals_for_insertion (INTERVAL tree,
870 EMACS_INT position, EMACS_INT length)
90ba40fc
JA
871{
872 register INTERVAL i;
7ce503fd
RS
873 register INTERVAL temp;
874 int eobp = 0;
944d4e4b 875 Lisp_Object parent;
e79123aa 876 EMACS_INT offset;
7d0393cf 877
90ba40fc
JA
878 if (TOTAL_LENGTH (tree) == 0) /* Paranoia */
879 abort ();
880
439d5cb4 881 GET_INTERVAL_OBJECT (parent, tree);
944d4e4b
KH
882 offset = (BUFFERP (parent) ? BUF_BEG (XBUFFER (parent)) : 0);
883
24e3d3bf
JB
884 /* If inserting at point-max of a buffer, that position will be out
885 of range. Remember that buffer positions are 1-based. */
944d4e4b
KH
886 if (position >= TOTAL_LENGTH (tree) + offset)
887 {
888 position = TOTAL_LENGTH (tree) + offset;
889 eobp = 1;
890 }
90ba40fc
JA
891
892 i = find_interval (tree, position);
7ce503fd 893
2313b945
RS
894 /* If in middle of an interval which is not sticky either way,
895 we must not just give its properties to the insertion.
f56b42ac
KH
896 So split this interval at the insertion point.
897
898 Originally, the if condition here was this:
899 (! (position == i->position || eobp)
900 && END_NONSTICKY_P (i)
901 && FRONT_NONSTICKY_P (i))
902 But, these macros are now unreliable because of introduction of
903 Vtext_property_default_nonsticky. So, we always check properties
904 one by one if POSITION is in middle of an interval. */
905 if (! (position == i->position || eobp))
2313b945 906 {
ca41a64d
RS
907 Lisp_Object tail;
908 Lisp_Object front, rear;
909
f56b42ac
KH
910 tail = i->plist;
911
912 /* Properties font-sticky and rear-nonsticky override
913 Vtext_property_default_nonsticky. So, if they are t, we can
914 skip one by one checking of properties. */
915 rear = textget (i->plist, Qrear_nonsticky);
916 if (! CONSP (rear) && ! NILP (rear))
917 {
918 /* All properties are nonsticky. We split the interval. */
919 goto check_done;
920 }
ca41a64d 921 front = textget (i->plist, Qfront_sticky);
f56b42ac
KH
922 if (! CONSP (front) && ! NILP (front))
923 {
924 /* All properties are sticky. We don't split the interval. */
925 tail = Qnil;
926 goto check_done;
927 }
ca41a64d 928
f56b42ac
KH
929 /* Does any actual property pose an actual problem? We break
930 the loop if we find a nonsticky property. */
931 for (; CONSP (tail); tail = Fcdr (XCDR (tail)))
ca41a64d 932 {
f56b42ac 933 Lisp_Object prop, tmp;
03699b14 934 prop = XCAR (tail);
ca41a64d 935
f56b42ac 936 /* Is this particular property front-sticky? */
ca41a64d
RS
937 if (CONSP (front) && ! NILP (Fmemq (prop, front)))
938 continue;
939
f56b42ac
KH
940 /* Is this particular property rear-nonsticky? */
941 if (CONSP (rear) && ! NILP (Fmemq (prop, rear)))
942 break;
943
944 /* Is this particular property recorded as sticky or
945 nonsticky in Vtext_property_default_nonsticky? */
946 tmp = Fassq (prop, Vtext_property_default_nonsticky);
947 if (CONSP (tmp))
948 {
949 if (NILP (tmp))
950 continue;
951 break;
952 }
953
954 /* By default, a text property is rear-sticky, thus we
955 continue the loop. */
ca41a64d
RS
956 }
957
f56b42ac 958 check_done:
ca41a64d
RS
959 /* If any property is a real problem, split the interval. */
960 if (! NILP (tail))
961 {
962 temp = split_interval_right (i, position - i->position);
963 copy_properties (i, temp);
964 i = temp;
965 }
2313b945
RS
966 }
967
90ba40fc 968 /* If we are positioned between intervals, check the stickiness of
7ce503fd
RS
969 both of them. We have to do this too, if we are at BEG or Z. */
970 if (position == i->position || eobp)
90ba40fc 971 {
7ce503fd
RS
972 register INTERVAL prev;
973
974 if (position == BEG)
975 prev = 0;
976 else if (eobp)
977 {
978 prev = i;
979 i = 0;
980 }
981 else
982 prev = previous_interval (i);
90ba40fc 983
7ce503fd
RS
984 /* Even if we are positioned between intervals, we default
985 to the left one if it exists. We extend it now and split
8e6208c5 986 off a part later, if stickiness demands it. */
439d5cb4 987 for (temp = prev ? prev : i; temp; temp = INTERVAL_PARENT_OR_NULL (temp))
4314dea4
RS
988 {
989 temp->total_length += length;
727fec2d 990 CHECK_TOTAL_LENGTH (temp);
4314dea4
RS
991 temp = balance_possible_root_interval (temp);
992 }
7d0393cf 993
7ce503fd 994 /* If at least one interval has sticky properties,
f56b42ac
KH
995 we check the stickiness property by property.
996
997 Originally, the if condition here was this:
998 (END_NONSTICKY_P (prev) || FRONT_STICKY_P (i))
999 But, these macros are now unreliable because of introduction
1000 of Vtext_property_default_nonsticky. So, we always have to
1001 check stickiness of properties one by one. If cache of
1002 stickiness is implemented in the future, we may be able to
1003 use those macros again. */
1004 if (1)
7ce503fd 1005 {
dd675b05 1006 Lisp_Object pleft, pright;
7ce503fd
RS
1007 struct interval newi;
1008
dd675b05
KH
1009 pleft = NULL_INTERVAL_P (prev) ? Qnil : prev->plist;
1010 pright = NULL_INTERVAL_P (i) ? Qnil : i->plist;
7ce503fd
RS
1011 newi.plist = merge_properties_sticky (pleft, pright);
1012
ef1900f3 1013 if (! prev) /* i.e. position == BEG */
7ce503fd
RS
1014 {
1015 if (! intervals_equal (i, &newi))
1016 {
1017 i = split_interval_left (i, length);
1018 i->plist = newi.plist;
1019 }
1020 }
1021 else if (! intervals_equal (prev, &newi))
1022 {
1023 prev = split_interval_right (prev,
1024 position - prev->position);
1025 prev->plist = newi.plist;
1026 if (! NULL_INTERVAL_P (i)
1027 && intervals_equal (prev, i))
1028 merge_interval_right (prev);
1029 }
1030
1031 /* We will need to update the cache here later. */
1032 }
1033 else if (! prev && ! NILP (i->plist))
1034 {
1035 /* Just split off a new interval at the left.
1036 Since I wasn't front-sticky, the empty plist is ok. */
1037 i = split_interval_left (i, length);
1038 }
90ba40fc
JA
1039 }
1040
7ce503fd
RS
1041 /* Otherwise just extend the interval. */
1042 else
90ba40fc 1043 {
439d5cb4 1044 for (temp = i; temp; temp = INTERVAL_PARENT_OR_NULL (temp))
4314dea4
RS
1045 {
1046 temp->total_length += length;
727fec2d 1047 CHECK_TOTAL_LENGTH (temp);
4314dea4
RS
1048 temp = balance_possible_root_interval (temp);
1049 }
90ba40fc 1050 }
7d0393cf 1051
90ba40fc
JA
1052 return tree;
1053}
7ce503fd 1054
45d82bdc
KH
1055/* Any property might be front-sticky on the left, rear-sticky on the left,
1056 front-sticky on the right, or rear-sticky on the right; the 16 combinations
1057 can be arranged in a matrix with rows denoting the left conditions and
1058 columns denoting the right conditions:
1059 _ __ _
1060_ FR FR FR FR
1061FR__ 0 1 2 3
1062 _FR 4 5 6 7
1063FR 8 9 A B
1064 FR C D E F
1065
1066 left-props = '(front-sticky (p8 p9 pa pb pc pd pe pf)
1067 rear-nonsticky (p4 p5 p6 p7 p8 p9 pa pb)
1068 p0 L p1 L p2 L p3 L p4 L p5 L p6 L p7 L
1069 p8 L p9 L pa L pb L pc L pd L pe L pf L)
1070 right-props = '(front-sticky (p2 p3 p6 p7 pa pb pe pf)
1071 rear-nonsticky (p1 p2 p5 p6 p9 pa pd pe)
1072 p0 R p1 R p2 R p3 R p4 R p5 R p6 R p7 R
1073 p8 R p9 R pa R pb R pc R pd R pe R pf R)
1074
1075 We inherit from whoever has a sticky side facing us. If both sides
1076 do (cases 2, 3, E, and F), then we inherit from whichever side has a
1077 non-nil value for the current property. If both sides do, then we take
1078 from the left.
1079
1080 When we inherit a property, we get its stickiness as well as its value.
1081 So, when we merge the above two lists, we expect to get this:
1082
1083 result = '(front-sticky (p6 p7 pa pb pc pd pe pf)
1084 rear-nonsticky (p6 pa)
1085 p0 L p1 L p2 L p3 L p6 R p7 R
1086 pa R pb R pc L pd L pe L pf L)
1087
1088 The optimizable special cases are:
1089 left rear-nonsticky = nil, right front-sticky = nil (inherit left)
1090 left rear-nonsticky = t, right front-sticky = t (inherit right)
1091 left rear-nonsticky = t, right front-sticky = nil (inherit none)
1092*/
1093
93ea6e8f 1094static Lisp_Object
971de7fb 1095merge_properties_sticky (Lisp_Object pleft, Lisp_Object pright)
7ce503fd 1096{
dd675b05
KH
1097 register Lisp_Object props, front, rear;
1098 Lisp_Object lfront, lrear, rfront, rrear;
4ab19eb3 1099 register Lisp_Object tail1, tail2, sym, lval, rval, cat;
45d82bdc 1100 int use_left, use_right;
4ab19eb3 1101 int lpresent;
7ce503fd 1102
dd675b05
KH
1103 props = Qnil;
1104 front = Qnil;
1105 rear = Qnil;
1106 lfront = textget (pleft, Qfront_sticky);
1107 lrear = textget (pleft, Qrear_nonsticky);
1108 rfront = textget (pright, Qfront_sticky);
1109 rrear = textget (pright, Qrear_nonsticky);
1110
45d82bdc 1111 /* Go through each element of PRIGHT. */
4867a283 1112 for (tail1 = pright; CONSP (tail1); tail1 = Fcdr (XCDR (tail1)))
7ce503fd 1113 {
f56b42ac
KH
1114 Lisp_Object tmp;
1115
4867a283 1116 sym = XCAR (tail1);
7ce503fd
RS
1117
1118 /* Sticky properties get special treatment. */
1119 if (EQ (sym, Qrear_nonsticky) || EQ (sym, Qfront_sticky))
1120 continue;
45d82bdc 1121
4867a283
SM
1122 rval = Fcar (XCDR (tail1));
1123 for (tail2 = pleft; CONSP (tail2); tail2 = Fcdr (XCDR (tail2)))
1124 if (EQ (sym, XCAR (tail2)))
45d82bdc 1125 break;
45d82bdc 1126
4ab19eb3
RS
1127 /* Indicate whether the property is explicitly defined on the left.
1128 (We know it is defined explicitly on the right
1129 because otherwise we don't get here.) */
1130 lpresent = ! NILP (tail2);
1131 lval = (NILP (tail2) ? Qnil : Fcar (Fcdr (tail2)));
1132
f56b42ac
KH
1133 /* Even if lrear or rfront say nothing about the stickiness of
1134 SYM, Vtext_property_default_nonsticky may give default
1135 stickiness to SYM. */
1136 tmp = Fassq (sym, Vtext_property_default_nonsticky);
1137 use_left = (lpresent
1138 && ! (TMEM (sym, lrear)
3a62677f 1139 || (CONSP (tmp) && ! NILP (XCDR (tmp)))));
f56b42ac
KH
1140 use_right = (TMEM (sym, rfront)
1141 || (CONSP (tmp) && NILP (XCDR (tmp))));
45d82bdc
KH
1142 if (use_left && use_right)
1143 {
4ab19eb3
RS
1144 if (NILP (lval))
1145 use_left = 0;
1146 else if (NILP (rval))
1147 use_right = 0;
45d82bdc
KH
1148 }
1149 if (use_left)
7ce503fd 1150 {
45d82bdc
KH
1151 /* We build props as (value sym ...) rather than (sym value ...)
1152 because we plan to nreverse it when we're done. */
4ab19eb3 1153 props = Fcons (lval, Fcons (sym, props));
45d82bdc 1154 if (TMEM (sym, lfront))
7ce503fd 1155 front = Fcons (sym, front);
45d82bdc
KH
1156 if (TMEM (sym, lrear))
1157 rear = Fcons (sym, rear);
7ce503fd 1158 }
45d82bdc 1159 else if (use_right)
7ce503fd 1160 {
4ab19eb3 1161 props = Fcons (rval, Fcons (sym, props));
45d82bdc
KH
1162 if (TMEM (sym, rfront))
1163 front = Fcons (sym, front);
1164 if (TMEM (sym, rrear))
1165 rear = Fcons (sym, rear);
7ce503fd
RS
1166 }
1167 }
45d82bdc
KH
1168
1169 /* Now go through each element of PLEFT. */
4867a283 1170 for (tail2 = pleft; CONSP (tail2); tail2 = Fcdr (XCDR (tail2)))
7ce503fd 1171 {
f56b42ac
KH
1172 Lisp_Object tmp;
1173
4867a283 1174 sym = XCAR (tail2);
7ce503fd
RS
1175
1176 /* Sticky properties get special treatment. */
1177 if (EQ (sym, Qrear_nonsticky) || EQ (sym, Qfront_sticky))
1178 continue;
1179
45d82bdc 1180 /* If sym is in PRIGHT, we've already considered it. */
4867a283
SM
1181 for (tail1 = pright; CONSP (tail1); tail1 = Fcdr (XCDR (tail1)))
1182 if (EQ (sym, XCAR (tail1)))
7ce503fd 1183 break;
45d82bdc
KH
1184 if (! NILP (tail1))
1185 continue;
1186
4867a283 1187 lval = Fcar (XCDR (tail2));
45d82bdc 1188
f56b42ac
KH
1189 /* Even if lrear or rfront say nothing about the stickiness of
1190 SYM, Vtext_property_default_nonsticky may give default
1191 stickiness to SYM. */
1192 tmp = Fassq (sym, Vtext_property_default_nonsticky);
1193
45d82bdc 1194 /* Since rval is known to be nil in this loop, the test simplifies. */
f56b42ac 1195 if (! (TMEM (sym, lrear) || (CONSP (tmp) && ! NILP (XCDR (tmp)))))
7ce503fd 1196 {
4ab19eb3 1197 props = Fcons (lval, Fcons (sym, props));
45d82bdc
KH
1198 if (TMEM (sym, lfront))
1199 front = Fcons (sym, front);
1200 }
f56b42ac 1201 else if (TMEM (sym, rfront) || (CONSP (tmp) && NILP (XCDR (tmp))))
45d82bdc
KH
1202 {
1203 /* The value is nil, but we still inherit the stickiness
1204 from the right. */
7ce503fd 1205 front = Fcons (sym, front);
45d82bdc 1206 if (TMEM (sym, rrear))
7ce503fd
RS
1207 rear = Fcons (sym, rear);
1208 }
1209 }
550bd63a 1210 props = Fnreverse (props);
7ce503fd 1211 if (! NILP (rear))
550bd63a 1212 props = Fcons (Qrear_nonsticky, Fcons (Fnreverse (rear), props));
4ab19eb3
RS
1213
1214 cat = textget (props, Qcategory);
1215 if (! NILP (front)
7d0393cf 1216 &&
4ab19eb3
RS
1217 /* If we have inherited a front-stick category property that is t,
1218 we don't need to set up a detailed one. */
1219 ! (! NILP (cat) && SYMBOLP (cat)
1220 && EQ (Fget (cat, Qfront_sticky), Qt)))
45d82bdc 1221 props = Fcons (Qfront_sticky, Fcons (Fnreverse (front), props));
7ce503fd 1222 return props;
7ce503fd
RS
1223}
1224
a50699fd 1225\f
7d0393cf 1226/* Delete a node I from its interval tree by merging its subtrees
90ba40fc 1227 into one subtree which is then returned. Caller is responsible for
7ce503fd 1228 storing the resulting subtree into its parent. */
a50699fd
JA
1229
1230static INTERVAL
971de7fb 1231delete_node (register INTERVAL i)
a50699fd
JA
1232{
1233 register INTERVAL migrate, this;
c50bd0d2 1234 register EMACS_INT migrate_amt;
a50699fd
JA
1235
1236 if (NULL_INTERVAL_P (i->left))
1237 return i->right;
1238 if (NULL_INTERVAL_P (i->right))
1239 return i->left;
1240
1241 migrate = i->left;
1242 migrate_amt = i->left->total_length;
1243 this = i->right;
1244 this->total_length += migrate_amt;
1245 while (! NULL_INTERVAL_P (this->left))
1246 {
1247 this = this->left;
1248 this->total_length += migrate_amt;
1249 }
727fec2d 1250 CHECK_TOTAL_LENGTH (this);
a50699fd 1251 this->left = migrate;
439d5cb4 1252 SET_INTERVAL_PARENT (migrate, this);
a50699fd
JA
1253
1254 return i->right;
1255}
1256
1257/* Delete interval I from its tree by calling `delete_node'
1258 and properly connecting the resultant subtree.
1259
1260 I is presumed to be empty; that is, no adjustments are made
7ce503fd 1261 for the length of I. */
a50699fd 1262
93ea6e8f 1263static void
971de7fb 1264delete_interval (register INTERVAL i)
a50699fd
JA
1265{
1266 register INTERVAL parent;
c50bd0d2 1267 EMACS_INT amt = LENGTH (i);
a50699fd 1268
7ce503fd 1269 if (amt > 0) /* Only used on zero-length intervals now. */
a50699fd
JA
1270 abort ();
1271
1272 if (ROOT_INTERVAL_P (i))
1273 {
dd675b05 1274 Lisp_Object owner;
439d5cb4 1275 GET_INTERVAL_OBJECT (owner, i);
a50699fd
JA
1276 parent = delete_node (i);
1277 if (! NULL_INTERVAL_P (parent))
439d5cb4 1278 SET_INTERVAL_OBJECT (parent, owner);
a50699fd 1279
b629dd47 1280 if (BUFFERP (owner))
e5d967c9 1281 BUF_INTERVALS (XBUFFER (owner)) = parent;
b629dd47 1282 else if (STRINGP (owner))
b13738b6 1283 STRING_SET_INTERVALS (owner, parent);
a50699fd
JA
1284 else
1285 abort ();
1286
1287 return;
1288 }
1289
439d5cb4 1290 parent = INTERVAL_PARENT (i);
a50699fd
JA
1291 if (AM_LEFT_CHILD (i))
1292 {
1293 parent->left = delete_node (i);
1294 if (! NULL_INTERVAL_P (parent->left))
439d5cb4 1295 SET_INTERVAL_PARENT (parent->left, parent);
a50699fd
JA
1296 }
1297 else
1298 {
1299 parent->right = delete_node (i);
1300 if (! NULL_INTERVAL_P (parent->right))
439d5cb4 1301 SET_INTERVAL_PARENT (parent->right, parent);
a50699fd
JA
1302 }
1303}
1304\f
24e3d3bf
JB
1305/* Find the interval in TREE corresponding to the relative position
1306 FROM and delete as much as possible of AMOUNT from that interval.
1307 Return the amount actually deleted, and if the interval was
1308 zeroed-out, delete that interval node from the tree.
1309
1310 Note that FROM is actually origin zero, aka relative to the
1311 leftmost edge of tree. This is appropriate since we call ourselves
1312 recursively on subtrees.
a50699fd 1313
1d1d7ba0 1314 Do this by recursing down TREE to the interval in question, and
7ce503fd 1315 deleting the appropriate amount of text. */
a50699fd 1316
c20db43f 1317static EMACS_INT
c50bd0d2
CY
1318interval_deletion_adjustment (register INTERVAL tree, register EMACS_INT from,
1319 register EMACS_INT amount)
a50699fd 1320{
c50bd0d2 1321 register EMACS_INT relative_position = from;
a50699fd
JA
1322
1323 if (NULL_INTERVAL_P (tree))
1324 return 0;
1325
1326 /* Left branch */
24e3d3bf 1327 if (relative_position < LEFT_TOTAL_LENGTH (tree))
a50699fd 1328 {
c20db43f
PE
1329 EMACS_INT subtract = interval_deletion_adjustment (tree->left,
1330 relative_position,
1331 amount);
a50699fd 1332 tree->total_length -= subtract;
727fec2d 1333 CHECK_TOTAL_LENGTH (tree);
a50699fd
JA
1334 return subtract;
1335 }
1336 /* Right branch */
24e3d3bf
JB
1337 else if (relative_position >= (TOTAL_LENGTH (tree)
1338 - RIGHT_TOTAL_LENGTH (tree)))
a50699fd 1339 {
c20db43f 1340 EMACS_INT subtract;
a50699fd
JA
1341
1342 relative_position -= (tree->total_length
1343 - RIGHT_TOTAL_LENGTH (tree));
1344 subtract = interval_deletion_adjustment (tree->right,
1345 relative_position,
1346 amount);
1347 tree->total_length -= subtract;
727fec2d 1348 CHECK_TOTAL_LENGTH (tree);
a50699fd
JA
1349 return subtract;
1350 }
7ce503fd 1351 /* Here -- this node. */
a50699fd
JA
1352 else
1353 {
24e3d3bf 1354 /* How much can we delete from this interval? */
c50bd0d2 1355 EMACS_INT my_amount = ((tree->total_length
e79123aa
EZ
1356 - RIGHT_TOTAL_LENGTH (tree))
1357 - relative_position);
24e3d3bf
JB
1358
1359 if (amount > my_amount)
1360 amount = my_amount;
1361
1362 tree->total_length -= amount;
727fec2d 1363 CHECK_TOTAL_LENGTH (tree);
24e3d3bf
JB
1364 if (LENGTH (tree) == 0)
1365 delete_interval (tree);
7d0393cf 1366
24e3d3bf 1367 return amount;
a50699fd
JA
1368 }
1369
7ce503fd 1370 /* Never reach here. */
a50699fd
JA
1371}
1372
24e3d3bf
JB
1373/* Effect the adjustments necessary to the interval tree of BUFFER to
1374 correspond to the deletion of LENGTH characters from that buffer
1375 text. The deletion is effected at position START (which is a
7ce503fd 1376 buffer position, i.e. origin 1). */
1d1d7ba0 1377
a50699fd 1378static void
e79123aa
EZ
1379adjust_intervals_for_deletion (struct buffer *buffer,
1380 EMACS_INT start, EMACS_INT length)
a50699fd 1381{
c20db43f 1382 register EMACS_INT left_to_delete = length;
e5d967c9 1383 register INTERVAL tree = BUF_INTERVALS (buffer);
944d4e4b 1384 Lisp_Object parent;
c50bd0d2 1385 EMACS_INT offset;
944d4e4b 1386
439d5cb4 1387 GET_INTERVAL_OBJECT (parent, tree);
944d4e4b 1388 offset = (BUFFERP (parent) ? BUF_BEG (XBUFFER (parent)) : 0);
a50699fd
JA
1389
1390 if (NULL_INTERVAL_P (tree))
1391 return;
1392
944d4e4b
KH
1393 if (start > offset + TOTAL_LENGTH (tree)
1394 || start + length > offset + TOTAL_LENGTH (tree))
24e3d3bf
JB
1395 abort ();
1396
a50699fd
JA
1397 if (length == TOTAL_LENGTH (tree))
1398 {
e5d967c9 1399 BUF_INTERVALS (buffer) = NULL_INTERVAL;
a50699fd
JA
1400 return;
1401 }
1402
1403 if (ONLY_INTERVAL_P (tree))
1404 {
1405 tree->total_length -= length;
727fec2d 1406 CHECK_TOTAL_LENGTH (tree);
a50699fd
JA
1407 return;
1408 }
1409
944d4e4b
KH
1410 if (start > offset + TOTAL_LENGTH (tree))
1411 start = offset + TOTAL_LENGTH (tree);
a50699fd
JA
1412 while (left_to_delete > 0)
1413 {
944d4e4b 1414 left_to_delete -= interval_deletion_adjustment (tree, start - offset,
a50699fd 1415 left_to_delete);
e5d967c9 1416 tree = BUF_INTERVALS (buffer);
a50699fd
JA
1417 if (left_to_delete == tree->total_length)
1418 {
e5d967c9 1419 BUF_INTERVALS (buffer) = NULL_INTERVAL;
a50699fd
JA
1420 return;
1421 }
1422 }
1423}
1424\f
eb8c3be9 1425/* Make the adjustments necessary to the interval tree of BUFFER to
1d1d7ba0
JA
1426 represent an addition or deletion of LENGTH characters starting
1427 at position START. Addition or deletion is indicated by the sign
a9041e6c 1428 of LENGTH.
a50699fd 1429
a9041e6c
PE
1430 The two inline functions (one static) pacify Sun C 5.8, a pre-C99
1431 compiler that does not allow calling a static function (here,
1432 adjust_intervals_for_deletion) from a non-static inline function. */
1433
1434static inline void
1435static_offset_intervals (struct buffer *buffer, EMACS_INT start,
1436 EMACS_INT length)
a50699fd 1437{
e5d967c9 1438 if (NULL_INTERVAL_P (BUF_INTERVALS (buffer)) || length == 0)
a50699fd
JA
1439 return;
1440
1441 if (length > 0)
e5d967c9 1442 adjust_intervals_for_insertion (BUF_INTERVALS (buffer), start, length);
a50699fd 1443 else
37aa2f85
PE
1444 {
1445 IF_LINT (if (length < - TYPE_MAXIMUM (EMACS_INT)) abort ();)
1446 adjust_intervals_for_deletion (buffer, start, -length);
1447 }
a50699fd 1448}
a9041e6c
PE
1449
1450inline void
1451offset_intervals (struct buffer *buffer, EMACS_INT start, EMACS_INT length)
1452{
1453 static_offset_intervals (buffer, start, length);
1454}
9c79dd1b
JA
1455\f
1456/* Merge interval I with its lexicographic successor. The resulting
1457 interval is returned, and has the properties of the original
1458 successor. The properties of I are lost. I is removed from the
1459 interval tree.
1460
1461 IMPORTANT:
1462 The caller must verify that this is not the last (rightmost)
7ce503fd 1463 interval. */
9c79dd1b 1464
93ea6e8f 1465static INTERVAL
971de7fb 1466merge_interval_right (register INTERVAL i)
9c79dd1b 1467{
c50bd0d2 1468 register EMACS_INT absorb = LENGTH (i);
9c79dd1b
JA
1469 register INTERVAL successor;
1470
7ce503fd 1471 /* Zero out this interval. */
9c79dd1b 1472 i->total_length -= absorb;
727fec2d 1473 CHECK_TOTAL_LENGTH (i);
9c79dd1b 1474
7ce503fd 1475 /* Find the succeeding interval. */
9c79dd1b 1476 if (! NULL_RIGHT_CHILD (i)) /* It's below us. Add absorb
7ce503fd 1477 as we descend. */
9c79dd1b
JA
1478 {
1479 successor = i->right;
1480 while (! NULL_LEFT_CHILD (successor))
1481 {
1482 successor->total_length += absorb;
727fec2d 1483 CHECK_TOTAL_LENGTH (successor);
9c79dd1b
JA
1484 successor = successor->left;
1485 }
1486
1487 successor->total_length += absorb;
727fec2d 1488 CHECK_TOTAL_LENGTH (successor);
9c79dd1b
JA
1489 delete_interval (i);
1490 return successor;
1491 }
1492
1493 successor = i;
1494 while (! NULL_PARENT (successor)) /* It's above us. Subtract as
7ce503fd 1495 we ascend. */
9c79dd1b
JA
1496 {
1497 if (AM_LEFT_CHILD (successor))
1498 {
439d5cb4 1499 successor = INTERVAL_PARENT (successor);
9c79dd1b
JA
1500 delete_interval (i);
1501 return successor;
1502 }
1503
439d5cb4 1504 successor = INTERVAL_PARENT (successor);
9c79dd1b 1505 successor->total_length -= absorb;
727fec2d 1506 CHECK_TOTAL_LENGTH (successor);
9c79dd1b
JA
1507 }
1508
1509 /* This must be the rightmost or last interval and cannot
7ce503fd 1510 be merged right. The caller should have known. */
9c79dd1b
JA
1511 abort ();
1512}
1513\f
1514/* Merge interval I with its lexicographic predecessor. The resulting
1515 interval is returned, and has the properties of the original predecessor.
1516 The properties of I are lost. Interval node I is removed from the tree.
1517
1518 IMPORTANT:
7ce503fd 1519 The caller must verify that this is not the first (leftmost) interval. */
9c79dd1b
JA
1520
1521INTERVAL
971de7fb 1522merge_interval_left (register INTERVAL i)
9c79dd1b 1523{
c50bd0d2 1524 register EMACS_INT absorb = LENGTH (i);
9c79dd1b
JA
1525 register INTERVAL predecessor;
1526
7ce503fd 1527 /* Zero out this interval. */
9c79dd1b 1528 i->total_length -= absorb;
727fec2d 1529 CHECK_TOTAL_LENGTH (i);
9c79dd1b 1530
7ce503fd 1531 /* Find the preceding interval. */
9c79dd1b 1532 if (! NULL_LEFT_CHILD (i)) /* It's below us. Go down,
7ce503fd 1533 adding ABSORB as we go. */
9c79dd1b
JA
1534 {
1535 predecessor = i->left;
1536 while (! NULL_RIGHT_CHILD (predecessor))
1537 {
1538 predecessor->total_length += absorb;
727fec2d 1539 CHECK_TOTAL_LENGTH (predecessor);
9c79dd1b
JA
1540 predecessor = predecessor->right;
1541 }
1542
1543 predecessor->total_length += absorb;
727fec2d 1544 CHECK_TOTAL_LENGTH (predecessor);
9c79dd1b
JA
1545 delete_interval (i);
1546 return predecessor;
1547 }
1548
1549 predecessor = i;
1550 while (! NULL_PARENT (predecessor)) /* It's above us. Go up,
7ce503fd 1551 subtracting ABSORB. */
9c79dd1b
JA
1552 {
1553 if (AM_RIGHT_CHILD (predecessor))
1554 {
439d5cb4 1555 predecessor = INTERVAL_PARENT (predecessor);
9c79dd1b
JA
1556 delete_interval (i);
1557 return predecessor;
1558 }
1559
439d5cb4 1560 predecessor = INTERVAL_PARENT (predecessor);
9c79dd1b 1561 predecessor->total_length -= absorb;
727fec2d 1562 CHECK_TOTAL_LENGTH (predecessor);
9c79dd1b 1563 }
a50699fd 1564
9c79dd1b 1565 /* This must be the leftmost or first interval and cannot
7ce503fd 1566 be merged left. The caller should have known. */
9c79dd1b
JA
1567 abort ();
1568}
1569\f
1d1d7ba0
JA
1570/* Make an exact copy of interval tree SOURCE which descends from
1571 PARENT. This is done by recursing through SOURCE, copying
1572 the current interval and its properties, and then adjusting
7ce503fd 1573 the pointers of the copy. */
1d1d7ba0 1574
a50699fd 1575static INTERVAL
971de7fb 1576reproduce_tree (INTERVAL source, INTERVAL parent)
a50699fd
JA
1577{
1578 register INTERVAL t = make_interval ();
1579
72af86bd 1580 memcpy (t, source, INTERVAL_SIZE);
a50699fd 1581 copy_properties (source, t);
439d5cb4
KR
1582 SET_INTERVAL_PARENT (t, parent);
1583 if (! NULL_LEFT_CHILD (source))
1584 t->left = reproduce_tree (source->left, t);
1585 if (! NULL_RIGHT_CHILD (source))
1586 t->right = reproduce_tree (source->right, t);
1587
1588 return t;
1589}
1590
1591static INTERVAL
971de7fb 1592reproduce_tree_obj (INTERVAL source, Lisp_Object parent)
439d5cb4
KR
1593{
1594 register INTERVAL t = make_interval ();
1595
72af86bd 1596 memcpy (t, source, INTERVAL_SIZE);
439d5cb4
KR
1597 copy_properties (source, t);
1598 SET_INTERVAL_OBJECT (t, parent);
a50699fd
JA
1599 if (! NULL_LEFT_CHILD (source))
1600 t->left = reproduce_tree (source->left, t);
1601 if (! NULL_RIGHT_CHILD (source))
1602 t->right = reproduce_tree (source->right, t);
1603
1604 return t;
1605}
1606
24e3d3bf
JB
1607#if 0
1608/* Nobody calls this. Perhaps it's a vestige of an earlier design. */
1609
1d1d7ba0
JA
1610/* Make a new interval of length LENGTH starting at START in the
1611 group of intervals INTERVALS, which is actually an interval tree.
1612 Returns the new interval.
1613
1614 Generate an error if the new positions would overlap an existing
7ce503fd 1615 interval. */
1d1d7ba0 1616
a50699fd
JA
1617static INTERVAL
1618make_new_interval (intervals, start, length)
1619 INTERVAL intervals;
e79123aa 1620 EMACS_INT start, length;
a50699fd
JA
1621{
1622 INTERVAL slot;
1623
1624 slot = find_interval (intervals, start);
1625 if (start + length > slot->position + LENGTH (slot))
1626 error ("Interval would overlap");
1627
1628 if (start == slot->position && length == LENGTH (slot))
1629 return slot;
1630
1631 if (slot->position == start)
1632 {
7ce503fd 1633 /* New right node. */
2bc7a79b 1634 split_interval_right (slot, length);
a50699fd
JA
1635 return slot;
1636 }
1637
1638 if (slot->position + LENGTH (slot) == start + length)
1639 {
7ce503fd 1640 /* New left node. */
2bc7a79b 1641 split_interval_left (slot, LENGTH (slot) - length);
a50699fd
JA
1642 return slot;
1643 }
1644
7ce503fd 1645 /* Convert interval SLOT into three intervals. */
2bc7a79b
JB
1646 split_interval_left (slot, start - slot->position);
1647 split_interval_right (slot, length);
a50699fd
JA
1648 return slot;
1649}
24e3d3bf 1650#endif
294efdbe 1651\f
9c79dd1b 1652/* Insert the intervals of SOURCE into BUFFER at POSITION.
0b79989f 1653 LENGTH is the length of the text in SOURCE.
a50699fd 1654
944d4e4b
KH
1655 The `position' field of the SOURCE intervals is assumed to be
1656 consistent with its parent; therefore, SOURCE must be an
1657 interval tree made with copy_interval or must be the whole
1658 tree of a buffer or a string.
1659
2bc7a79b
JB
1660 This is used in insdel.c when inserting Lisp_Strings into the
1661 buffer. The text corresponding to SOURCE is already in the buffer
1662 when this is called. The intervals of new tree are a copy of those
1663 belonging to the string being inserted; intervals are never
1664 shared.
a50699fd 1665
0b79989f
RS
1666 If the inserted text had no intervals associated, and we don't
1667 want to inherit the surrounding text's properties, this function
a50699fd 1668 simply returns -- offset_intervals should handle placing the
90ba40fc 1669 text in the correct interval, depending on the sticky bits.
a50699fd
JA
1670
1671 If the inserted text had properties (intervals), then there are two
1672 cases -- either insertion happened in the middle of some interval,
1673 or between two intervals.
1674
1675 If the text goes into the middle of an interval, then new
1676 intervals are created in the middle with only the properties of
1677 the new text, *unless* the macro MERGE_INSERTIONS is true, in
1678 which case the new text has the union of its properties and those
1679 of the text into which it was inserted.
1680
1681 If the text goes between two intervals, then if neither interval
90ba40fc
JA
1682 had its appropriate sticky property set (front_sticky, rear_sticky),
1683 the new text has only its properties. If one of the sticky properties
a50699fd 1684 is set, then the new text "sticks" to that region and its properties
eb8c3be9 1685 depend on merging as above. If both the preceding and succeeding
90ba40fc
JA
1686 intervals to the new text are "sticky", then the new text retains
1687 only its properties, as if neither sticky property were set. Perhaps
a50699fd 1688 we should consider merging all three sets of properties onto the new
7ce503fd 1689 text... */
a50699fd
JA
1690
1691void
e79123aa
EZ
1692graft_intervals_into_buffer (INTERVAL source, EMACS_INT position,
1693 EMACS_INT length, struct buffer *buffer,
1694 int inherit)
a50699fd 1695{
dc6c6455 1696 register INTERVAL under, over, this;
e5d967c9 1697 register INTERVAL tree;
c50bd0d2 1698 EMACS_INT over_used;
a50699fd 1699
e5d967c9
RS
1700 tree = BUF_INTERVALS (buffer);
1701
34e096ed
RS
1702 /* If the new text has no properties, then with inheritance it
1703 becomes part of whatever interval it was inserted into.
1704 To prevent inheritance, we must clear out the properties
1705 of the newly inserted text. */
9c79dd1b 1706 if (NULL_INTERVAL_P (source))
0b79989f
RS
1707 {
1708 Lisp_Object buf;
201ffa57 1709 if (!inherit && !NULL_INTERVAL_P (tree) && length > 0)
0b79989f 1710 {
55cfc731 1711 XSETBUFFER (buf, buffer);
34e096ed
RS
1712 set_text_properties_1 (make_number (position),
1713 make_number (position + length),
1714 Qnil, buf, 0);
0b79989f 1715 }
e5d967c9 1716 if (! NULL_INTERVAL_P (BUF_INTERVALS (buffer)))
4867a283 1717 /* Shouldn't be necessary. -stef */
e5d967c9 1718 BUF_INTERVALS (buffer) = balance_an_interval (BUF_INTERVALS (buffer));
0b79989f
RS
1719 return;
1720 }
a50699fd 1721
a50699fd
JA
1722 if (NULL_INTERVAL_P (tree))
1723 {
1724 /* The inserted text constitutes the whole buffer, so
7ce503fd 1725 simply copy over the interval structure. */
2bc7a79b 1726 if ((BUF_Z (buffer) - BUF_BEG (buffer)) == TOTAL_LENGTH (source))
a50699fd 1727 {
b8e4857c 1728 Lisp_Object buf;
55cfc731 1729 XSETBUFFER (buf, buffer);
439d5cb4 1730 BUF_INTERVALS (buffer) = reproduce_tree_obj (source, buf);
4867a283 1731 BUF_INTERVALS (buffer)->position = BEG;
6b61353c 1732 BUF_INTERVALS (buffer)->up_obj = 1;
944d4e4b
KH
1733
1734 /* Explicitly free the old tree here? */
a50699fd
JA
1735
1736 return;
1737 }
1738
1739 /* Create an interval tree in which to place a copy
7ce503fd 1740 of the intervals of the inserted string. */
a50699fd 1741 {
249a6da9 1742 Lisp_Object buf;
55cfc731 1743 XSETBUFFER (buf, buffer);
323a7ad4 1744 tree = create_root_interval (buf);
a50699fd
JA
1745 }
1746 }
7ea69158
RS
1747 else if (TOTAL_LENGTH (tree) == TOTAL_LENGTH (source))
1748 /* If the buffer contains only the new string, but
1749 there was already some interval tree there, then it may be
1750 some zero length intervals. Eventually, do something clever
1751 about inserting properly. For now, just waste the old intervals. */
1752 {
439d5cb4 1753 BUF_INTERVALS (buffer) = reproduce_tree (source, INTERVAL_PARENT (tree));
4867a283 1754 BUF_INTERVALS (buffer)->position = BEG;
6b61353c 1755 BUF_INTERVALS (buffer)->up_obj = 1;
7ea69158 1756 /* Explicitly free the old tree here. */
a50699fd 1757
7ea69158
RS
1758 return;
1759 }
1760 /* Paranoia -- the text has already been added, so this buffer
1761 should be of non-zero length. */
1762 else if (TOTAL_LENGTH (tree) == 0)
1763 abort ();
a50699fd
JA
1764
1765 this = under = find_interval (tree, position);
1766 if (NULL_INTERVAL_P (under)) /* Paranoia */
1767 abort ();
944d4e4b 1768 over = find_interval (source, interval_start_pos (source));
a50699fd 1769
323a7ad4
RS
1770 /* Here for insertion in the middle of an interval.
1771 Split off an equivalent interval to the right,
1772 then don't bother with it any more. */
a50699fd 1773
323a7ad4 1774 if (position > under->position)
a50699fd
JA
1775 {
1776 INTERVAL end_unchanged
2bc7a79b 1777 = split_interval_left (this, position - under->position);
a50699fd 1778 copy_properties (under, end_unchanged);
323a7ad4 1779 under->position = position;
a50699fd 1780 }
323a7ad4
RS
1781 else
1782 {
f56b42ac
KH
1783 /* This call may have some effect because previous_interval may
1784 update `position' fields of intervals. Thus, don't ignore it
1785 for the moment. Someone please tell me the truth (K.Handa). */
dc6c6455
PE
1786 INTERVAL prev = previous_interval (under);
1787 (void) prev;
f56b42ac
KH
1788#if 0
1789 /* But, this code surely has no effect. And, anyway,
1790 END_NONSTICKY_P is unreliable now. */
7ce503fd 1791 if (prev && !END_NONSTICKY_P (prev))
323a7ad4 1792 prev = 0;
f56b42ac 1793#endif /* 0 */
323a7ad4
RS
1794 }
1795
1796 /* Insertion is now at beginning of UNDER. */
a50699fd 1797
323a7ad4 1798 /* The inserted text "sticks" to the interval `under',
7ce503fd
RS
1799 which means it gets those properties.
1800 The properties of under are the result of
8e6208c5 1801 adjust_intervals_for_insertion, so stickiness has
7ce503fd 1802 already been taken care of. */
7d0393cf 1803
6b61353c
KH
1804 /* OVER is the interval we are copying from next.
1805 OVER_USED says how many characters' worth of OVER
1806 have already been copied into target intervals.
1807 UNDER is the next interval in the target. */
1808 over_used = 0;
a50699fd
JA
1809 while (! NULL_INTERVAL_P (over))
1810 {
6b61353c
KH
1811 /* If UNDER is longer than OVER, split it. */
1812 if (LENGTH (over) - over_used < LENGTH (under))
7ce503fd 1813 {
6b61353c 1814 this = split_interval_left (under, LENGTH (over) - over_used);
7ce503fd
RS
1815 copy_properties (under, this);
1816 }
323a7ad4
RS
1817 else
1818 this = under;
6b61353c
KH
1819
1820 /* THIS is now the interval to copy or merge into.
1821 OVER covers all of it. */
7ea69158 1822 if (inherit)
7ce503fd
RS
1823 merge_properties (over, this);
1824 else
1825 copy_properties (over, this);
6b61353c
KH
1826
1827 /* If THIS and OVER end at the same place,
1828 advance OVER to a new source interval. */
1829 if (LENGTH (this) == LENGTH (over) - over_used)
1830 {
1831 over = next_interval (over);
1832 over_used = 0;
1833 }
1834 else
1835 /* Otherwise just record that more of OVER has been used. */
1836 over_used += LENGTH (this);
1837
1838 /* Always advance to a new target interval. */
1839 under = next_interval (this);
a50699fd
JA
1840 }
1841
e5d967c9
RS
1842 if (! NULL_INTERVAL_P (BUF_INTERVALS (buffer)))
1843 BUF_INTERVALS (buffer) = balance_an_interval (BUF_INTERVALS (buffer));
a50699fd
JA
1844 return;
1845}
1846
5cae0ec6
RS
1847/* Get the value of property PROP from PLIST,
1848 which is the plist of an interval.
7d0393cf 1849 We check for direct properties, for categories with property PROP,
06d92327 1850 and for PROP appearing on the default-text-properties list. */
5cae0ec6
RS
1851
1852Lisp_Object
971de7fb 1853textget (Lisp_Object plist, register Lisp_Object prop)
323a7ad4 1854{
91b53904 1855 return lookup_char_property (plist, prop, 1);
948fe32d
CW
1856}
1857
1858Lisp_Object
971de7fb 1859lookup_char_property (Lisp_Object plist, register Lisp_Object prop, int textprop)
948fe32d
CW
1860{
1861 register Lisp_Object tail, fallback = Qnil;
323a7ad4 1862
91b53904 1863 for (tail = plist; CONSP (tail); tail = Fcdr (XCDR (tail)))
323a7ad4
RS
1864 {
1865 register Lisp_Object tem;
91b53904 1866 tem = XCAR (tail);
323a7ad4 1867 if (EQ (prop, tem))
91b53904 1868 return Fcar (XCDR (tail));
5cae0ec6 1869 if (EQ (tem, Qcategory))
5dd6606e 1870 {
91b53904 1871 tem = Fcar (XCDR (tail));
5dd6606e
RS
1872 if (SYMBOLP (tem))
1873 fallback = Fget (tem, prop);
1874 }
323a7ad4 1875 }
5cae0ec6 1876
70743ff1
BG
1877 if (! NILP (fallback))
1878 return fallback;
948fe32d
CW
1879 /* Check for alternative properties */
1880 tail = Fassq (prop, Vchar_property_alias_alist);
931285e2
LT
1881 if (! NILP (tail))
1882 {
1883 tail = XCDR (tail);
1884 for (; NILP (fallback) && CONSP (tail); tail = XCDR (tail))
1885 fallback = Fplist_get (plist, XCAR (tail));
1886 }
1887
948fe32d
CW
1888 if (textprop && NILP (fallback) && CONSP (Vdefault_text_properties))
1889 fallback = Fplist_get (Vdefault_text_properties, prop);
1890 return fallback;
323a7ad4 1891}
7ce503fd 1892
294efdbe 1893\f
ef1900f3
RS
1894/* Set point in BUFFER "temporarily" to CHARPOS, which corresponds to
1895 byte position BYTEPOS. */
1896
55d4c1b2 1897inline void
6ba7f443
SM
1898temp_set_point_both (struct buffer *buffer,
1899 EMACS_INT charpos, EMACS_INT bytepos)
ef1900f3
RS
1900{
1901 /* In a single-byte buffer, the two positions must be equal. */
1902 if (BUF_ZV (buffer) == BUF_ZV_BYTE (buffer)
1903 && charpos != bytepos)
1904 abort ();
1905
1906 if (charpos > bytepos)
1907 abort ();
1908
1909 if (charpos > BUF_ZV (buffer) || charpos < BUF_BEGV (buffer))
1910 abort ();
1911
cffc6f3b 1912 SET_BUF_PT_BOTH (buffer, charpos, bytepos);
ef1900f3
RS
1913}
1914
f8ab8c1f
EZ
1915/* Set point "temporarily", without checking any text properties. */
1916
55d4c1b2 1917inline void
f8ab8c1f
EZ
1918temp_set_point (struct buffer *buffer, EMACS_INT charpos)
1919{
1920 temp_set_point_both (buffer, charpos,
1921 buf_charpos_to_bytepos (buffer, charpos));
1922}
1923
7d0393cf 1924/* Set point in BUFFER to CHARPOS. If the target position is
f65013b0 1925 before an intangible character, move to an ok place. */
a50699fd
JA
1926
1927void
6ba7f443 1928set_point (EMACS_INT charpos)
ef1900f3 1929{
6ba7f443 1930 set_point_both (charpos, buf_charpos_to_bytepos (current_buffer, charpos));
ef1900f3
RS
1931}
1932
f0dcf801
MB
1933/* If there's an invisible character at position POS + TEST_OFFS in the
1934 current buffer, and the invisible property has a `stickiness' such that
1935 inserting a character at position POS would inherit the property it,
1936 return POS + ADJ, otherwise return POS. If TEST_INTANG is non-zero,
1937 then intangibility is required as well as invisibleness.
1938
1939 TEST_OFFS should be either 0 or -1, and ADJ should be either 1 or -1.
1940
1941 Note that `stickiness' is determined by overlay marker insertion types,
7d0393cf 1942 if the invisible property comes from an overlay. */
f0dcf801 1943
fe3537c3 1944static EMACS_INT
e79123aa
EZ
1945adjust_for_invis_intang (EMACS_INT pos, EMACS_INT test_offs, EMACS_INT adj,
1946 int test_intang)
f0dcf801
MB
1947{
1948 Lisp_Object invis_propval, invis_overlay;
1949 Lisp_Object test_pos;
1950
1951 if ((adj < 0 && pos + adj < BEGV) || (adj > 0 && pos + adj > ZV))
1952 /* POS + ADJ would be beyond the buffer bounds, so do no adjustment. */
1953 return pos;
1954
1955 test_pos = make_number (pos + test_offs);
1956
1957 invis_propval
1958 = get_char_property_and_overlay (test_pos, Qinvisible, Qnil,
1959 &invis_overlay);
1960
1961 if ((!test_intang
1962 || ! NILP (Fget_char_property (test_pos, Qintangible, Qnil)))
1963 && TEXT_PROP_MEANS_INVISIBLE (invis_propval)
1964 /* This next test is true if the invisible property has a stickiness
1965 such that an insertion at POS would inherit it. */
1966 && (NILP (invis_overlay)
1967 /* Invisible property is from a text-property. */
4867a283 1968 ? (text_property_stickiness (Qinvisible, make_number (pos), Qnil)
f0dcf801
MB
1969 == (test_offs == 0 ? 1 : -1))
1970 /* Invisible property is from an overlay. */
1971 : (test_offs == 0
1972 ? XMARKER (OVERLAY_START (invis_overlay))->insertion_type == 0
1973 : XMARKER (OVERLAY_END (invis_overlay))->insertion_type == 1)))
1974 pos += adj;
1975
1976 return pos;
1977}
1978
ef1900f3 1979/* Set point in BUFFER to CHARPOS, which corresponds to byte
7d0393cf 1980 position BYTEPOS. If the target position is
ef1900f3
RS
1981 before an intangible character, move to an ok place. */
1982
1983void
6ba7f443 1984set_point_both (EMACS_INT charpos, EMACS_INT bytepos)
a50699fd 1985{
e39adcda 1986 register INTERVAL to, from, toprev, fromprev;
6ba7f443
SM
1987 EMACS_INT buffer_point;
1988 EMACS_INT old_position = PT;
594a1605
CY
1989 /* This ensures that we move forward past intangible text when the
1990 initial position is the same as the destination, in the rare
1991 instances where this is important, e.g. in line-move-finish
1992 (simple.el). */
ef1900f3 1993 int backwards = (charpos < old_position ? 1 : 0);
580fae94 1994 int have_overlays;
6ba7f443 1995 EMACS_INT original_position;
a50699fd 1996
4b4deea2 1997 BVAR (current_buffer, point_before_scroll) = Qnil;
b6a0ebc3 1998
6ba7f443 1999 if (charpos == PT)
a50699fd
JA
2000 return;
2001
ef1900f3 2002 /* In a single-byte buffer, the two positions must be equal. */
6ba7f443 2003 eassert (ZV != ZV_BYTE || charpos == bytepos);
ef1900f3 2004
62056764
JB
2005 /* Check this now, before checking if the buffer has any intervals.
2006 That way, we can catch conditions which break this sanity check
2007 whether or not there are intervals in the buffer. */
6ba7f443 2008 eassert (charpos <= ZV && charpos >= BEGV);
62056764 2009
6ba7f443
SM
2010 have_overlays = (current_buffer->overlays_before
2011 || current_buffer->overlays_after);
580fae94
RS
2012
2013 /* If we have no text properties and overlays,
2014 then we can do it quickly. */
6ba7f443 2015 if (NULL_INTERVAL_P (BUF_INTERVALS (current_buffer)) && ! have_overlays)
a50699fd 2016 {
6ba7f443 2017 temp_set_point_both (current_buffer, charpos, bytepos);
a50699fd
JA
2018 return;
2019 }
2020
ef1900f3
RS
2021 /* Set TO to the interval containing the char after CHARPOS,
2022 and TOPREV to the interval containing the char before CHARPOS.
323a7ad4 2023 Either one may be null. They may be equal. */
6ba7f443
SM
2024 to = find_interval (BUF_INTERVALS (current_buffer), charpos);
2025 if (charpos == BEGV)
294efdbe 2026 toprev = 0;
ef1900f3 2027 else if (to && to->position == charpos)
323a7ad4 2028 toprev = previous_interval (to);
323a7ad4
RS
2029 else
2030 toprev = to;
2031
6ba7f443 2032 buffer_point = (PT == ZV ? ZV - 1 : PT);
9c79dd1b 2033
323a7ad4
RS
2034 /* Set FROM to the interval containing the char after PT,
2035 and FROMPREV to the interval containing the char before PT.
2036 Either one may be null. They may be equal. */
7ce503fd 2037 /* We could cache this and save time. */
6ba7f443
SM
2038 from = find_interval (BUF_INTERVALS (current_buffer), buffer_point);
2039 if (buffer_point == BEGV)
294efdbe 2040 fromprev = 0;
6ba7f443 2041 else if (from && from->position == PT)
323a7ad4 2042 fromprev = previous_interval (from);
6ba7f443 2043 else if (buffer_point != PT)
323a7ad4
RS
2044 fromprev = from, from = 0;
2045 else
2046 fromprev = from;
a50699fd 2047
7ce503fd 2048 /* Moving within an interval. */
580fae94
RS
2049 if (to == from && toprev == fromprev && INTERVAL_VISIBLE_P (to)
2050 && ! have_overlays)
a50699fd 2051 {
6ba7f443 2052 temp_set_point_both (current_buffer, charpos, bytepos);
a50699fd
JA
2053 return;
2054 }
2055
ef1900f3 2056 original_position = charpos;
580fae94 2057
5eabb4e7
RS
2058 /* If the new position is between two intangible characters
2059 with the same intangible property value,
2060 move forward or backward until a change in that property. */
580fae94
RS
2061 if (NILP (Vinhibit_point_motion_hooks)
2062 && ((! NULL_INTERVAL_P (to) && ! NULL_INTERVAL_P (toprev))
b827a9e3
RS
2063 || have_overlays)
2064 /* Intangibility never stops us from positioning at the beginning
2065 or end of the buffer, so don't bother checking in that case. */
ef1900f3 2066 && charpos != BEGV && charpos != ZV)
a50699fd 2067 {
580fae94 2068 Lisp_Object pos;
f0dcf801 2069 Lisp_Object intangible_propval;
580fae94 2070
d5219de5
RS
2071 if (backwards)
2072 {
0270b877 2073 /* If the preceding character is both intangible and invisible,
f0dcf801
MB
2074 and the invisible property is `rear-sticky', perturb it so
2075 that the search starts one character earlier -- this ensures
2076 that point can never move to the end of an invisible/
2077 intangible/rear-sticky region. */
2078 charpos = adjust_for_invis_intang (charpos, -1, -1, 1);
1d14d232 2079
f0dcf801 2080 XSETINT (pos, charpos);
5eabb4e7
RS
2081
2082 /* If following char is intangible,
2083 skip back over all chars with matching intangible property. */
1d14d232
RS
2084
2085 intangible_propval = Fget_char_property (pos, Qintangible, Qnil);
2086
5eabb4e7 2087 if (! NILP (intangible_propval))
1d14d232 2088 {
6ba7f443 2089 while (XINT (pos) > BEGV
1d14d232
RS
2090 && EQ (Fget_char_property (make_number (XINT (pos) - 1),
2091 Qintangible, Qnil),
2092 intangible_propval))
2093 pos = Fprevious_char_property_change (pos, Qnil);
f0dcf801
MB
2094
2095 /* Set CHARPOS from POS, and if the final intangible character
2096 that we skipped over is also invisible, and the invisible
2097 property is `front-sticky', perturb it to be one character
2098 earlier -- this ensures that point can never move to the
2099 beginning of an invisible/intangible/front-sticky region. */
2100 charpos = adjust_for_invis_intang (XINT (pos), 0, -1, 0);
1d14d232 2101 }
d5219de5 2102 }
0df8950e 2103 else
d5219de5 2104 {
f0dcf801
MB
2105 /* If the following character is both intangible and invisible,
2106 and the invisible property is `front-sticky', perturb it so
2107 that the search starts one character later -- this ensures
2108 that point can never move to the beginning of an
2109 invisible/intangible/front-sticky region. */
2110 charpos = adjust_for_invis_intang (charpos, 0, 1, 1);
2111
2112 XSETINT (pos, charpos);
2113
1d14d232
RS
2114 /* If preceding char is intangible,
2115 skip forward over all chars with matching intangible property. */
2116
ef1900f3 2117 intangible_propval = Fget_char_property (make_number (charpos - 1),
580fae94 2118 Qintangible, Qnil);
5eabb4e7 2119
5eabb4e7 2120 if (! NILP (intangible_propval))
1d14d232 2121 {
6ba7f443 2122 while (XINT (pos) < ZV
1d14d232
RS
2123 && EQ (Fget_char_property (pos, Qintangible, Qnil),
2124 intangible_propval))
2125 pos = Fnext_char_property_change (pos, Qnil);
580fae94 2126
f0dcf801
MB
2127 /* Set CHARPOS from POS, and if the final intangible character
2128 that we skipped over is also invisible, and the invisible
2129 property is `rear-sticky', perturb it to be one character
2130 later -- this ensures that point can never move to the
2131 end of an invisible/intangible/rear-sticky region. */
2132 charpos = adjust_for_invis_intang (XINT (pos), -1, 1, 0);
1d14d232 2133 }
d5219de5 2134 }
580fae94 2135
6ba7f443 2136 bytepos = buf_charpos_to_bytepos (current_buffer, charpos);
580fae94
RS
2137 }
2138
ef1900f3 2139 if (charpos != original_position)
580fae94 2140 {
ef1900f3
RS
2141 /* Set TO to the interval containing the char after CHARPOS,
2142 and TOPREV to the interval containing the char before CHARPOS.
580fae94 2143 Either one may be null. They may be equal. */
6ba7f443
SM
2144 to = find_interval (BUF_INTERVALS (current_buffer), charpos);
2145 if (charpos == BEGV)
580fae94 2146 toprev = 0;
ef1900f3 2147 else if (to && to->position == charpos)
580fae94
RS
2148 toprev = previous_interval (to);
2149 else
2150 toprev = to;
a50699fd 2151 }
323a7ad4 2152
5eabb4e7
RS
2153 /* Here TO is the interval after the stopping point
2154 and TOPREV is the interval before the stopping point.
2155 One or the other may be null. */
2156
6ba7f443 2157 temp_set_point_both (current_buffer, charpos, bytepos);
a50699fd 2158
e0f24100 2159 /* We run point-left and point-entered hooks here, if the
d7e3e52b 2160 two intervals are not equivalent. These hooks take
323a7ad4 2161 (old_point, new_point) as arguments. */
ddd931ff
RS
2162 if (NILP (Vinhibit_point_motion_hooks)
2163 && (! intervals_equal (from, to)
2164 || ! intervals_equal (fromprev, toprev)))
9c79dd1b 2165 {
323a7ad4
RS
2166 Lisp_Object leave_after, leave_before, enter_after, enter_before;
2167
2168 if (fromprev)
4e8f005c 2169 leave_before = textget (fromprev->plist, Qpoint_left);
323a7ad4 2170 else
4e8f005c
CY
2171 leave_before = Qnil;
2172
323a7ad4 2173 if (from)
4e8f005c 2174 leave_after = textget (from->plist, Qpoint_left);
323a7ad4 2175 else
4e8f005c 2176 leave_after = Qnil;
323a7ad4
RS
2177
2178 if (toprev)
4e8f005c 2179 enter_before = textget (toprev->plist, Qpoint_entered);
323a7ad4 2180 else
4e8f005c
CY
2181 enter_before = Qnil;
2182
323a7ad4 2183 if (to)
4e8f005c 2184 enter_after = textget (to->plist, Qpoint_entered);
323a7ad4 2185 else
4e8f005c 2186 enter_after = Qnil;
9c79dd1b 2187
323a7ad4 2188 if (! EQ (leave_before, enter_before) && !NILP (leave_before))
4e8f005c
CY
2189 call2 (leave_before, make_number (old_position),
2190 make_number (charpos));
323a7ad4 2191 if (! EQ (leave_after, enter_after) && !NILP (leave_after))
4e8f005c
CY
2192 call2 (leave_after, make_number (old_position),
2193 make_number (charpos));
9c79dd1b 2194
323a7ad4 2195 if (! EQ (enter_before, leave_before) && !NILP (enter_before))
4e8f005c
CY
2196 call2 (enter_before, make_number (old_position),
2197 make_number (charpos));
323a7ad4 2198 if (! EQ (enter_after, leave_after) && !NILP (enter_after))
4e8f005c
CY
2199 call2 (enter_after, make_number (old_position),
2200 make_number (charpos));
9c79dd1b 2201 }
a50699fd 2202}
294efdbe 2203\f
a7fa233f
RS
2204/* Move point to POSITION, unless POSITION is inside an intangible
2205 segment that reaches all the way to point. */
2206
2207void
e79123aa 2208move_if_not_intangible (EMACS_INT position)
a7fa233f
RS
2209{
2210 Lisp_Object pos;
2211 Lisp_Object intangible_propval;
2212
2213 XSETINT (pos, position);
2214
2215 if (! NILP (Vinhibit_point_motion_hooks))
2216 /* If intangible is inhibited, always move point to POSITION. */
2217 ;
2e34157c 2218 else if (PT < position && XINT (pos) < ZV)
a7fa233f
RS
2219 {
2220 /* We want to move forward, so check the text before POSITION. */
2221
2222 intangible_propval = Fget_char_property (pos,
2223 Qintangible, Qnil);
2224
2225 /* If following char is intangible,
2226 skip back over all chars with matching intangible property. */
2227 if (! NILP (intangible_propval))
2228 while (XINT (pos) > BEGV
2229 && EQ (Fget_char_property (make_number (XINT (pos) - 1),
2230 Qintangible, Qnil),
2231 intangible_propval))
2232 pos = Fprevious_char_property_change (pos, Qnil);
2233 }
2e34157c 2234 else if (XINT (pos) > BEGV)
a7fa233f
RS
2235 {
2236 /* We want to move backward, so check the text after POSITION. */
2237
2238 intangible_propval = Fget_char_property (make_number (XINT (pos) - 1),
2239 Qintangible, Qnil);
2240
2241 /* If following char is intangible,
887f2a2d 2242 skip forward over all chars with matching intangible property. */
a7fa233f
RS
2243 if (! NILP (intangible_propval))
2244 while (XINT (pos) < ZV
2245 && EQ (Fget_char_property (pos, Qintangible, Qnil),
2246 intangible_propval))
2247 pos = Fnext_char_property_change (pos, Qnil);
2248
2249 }
97d8f112
RS
2250 else if (position < BEGV)
2251 position = BEGV;
2252 else if (position > ZV)
2253 position = ZV;
a7fa233f 2254
7d0393cf 2255 /* If the whole stretch between PT and POSITION isn't intangible,
a7fa233f
RS
2256 try moving to POSITION (which means we actually move farther
2257 if POSITION is inside of intangible text). */
2258
2259 if (XINT (pos) != PT)
2260 SET_PT (position);
2261}
2262\f
f56b42ac
KH
2263/* If text at position POS has property PROP, set *VAL to the property
2264 value, *START and *END to the beginning and end of a region that
2265 has the same property, and return 1. Otherwise return 0.
2266
2267 OBJECT is the string or buffer to look for the property in;
2268 nil means the current buffer. */
2269
2270int
579c18d0
EZ
2271get_property_and_range (EMACS_INT pos, Lisp_Object prop, Lisp_Object *val,
2272 EMACS_INT *start, EMACS_INT *end, Lisp_Object object)
f56b42ac
KH
2273{
2274 INTERVAL i, prev, next;
2275
2276 if (NILP (object))
2277 i = find_interval (BUF_INTERVALS (current_buffer), pos);
2278 else if (BUFFERP (object))
2279 i = find_interval (BUF_INTERVALS (XBUFFER (object)), pos);
2280 else if (STRINGP (object))
d5db4077 2281 i = find_interval (STRING_INTERVALS (object), pos);
f56b42ac
KH
2282 else
2283 abort ();
2284
2285 if (NULL_INTERVAL_P (i) || (i->position + LENGTH (i) <= pos))
2286 return 0;
2287 *val = textget (i->plist, prop);
2288 if (NILP (*val))
2289 return 0;
2290
2291 next = i; /* remember it in advance */
2292 prev = previous_interval (i);
2293 while (! NULL_INTERVAL_P (prev)
2294 && EQ (*val, textget (prev->plist, prop)))
2295 i = prev, prev = previous_interval (prev);
2296 *start = i->position;
2297
2298 next = next_interval (i);
7d0393cf 2299 while (! NULL_INTERVAL_P (next)
f56b42ac
KH
2300 && EQ (*val, textget (next->plist, prop)))
2301 i = next, next = next_interval (next);
2302 *end = i->position + LENGTH (i);
2303
2304 return 1;
2305}
2306\f
2b4b027f
GM
2307/* Return the proper local keymap TYPE for position POSITION in
2308 BUFFER; TYPE should be one of `keymap' or `local-map'. Use the map
2309 specified by the PROP property, if any. Otherwise, if TYPE is
1b0440ed
RS
2310 `local-map' use BUFFER's local map.
2311
2312 POSITION must be in the accessible part of BUFFER. */
5cae0ec6
RS
2313
2314Lisp_Object
e79123aa
EZ
2315get_local_map (register EMACS_INT position, register struct buffer *buffer,
2316 Lisp_Object type)
5cae0ec6 2317{
f94ecad1 2318 Lisp_Object prop, lispy_position, lispy_buffer;
e79123aa 2319 EMACS_INT old_begv, old_zv, old_begv_byte, old_zv_byte;
5cae0ec6 2320
7ce503fd 2321 /* Perhaps we should just change `position' to the limit. */
1b0440ed 2322 if (position > BUF_ZV (buffer) || position < BUF_BEGV (buffer))
5cae0ec6
RS
2323 abort ();
2324
0f7a5fda
KH
2325 /* Ignore narrowing, so that a local map continues to be valid even if
2326 the visible region contains no characters and hence no properties. */
2327 old_begv = BUF_BEGV (buffer);
2328 old_zv = BUF_ZV (buffer);
ef1900f3
RS
2329 old_begv_byte = BUF_BEGV_BYTE (buffer);
2330 old_zv_byte = BUF_ZV_BYTE (buffer);
cffc6f3b
CY
2331
2332 SET_BUF_BEGV_BOTH (buffer, BUF_BEG (buffer), BUF_BEG_BYTE (buffer));
2333 SET_BUF_ZV_BOTH (buffer, BUF_Z (buffer), BUF_Z_BYTE (buffer));
0f7a5fda 2334
0f7a5fda
KH
2335 XSETFASTINT (lispy_position, position);
2336 XSETBUFFER (lispy_buffer, buffer);
4867a283
SM
2337 /* First check if the CHAR has any property. This is because when
2338 we click with the mouse, the mouse pointer is really pointing
2339 to the CHAR after POS. */
2b4b027f 2340 prop = Fget_char_property (lispy_position, type, lispy_buffer);
4867a283
SM
2341 /* If not, look at the POS's properties. This is necessary because when
2342 editing a field with a `local-map' property, we want insertion at the end
2343 to obey the `local-map' property. */
2344 if (NILP (prop))
2345 prop = get_pos_property (lispy_position, type, lispy_buffer);
0f7a5fda 2346
cffc6f3b
CY
2347 SET_BUF_BEGV_BOTH (buffer, old_begv, old_begv_byte);
2348 SET_BUF_ZV_BOTH (buffer, old_zv, old_zv_byte);
5cae0ec6
RS
2349
2350 /* Use the local map only if it is valid. */
02067692
SM
2351 prop = get_keymap (prop, 0, 0);
2352 if (CONSP (prop))
5cae0ec6
RS
2353 return prop;
2354
2b4b027f 2355 if (EQ (type, Qkeymap))
6a7dccef
DL
2356 return Qnil;
2357 else
4b4deea2 2358 return BVAR (buffer, keymap);
5cae0ec6
RS
2359}
2360\f
9c79dd1b 2361/* Produce an interval tree reflecting the intervals in
944d4e4b
KH
2362 TREE from START to START + LENGTH.
2363 The new interval tree has no parent and has a starting-position of 0. */
a50699fd 2364
7b1d5b85 2365INTERVAL
e79123aa 2366copy_intervals (INTERVAL tree, EMACS_INT start, EMACS_INT length)
a50699fd
JA
2367{
2368 register INTERVAL i, new, t;
c50bd0d2 2369 register EMACS_INT got, prevlen;
a50699fd
JA
2370
2371 if (NULL_INTERVAL_P (tree) || length <= 0)
2372 return NULL_INTERVAL;
2373
2374 i = find_interval (tree, start);
2375 if (NULL_INTERVAL_P (i) || LENGTH (i) == 0)
2376 abort ();
2377
7ce503fd 2378 /* If there is only one interval and it's the default, return nil. */
a50699fd
JA
2379 if ((start - i->position + 1 + length) < LENGTH (i)
2380 && DEFAULT_INTERVAL_P (i))
2381 return NULL_INTERVAL;
2382
2383 new = make_interval ();
944d4e4b 2384 new->position = 0;
a50699fd 2385 got = (LENGTH (i) - (start - i->position));
9c79dd1b 2386 new->total_length = length;
727fec2d 2387 CHECK_TOTAL_LENGTH (new);
a50699fd
JA
2388 copy_properties (i, new);
2389
2390 t = new;
95e3e1ef 2391 prevlen = got;
a50699fd
JA
2392 while (got < length)
2393 {
2394 i = next_interval (i);
2bc7a79b 2395 t = split_interval_right (t, prevlen);
a50699fd 2396 copy_properties (i, t);
95e3e1ef
RS
2397 prevlen = LENGTH (i);
2398 got += prevlen;
a50699fd
JA
2399 }
2400
4314dea4 2401 return balance_an_interval (new);
a50699fd
JA
2402}
2403
7ce503fd 2404/* Give STRING the properties of BUFFER from POSITION to LENGTH. */
a50699fd 2405
55d4c1b2 2406inline void
e79123aa
EZ
2407copy_intervals_to_string (Lisp_Object string, struct buffer *buffer,
2408 EMACS_INT position, EMACS_INT length)
a50699fd 2409{
46d8a55b 2410 INTERVAL interval_copy = copy_intervals (BUF_INTERVALS (buffer),
a50699fd
JA
2411 position, length);
2412 if (NULL_INTERVAL_P (interval_copy))
2413 return;
2414
439d5cb4 2415 SET_INTERVAL_OBJECT (interval_copy, string);
b13738b6 2416 STRING_SET_INTERVALS (string, interval_copy);
a50699fd 2417}
d8638d30 2418\f
944d4e4b 2419/* Return 1 if strings S1 and S2 have identical properties; 0 otherwise.
d8638d30
RS
2420 Assume they have identical characters. */
2421
2422int
971de7fb 2423compare_string_intervals (Lisp_Object s1, Lisp_Object s2)
d8638d30
RS
2424{
2425 INTERVAL i1, i2;
e79123aa
EZ
2426 EMACS_INT pos = 0;
2427 EMACS_INT end = SCHARS (s1);
d8638d30 2428
d5db4077
KR
2429 i1 = find_interval (STRING_INTERVALS (s1), 0);
2430 i2 = find_interval (STRING_INTERVALS (s2), 0);
d8638d30
RS
2431
2432 while (pos < end)
2433 {
2434 /* Determine how far we can go before we reach the end of I1 or I2. */
e79123aa
EZ
2435 EMACS_INT len1 = (i1 != 0 ? INTERVAL_LAST_POS (i1) : end) - pos;
2436 EMACS_INT len2 = (i2 != 0 ? INTERVAL_LAST_POS (i2) : end) - pos;
2437 EMACS_INT distance = min (len1, len2);
d8638d30
RS
2438
2439 /* If we ever find a mismatch between the strings,
2440 they differ. */
2441 if (! intervals_equal (i1, i2))
2442 return 0;
2443
2444 /* Advance POS till the end of the shorter interval,
2445 and advance one or both interval pointers for the new position. */
2446 pos += distance;
2447 if (len1 == distance)
2448 i1 = next_interval (i1);
2449 if (len2 == distance)
2450 i2 = next_interval (i2);
2451 }
2452 return 1;
2453}
37f26f3c 2454\f
37f26f3c
RS
2455/* Recursively adjust interval I in the current buffer
2456 for setting enable_multibyte_characters to MULTI_FLAG.
2457 The range of interval I is START ... END in characters,
2458 START_BYTE ... END_BYTE in bytes. */
2459
2460static void
e79123aa
EZ
2461set_intervals_multibyte_1 (INTERVAL i, int multi_flag,
2462 EMACS_INT start, EMACS_INT start_byte,
2463 EMACS_INT end, EMACS_INT end_byte)
37f26f3c 2464{
37f26f3c
RS
2465 /* Fix the length of this interval. */
2466 if (multi_flag)
2467 i->total_length = end - start;
2468 else
2469 i->total_length = end_byte - start_byte;
727fec2d
RS
2470 CHECK_TOTAL_LENGTH (i);
2471
2472 if (TOTAL_LENGTH (i) == 0)
2473 {
2474 delete_interval (i);
2475 return;
2476 }
37f26f3c
RS
2477
2478 /* Recursively fix the length of the subintervals. */
2479 if (i->left)
2480 {
e79123aa 2481 EMACS_INT left_end, left_end_byte;
37f26f3c
RS
2482
2483 if (multi_flag)
2484 {
e79123aa 2485 EMACS_INT temp;
37f26f3c
RS
2486 left_end_byte = start_byte + LEFT_TOTAL_LENGTH (i);
2487 left_end = BYTE_TO_CHAR (left_end_byte);
727fec2d
RS
2488
2489 temp = CHAR_TO_BYTE (left_end);
2490
2491 /* If LEFT_END_BYTE is in the middle of a character,
f813361d 2492 adjust it and LEFT_END to a char boundary. */
727fec2d
RS
2493 if (left_end_byte > temp)
2494 {
2495 left_end_byte = temp;
2496 }
2497 if (left_end_byte < temp)
2498 {
2499 left_end--;
2500 left_end_byte = CHAR_TO_BYTE (left_end);
2501 }
37f26f3c
RS
2502 }
2503 else
2504 {
2505 left_end = start + LEFT_TOTAL_LENGTH (i);
2506 left_end_byte = CHAR_TO_BYTE (left_end);
2507 }
2508
2509 set_intervals_multibyte_1 (i->left, multi_flag, start, start_byte,
2510 left_end, left_end_byte);
2511 }
2512 if (i->right)
2513 {
e79123aa 2514 EMACS_INT right_start_byte, right_start;
37f26f3c
RS
2515
2516 if (multi_flag)
2517 {
e79123aa 2518 EMACS_INT temp;
727fec2d 2519
37f26f3c
RS
2520 right_start_byte = end_byte - RIGHT_TOTAL_LENGTH (i);
2521 right_start = BYTE_TO_CHAR (right_start_byte);
727fec2d
RS
2522
2523 /* If RIGHT_START_BYTE is in the middle of a character,
f813361d 2524 adjust it and RIGHT_START to a char boundary. */
727fec2d
RS
2525 temp = CHAR_TO_BYTE (right_start);
2526
2527 if (right_start_byte < temp)
2528 {
2529 right_start_byte = temp;
2530 }
2531 if (right_start_byte > temp)
2532 {
2533 right_start++;
2534 right_start_byte = CHAR_TO_BYTE (right_start);
2535 }
37f26f3c
RS
2536 }
2537 else
2538 {
2539 right_start = end - RIGHT_TOTAL_LENGTH (i);
2540 right_start_byte = CHAR_TO_BYTE (right_start);
2541 }
2542
2543 set_intervals_multibyte_1 (i->right, multi_flag,
2544 right_start, right_start_byte,
2545 end, end_byte);
2546 }
727fec2d
RS
2547
2548 /* Rounding to char boundaries can theoretically ake this interval
2549 spurious. If so, delete one child, and copy its property list
2550 to this interval. */
2551 if (LEFT_TOTAL_LENGTH (i) + RIGHT_TOTAL_LENGTH (i) >= TOTAL_LENGTH (i))
2552 {
2553 if ((i)->left)
2554 {
2555 (i)->plist = (i)->left->plist;
2556 (i)->left->total_length = 0;
2557 delete_interval ((i)->left);
2558 }
2559 else
2560 {
2561 (i)->plist = (i)->right->plist;
2562 (i)->right->total_length = 0;
2563 delete_interval ((i)->right);
2564 }
2565 }
37f26f3c 2566}
d2f7a802 2567
24cef261
RS
2568/* Update the intervals of the current buffer
2569 to fit the contents as multibyte (if MULTI_FLAG is 1)
2570 or to fit them as non-multibyte (if MULTI_FLAG is 0). */
2571
2572void
971de7fb 2573set_intervals_multibyte (int multi_flag)
24cef261
RS
2574{
2575 if (BUF_INTERVALS (current_buffer))
2576 set_intervals_multibyte_1 (BUF_INTERVALS (current_buffer), multi_flag,
2577 BEG, BEG_BYTE, Z, Z_BYTE);
2578}