]> code.delx.au - gnu-emacs/blob - src/textprop.c
(Ftext_properties_at): Doc fix.
[gnu-emacs] / src / textprop.c
1 /* Interface code for dealing with text properties.
2 Copyright (C) 1993, 1994, 1995, 1997 Free Software Foundation, Inc.
3
4 This file is part of GNU Emacs.
5
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
20
21 #include <config.h>
22 #include "lisp.h"
23 #include "intervals.h"
24 #include "buffer.h"
25 #include "window.h"
26
27 #ifndef NULL
28 #define NULL (void *)0
29 #endif
30
31 /* Test for membership, allowing for t (actually any non-cons) to mean the
32 universal set. */
33
34 #define TMEM(sym, set) (CONSP (set) ? ! NILP (Fmemq (sym, set)) : ! NILP (set))
35 \f
36
37 /* NOTES: previous- and next- property change will have to skip
38 zero-length intervals if they are implemented. This could be done
39 inside next_interval and previous_interval.
40
41 set_properties needs to deal with the interval property cache.
42
43 It is assumed that for any interval plist, a property appears
44 only once on the list. Although some code i.e., remove_properties,
45 handles the more general case, the uniqueness of properties is
46 necessary for the system to remain consistent. This requirement
47 is enforced by the subrs installing properties onto the intervals. */
48
49 /* The rest of the file is within this conditional */
50 #ifdef USE_TEXT_PROPERTIES
51 \f
52 /* Types of hooks. */
53 Lisp_Object Qmouse_left;
54 Lisp_Object Qmouse_entered;
55 Lisp_Object Qpoint_left;
56 Lisp_Object Qpoint_entered;
57 Lisp_Object Qcategory;
58 Lisp_Object Qlocal_map;
59
60 /* Visual properties text (including strings) may have. */
61 Lisp_Object Qforeground, Qbackground, Qfont, Qunderline, Qstipple;
62 Lisp_Object Qinvisible, Qread_only, Qintangible;
63
64 /* Sticky properties */
65 Lisp_Object Qfront_sticky, Qrear_nonsticky;
66
67 /* If o1 is a cons whose cdr is a cons, return non-zero and set o2 to
68 the o1's cdr. Otherwise, return zero. This is handy for
69 traversing plists. */
70 #define PLIST_ELT_P(o1, o2) (CONSP (o1) && ((o2)=XCONS (o1)->cdr, CONSP (o2)))
71
72 Lisp_Object Vinhibit_point_motion_hooks;
73 Lisp_Object Vdefault_text_properties;
74
75 /* verify_interval_modification saves insertion hooks here
76 to be run later by report_interval_modification. */
77 Lisp_Object interval_insert_behind_hooks;
78 Lisp_Object interval_insert_in_front_hooks;
79 \f
80 /* Extract the interval at the position pointed to by BEGIN from
81 OBJECT, a string or buffer. Additionally, check that the positions
82 pointed to by BEGIN and END are within the bounds of OBJECT, and
83 reverse them if *BEGIN is greater than *END. The objects pointed
84 to by BEGIN and END may be integers or markers; if the latter, they
85 are coerced to integers.
86
87 When OBJECT is a string, we increment *BEGIN and *END
88 to make them origin-one.
89
90 Note that buffer points don't correspond to interval indices.
91 For example, point-max is 1 greater than the index of the last
92 character. This difference is handled in the caller, which uses
93 the validated points to determine a length, and operates on that.
94 Exceptions are Ftext_properties_at, Fnext_property_change, and
95 Fprevious_property_change which call this function with BEGIN == END.
96 Handle this case specially.
97
98 If FORCE is soft (0), it's OK to return NULL_INTERVAL. Otherwise,
99 create an interval tree for OBJECT if one doesn't exist, provided
100 the object actually contains text. In the current design, if there
101 is no text, there can be no text properties. */
102
103 #define soft 0
104 #define hard 1
105
106 static INTERVAL
107 validate_interval_range (object, begin, end, force)
108 Lisp_Object object, *begin, *end;
109 int force;
110 {
111 register INTERVAL i;
112 int searchpos;
113
114 CHECK_STRING_OR_BUFFER (object, 0);
115 CHECK_NUMBER_COERCE_MARKER (*begin, 0);
116 CHECK_NUMBER_COERCE_MARKER (*end, 0);
117
118 /* If we are asked for a point, but from a subr which operates
119 on a range, then return nothing. */
120 if (EQ (*begin, *end) && begin != end)
121 return NULL_INTERVAL;
122
123 if (XINT (*begin) > XINT (*end))
124 {
125 Lisp_Object n;
126 n = *begin;
127 *begin = *end;
128 *end = n;
129 }
130
131 if (BUFFERP (object))
132 {
133 register struct buffer *b = XBUFFER (object);
134
135 if (!(BUF_BEGV (b) <= XINT (*begin) && XINT (*begin) <= XINT (*end)
136 && XINT (*end) <= BUF_ZV (b)))
137 args_out_of_range (*begin, *end);
138 i = BUF_INTERVALS (b);
139
140 /* If there's no text, there are no properties. */
141 if (BUF_BEGV (b) == BUF_ZV (b))
142 return NULL_INTERVAL;
143
144 searchpos = XINT (*begin);
145 }
146 else
147 {
148 register struct Lisp_String *s = XSTRING (object);
149
150 if (! (0 <= XINT (*begin) && XINT (*begin) <= XINT (*end)
151 && XINT (*end) <= s->size))
152 args_out_of_range (*begin, *end);
153 /* User-level Positions in strings start with 0,
154 but the interval code always wants positions starting with 1. */
155 XSETFASTINT (*begin, XFASTINT (*begin) + 1);
156 if (begin != end)
157 XSETFASTINT (*end, XFASTINT (*end) + 1);
158 i = s->intervals;
159
160 if (s->size == 0)
161 return NULL_INTERVAL;
162
163 searchpos = XINT (*begin);
164 }
165
166 if (NULL_INTERVAL_P (i))
167 return (force ? create_root_interval (object) : i);
168
169 return find_interval (i, searchpos);
170 }
171
172 /* Validate LIST as a property list. If LIST is not a list, then
173 make one consisting of (LIST nil). Otherwise, verify that LIST
174 is even numbered and thus suitable as a plist. */
175
176 static Lisp_Object
177 validate_plist (list)
178 Lisp_Object list;
179 {
180 if (NILP (list))
181 return Qnil;
182
183 if (CONSP (list))
184 {
185 register int i;
186 register Lisp_Object tail;
187 for (i = 0, tail = list; !NILP (tail); i++)
188 {
189 tail = Fcdr (tail);
190 QUIT;
191 }
192 if (i & 1)
193 error ("Odd length text property list");
194 return list;
195 }
196
197 return Fcons (list, Fcons (Qnil, Qnil));
198 }
199
200 /* Return nonzero if interval I has all the properties,
201 with the same values, of list PLIST. */
202
203 static int
204 interval_has_all_properties (plist, i)
205 Lisp_Object plist;
206 INTERVAL i;
207 {
208 register Lisp_Object tail1, tail2, sym1, sym2;
209 register int found;
210
211 /* Go through each element of PLIST. */
212 for (tail1 = plist; ! NILP (tail1); tail1 = Fcdr (Fcdr (tail1)))
213 {
214 sym1 = Fcar (tail1);
215 found = 0;
216
217 /* Go through I's plist, looking for sym1 */
218 for (tail2 = i->plist; ! NILP (tail2); tail2 = Fcdr (Fcdr (tail2)))
219 if (EQ (sym1, Fcar (tail2)))
220 {
221 /* Found the same property on both lists. If the
222 values are unequal, return zero. */
223 if (! EQ (Fcar (Fcdr (tail1)), Fcar (Fcdr (tail2))))
224 return 0;
225
226 /* Property has same value on both lists; go to next one. */
227 found = 1;
228 break;
229 }
230
231 if (! found)
232 return 0;
233 }
234
235 return 1;
236 }
237
238 /* Return nonzero if the plist of interval I has any of the
239 properties of PLIST, regardless of their values. */
240
241 static INLINE int
242 interval_has_some_properties (plist, i)
243 Lisp_Object plist;
244 INTERVAL i;
245 {
246 register Lisp_Object tail1, tail2, sym;
247
248 /* Go through each element of PLIST. */
249 for (tail1 = plist; ! NILP (tail1); tail1 = Fcdr (Fcdr (tail1)))
250 {
251 sym = Fcar (tail1);
252
253 /* Go through i's plist, looking for tail1 */
254 for (tail2 = i->plist; ! NILP (tail2); tail2 = Fcdr (Fcdr (tail2)))
255 if (EQ (sym, Fcar (tail2)))
256 return 1;
257 }
258
259 return 0;
260 }
261 \f
262 /* Changing the plists of individual intervals. */
263
264 /* Return the value of PROP in property-list PLIST, or Qunbound if it
265 has none. */
266 static Lisp_Object
267 property_value (plist, prop)
268 Lisp_Object plist, prop;
269 {
270 Lisp_Object value;
271
272 while (PLIST_ELT_P (plist, value))
273 if (EQ (XCONS (plist)->car, prop))
274 return XCONS (value)->car;
275 else
276 plist = XCONS (value)->cdr;
277
278 return Qunbound;
279 }
280
281 /* Set the properties of INTERVAL to PROPERTIES,
282 and record undo info for the previous values.
283 OBJECT is the string or buffer that INTERVAL belongs to. */
284
285 static void
286 set_properties (properties, interval, object)
287 Lisp_Object properties, object;
288 INTERVAL interval;
289 {
290 Lisp_Object sym, value;
291
292 if (BUFFERP (object))
293 {
294 /* For each property in the old plist which is missing from PROPERTIES,
295 or has a different value in PROPERTIES, make an undo record. */
296 for (sym = interval->plist;
297 PLIST_ELT_P (sym, value);
298 sym = XCONS (value)->cdr)
299 if (! EQ (property_value (properties, XCONS (sym)->car),
300 XCONS (value)->car))
301 {
302 record_property_change (interval->position, LENGTH (interval),
303 XCONS (sym)->car, XCONS (value)->car,
304 object);
305 }
306
307 /* For each new property that has no value at all in the old plist,
308 make an undo record binding it to nil, so it will be removed. */
309 for (sym = properties;
310 PLIST_ELT_P (sym, value);
311 sym = XCONS (value)->cdr)
312 if (EQ (property_value (interval->plist, XCONS (sym)->car), Qunbound))
313 {
314 record_property_change (interval->position, LENGTH (interval),
315 XCONS (sym)->car, Qnil,
316 object);
317 }
318 }
319
320 /* Store new properties. */
321 interval->plist = Fcopy_sequence (properties);
322 }
323
324 /* Add the properties of PLIST to the interval I, or set
325 the value of I's property to the value of the property on PLIST
326 if they are different.
327
328 OBJECT should be the string or buffer the interval is in.
329
330 Return nonzero if this changes I (i.e., if any members of PLIST
331 are actually added to I's plist) */
332
333 static int
334 add_properties (plist, i, object)
335 Lisp_Object plist;
336 INTERVAL i;
337 Lisp_Object object;
338 {
339 Lisp_Object tail1, tail2, sym1, val1;
340 register int changed = 0;
341 register int found;
342 struct gcpro gcpro1, gcpro2, gcpro3;
343
344 tail1 = plist;
345 sym1 = Qnil;
346 val1 = Qnil;
347 /* No need to protect OBJECT, because we can GC only in the case
348 where it is a buffer, and live buffers are always protected.
349 I and its plist are also protected, via OBJECT. */
350 GCPRO3 (tail1, sym1, val1);
351
352 /* Go through each element of PLIST. */
353 for (tail1 = plist; ! NILP (tail1); tail1 = Fcdr (Fcdr (tail1)))
354 {
355 sym1 = Fcar (tail1);
356 val1 = Fcar (Fcdr (tail1));
357 found = 0;
358
359 /* Go through I's plist, looking for sym1 */
360 for (tail2 = i->plist; ! NILP (tail2); tail2 = Fcdr (Fcdr (tail2)))
361 if (EQ (sym1, Fcar (tail2)))
362 {
363 /* No need to gcpro, because tail2 protects this
364 and it must be a cons cell (we get an error otherwise). */
365 register Lisp_Object this_cdr;
366
367 this_cdr = Fcdr (tail2);
368 /* Found the property. Now check its value. */
369 found = 1;
370
371 /* The properties have the same value on both lists.
372 Continue to the next property. */
373 if (EQ (val1, Fcar (this_cdr)))
374 break;
375
376 /* Record this change in the buffer, for undo purposes. */
377 if (BUFFERP (object))
378 {
379 record_property_change (i->position, LENGTH (i),
380 sym1, Fcar (this_cdr), object);
381 }
382
383 /* I's property has a different value -- change it */
384 Fsetcar (this_cdr, val1);
385 changed++;
386 break;
387 }
388
389 if (! found)
390 {
391 /* Record this change in the buffer, for undo purposes. */
392 if (BUFFERP (object))
393 {
394 record_property_change (i->position, LENGTH (i),
395 sym1, Qnil, object);
396 }
397 i->plist = Fcons (sym1, Fcons (val1, i->plist));
398 changed++;
399 }
400 }
401
402 UNGCPRO;
403
404 return changed;
405 }
406
407 /* For any members of PLIST which are properties of I, remove them
408 from I's plist.
409 OBJECT is the string or buffer containing I. */
410
411 static int
412 remove_properties (plist, i, object)
413 Lisp_Object plist;
414 INTERVAL i;
415 Lisp_Object object;
416 {
417 register Lisp_Object tail1, tail2, sym, current_plist;
418 register int changed = 0;
419
420 current_plist = i->plist;
421 /* Go through each element of plist. */
422 for (tail1 = plist; ! NILP (tail1); tail1 = Fcdr (Fcdr (tail1)))
423 {
424 sym = Fcar (tail1);
425
426 /* First, remove the symbol if its at the head of the list */
427 while (! NILP (current_plist) && EQ (sym, Fcar (current_plist)))
428 {
429 if (BUFFERP (object))
430 {
431 record_property_change (i->position, LENGTH (i),
432 sym, Fcar (Fcdr (current_plist)),
433 object);
434 }
435
436 current_plist = Fcdr (Fcdr (current_plist));
437 changed++;
438 }
439
440 /* Go through i's plist, looking for sym */
441 tail2 = current_plist;
442 while (! NILP (tail2))
443 {
444 register Lisp_Object this;
445 this = Fcdr (Fcdr (tail2));
446 if (EQ (sym, Fcar (this)))
447 {
448 if (BUFFERP (object))
449 {
450 record_property_change (i->position, LENGTH (i),
451 sym, Fcar (Fcdr (this)), object);
452 }
453
454 Fsetcdr (Fcdr (tail2), Fcdr (Fcdr (this)));
455 changed++;
456 }
457 tail2 = this;
458 }
459 }
460
461 if (changed)
462 i->plist = current_plist;
463 return changed;
464 }
465
466 #if 0
467 /* Remove all properties from interval I. Return non-zero
468 if this changes the interval. */
469
470 static INLINE int
471 erase_properties (i)
472 INTERVAL i;
473 {
474 if (NILP (i->plist))
475 return 0;
476
477 i->plist = Qnil;
478 return 1;
479 }
480 #endif
481 \f
482 /* Returns the interval of the POSITION in OBJECT.
483 POSITION is BEG-based. */
484
485 INTERVAL
486 interval_of (position, object)
487 int position;
488 Lisp_Object object;
489 {
490 register INTERVAL i;
491 int beg, end;
492
493 if (NILP (object))
494 XSETBUFFER (object, current_buffer);
495
496 CHECK_STRING_OR_BUFFER (object, 0);
497
498 if (BUFFERP (object))
499 {
500 register struct buffer *b = XBUFFER (object);
501
502 beg = BUF_BEGV (b);
503 end = BUF_ZV (b);
504 i = BUF_INTERVALS (b);
505 }
506 else
507 {
508 register struct Lisp_String *s = XSTRING (object);
509
510 /* We expect position to be 1-based. */
511 beg = BEG;
512 end = s->size + BEG;
513 i = s->intervals;
514 }
515
516 if (!(beg <= position && position <= end))
517 args_out_of_range (make_number (position), make_number (position));
518 if (beg == end || NULL_INTERVAL_P (i))
519 return NULL_INTERVAL;
520
521 return find_interval (i, position);
522 }
523 \f
524 DEFUN ("text-properties-at", Ftext_properties_at,
525 Stext_properties_at, 1, 2, 0,
526 "Return the list of properties of the character at POSITION in OBJECT.\n\
527 OBJECT is the string or buffer to look for the properties in;\n\
528 nil means the current buffer.\n\
529 If POSITION is at the end of OBJECT, the value is nil.")
530 (position, object)
531 Lisp_Object position, object;
532 {
533 register INTERVAL i;
534
535 if (NILP (object))
536 XSETBUFFER (object, current_buffer);
537
538 i = validate_interval_range (object, &position, &position, soft);
539 if (NULL_INTERVAL_P (i))
540 return Qnil;
541 /* If POSITION is at the end of the interval,
542 it means it's the end of OBJECT.
543 There are no properties at the very end,
544 since no character follows. */
545 if (XINT (position) == LENGTH (i) + i->position)
546 return Qnil;
547
548 return i->plist;
549 }
550
551 DEFUN ("get-text-property", Fget_text_property, Sget_text_property, 2, 3, 0,
552 "Return the value of POSITION's property PROP, in OBJECT.\n\
553 OBJECT is optional and defaults to the current buffer.\n\
554 If POSITION is at the end of OBJECT, the value is nil.")
555 (position, prop, object)
556 Lisp_Object position, object;
557 Lisp_Object prop;
558 {
559 return textget (Ftext_properties_at (position, object), prop);
560 }
561
562 DEFUN ("get-char-property", Fget_char_property, Sget_char_property, 2, 3, 0,
563 "Return the value of POSITION's property PROP, in OBJECT.\n\
564 OBJECT is optional and defaults to the current buffer.\n\
565 If POSITION is at the end of OBJECT, the value is nil.\n\
566 If OBJECT is a buffer, then overlay properties are considered as well as\n\
567 text properties.\n\
568 If OBJECT is a window, then that window's buffer is used, but window-specific\n\
569 overlays are considered only if they are associated with OBJECT.")
570 (position, prop, object)
571 Lisp_Object position, object;
572 register Lisp_Object prop;
573 {
574 struct window *w = 0;
575
576 CHECK_NUMBER_COERCE_MARKER (position, 0);
577
578 if (NILP (object))
579 XSETBUFFER (object, current_buffer);
580
581 if (WINDOWP (object))
582 {
583 w = XWINDOW (object);
584 object = w->buffer;
585 }
586 if (BUFFERP (object))
587 {
588 int posn = XINT (position);
589 int noverlays;
590 Lisp_Object *overlay_vec, tem;
591 int next_overlay;
592 int len;
593 struct buffer *obuf = current_buffer;
594
595 set_buffer_temp (XBUFFER (object));
596
597 /* First try with room for 40 overlays. */
598 len = 40;
599 overlay_vec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object));
600
601 noverlays = overlays_at (posn, 0, &overlay_vec, &len,
602 &next_overlay, NULL);
603
604 /* If there are more than 40,
605 make enough space for all, and try again. */
606 if (noverlays > len)
607 {
608 len = noverlays;
609 overlay_vec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object));
610 noverlays = overlays_at (posn, 0, &overlay_vec, &len,
611 &next_overlay, NULL);
612 }
613 noverlays = sort_overlays (overlay_vec, noverlays, w);
614
615 set_buffer_temp (obuf);
616
617 /* Now check the overlays in order of decreasing priority. */
618 while (--noverlays >= 0)
619 {
620 tem = Foverlay_get (overlay_vec[noverlays], prop);
621 if (!NILP (tem))
622 return (tem);
623 }
624 }
625 /* Not a buffer, or no appropriate overlay, so fall through to the
626 simpler case. */
627 return (Fget_text_property (position, prop, object));
628 }
629 \f
630 DEFUN ("next-char-property-change", Fnext_char_property_change,
631 Snext_char_property_change, 1, 2, 0,
632 "Return the position of next text property or overlay change.\n\
633 This scans characters forward from POSITION in OBJECT till it finds\n\
634 a change in some text property, or the beginning or end of an overlay,\n\
635 and returns the position of that.\n\
636 If none is found, the function returns (point-max).\n\
637 \n\
638 If the optional third argument LIMIT is non-nil, don't search\n\
639 past position LIMIT; return LIMIT if nothing is found before LIMIT.")
640 (position, limit)
641 Lisp_Object position, limit;
642 {
643 Lisp_Object temp;
644
645 temp = Fnext_overlay_change (position);
646 if (! NILP (limit))
647 {
648 CHECK_NUMBER (limit, 2);
649 if (XINT (limit) < XINT (temp))
650 temp = limit;
651 }
652 return Fnext_property_change (position, Qnil, temp);
653 }
654
655 DEFUN ("previous-char-property-change", Fprevious_char_property_change,
656 Sprevious_char_property_change, 1, 2, 0,
657 "Return the position of previous text property or overlay change.\n\
658 Scans characters backward from POSITION in OBJECT till it finds\n\
659 a change in some text property, or the beginning or end of an overlay,\n\
660 and returns the position of that.\n\
661 If none is found, the function returns (point-max).\n\
662 \n\
663 If the optional third argument LIMIT is non-nil, don't search\n\
664 past position LIMIT; return LIMIT if nothing is found before LIMIT.")
665 (position, limit)
666 Lisp_Object position, limit;
667 {
668 Lisp_Object temp;
669
670 temp = Fprevious_overlay_change (position);
671 if (! NILP (limit))
672 {
673 CHECK_NUMBER (limit, 2);
674 if (XINT (limit) > XINT (temp))
675 temp = limit;
676 }
677 return Fprevious_property_change (position, Qnil, temp);
678 }
679 \f
680 DEFUN ("next-property-change", Fnext_property_change,
681 Snext_property_change, 1, 3, 0,
682 "Return the position of next property change.\n\
683 Scans characters forward from POSITION in OBJECT till it finds\n\
684 a change in some text property, then returns the position of the change.\n\
685 The optional second argument OBJECT is the string or buffer to scan.\n\
686 Return nil if the property is constant all the way to the end of OBJECT.\n\
687 If the value is non-nil, it is a position greater than POSITION, never equal.\n\n\
688 If the optional third argument LIMIT is non-nil, don't search\n\
689 past position LIMIT; return LIMIT if nothing is found before LIMIT.")
690 (position, object, limit)
691 Lisp_Object position, object, limit;
692 {
693 register INTERVAL i, next;
694
695 if (NILP (object))
696 XSETBUFFER (object, current_buffer);
697
698 if (! NILP (limit) && ! EQ (limit, Qt))
699 CHECK_NUMBER_COERCE_MARKER (limit, 0);
700
701 i = validate_interval_range (object, &position, &position, soft);
702
703 /* If LIMIT is t, return start of next interval--don't
704 bother checking further intervals. */
705 if (EQ (limit, Qt))
706 {
707 if (NULL_INTERVAL_P (i))
708 next = i;
709 else
710 next = next_interval (i);
711
712 if (NULL_INTERVAL_P (next))
713 XSETFASTINT (position, (STRINGP (object)
714 ? XSTRING (object)->size
715 : BUF_ZV (XBUFFER (object))));
716 else
717 XSETFASTINT (position, next->position - (STRINGP (object)));
718 return position;
719 }
720
721 if (NULL_INTERVAL_P (i))
722 return limit;
723
724 next = next_interval (i);
725
726 while (! NULL_INTERVAL_P (next) && intervals_equal (i, next)
727 && (NILP (limit) || next->position < XFASTINT (limit)))
728 next = next_interval (next);
729
730 if (NULL_INTERVAL_P (next))
731 return limit;
732 if (! NILP (limit) && !(next->position < XFASTINT (limit)))
733 return limit;
734
735 XSETFASTINT (position, next->position - (STRINGP (object)));
736 return position;
737 }
738
739 /* Return 1 if there's a change in some property between BEG and END. */
740
741 int
742 property_change_between_p (beg, end)
743 int beg, end;
744 {
745 register INTERVAL i, next;
746 Lisp_Object object, pos;
747
748 XSETBUFFER (object, current_buffer);
749 XSETFASTINT (pos, beg);
750
751 i = validate_interval_range (object, &pos, &pos, soft);
752 if (NULL_INTERVAL_P (i))
753 return 0;
754
755 next = next_interval (i);
756 while (! NULL_INTERVAL_P (next) && intervals_equal (i, next))
757 {
758 next = next_interval (next);
759 if (NULL_INTERVAL_P (next))
760 return 0;
761 if (next->position >= end)
762 return 0;
763 }
764
765 if (NULL_INTERVAL_P (next))
766 return 0;
767
768 return 1;
769 }
770
771 DEFUN ("next-single-property-change", Fnext_single_property_change,
772 Snext_single_property_change, 2, 4, 0,
773 "Return the position of next property change for a specific property.\n\
774 Scans characters forward from POSITION till it finds\n\
775 a change in the PROP property, then returns the position of the change.\n\
776 The optional third argument OBJECT is the string or buffer to scan.\n\
777 The property values are compared with `eq'.\n\
778 Return nil if the property is constant all the way to the end of OBJECT.\n\
779 If the value is non-nil, it is a position greater than POSITION, never equal.\n\n\
780 If the optional fourth argument LIMIT is non-nil, don't search\n\
781 past position LIMIT; return LIMIT if nothing is found before LIMIT.")
782 (position, prop, object, limit)
783 Lisp_Object position, prop, object, limit;
784 {
785 register INTERVAL i, next;
786 register Lisp_Object here_val;
787
788 if (NILP (object))
789 XSETBUFFER (object, current_buffer);
790
791 if (!NILP (limit))
792 CHECK_NUMBER_COERCE_MARKER (limit, 0);
793
794 i = validate_interval_range (object, &position, &position, soft);
795 if (NULL_INTERVAL_P (i))
796 return limit;
797
798 here_val = textget (i->plist, prop);
799 next = next_interval (i);
800 while (! NULL_INTERVAL_P (next)
801 && EQ (here_val, textget (next->plist, prop))
802 && (NILP (limit) || next->position < XFASTINT (limit)))
803 next = next_interval (next);
804
805 if (NULL_INTERVAL_P (next))
806 return limit;
807 if (! NILP (limit) && !(next->position < XFASTINT (limit)))
808 return limit;
809
810 XSETFASTINT (position, next->position - (STRINGP (object)));
811 return position;
812 }
813
814 DEFUN ("previous-property-change", Fprevious_property_change,
815 Sprevious_property_change, 1, 3, 0,
816 "Return the position of previous property change.\n\
817 Scans characters backwards from POSITION in OBJECT till it finds\n\
818 a change in some text property, then returns the position of the change.\n\
819 The optional second argument OBJECT is the string or buffer to scan.\n\
820 Return nil if the property is constant all the way to the start of OBJECT.\n\
821 If the value is non-nil, it is a position less than POSITION, never equal.\n\n\
822 If the optional third argument LIMIT is non-nil, don't search\n\
823 back past position LIMIT; return LIMIT if nothing is found until LIMIT.")
824 (position, object, limit)
825 Lisp_Object position, object, limit;
826 {
827 register INTERVAL i, previous;
828
829 if (NILP (object))
830 XSETBUFFER (object, current_buffer);
831
832 if (!NILP (limit))
833 CHECK_NUMBER_COERCE_MARKER (limit, 0);
834
835 i = validate_interval_range (object, &position, &position, soft);
836 if (NULL_INTERVAL_P (i))
837 return limit;
838
839 /* Start with the interval containing the char before point. */
840 if (i->position == XFASTINT (position))
841 i = previous_interval (i);
842
843 previous = previous_interval (i);
844 while (! NULL_INTERVAL_P (previous) && intervals_equal (previous, i)
845 && (NILP (limit)
846 || previous->position + LENGTH (previous) > XFASTINT (limit)))
847 previous = previous_interval (previous);
848 if (NULL_INTERVAL_P (previous))
849 return limit;
850 if (!NILP (limit)
851 && !(previous->position + LENGTH (previous) > XFASTINT (limit)))
852 return limit;
853
854 XSETFASTINT (position, (previous->position + LENGTH (previous)
855 - (STRINGP (object))));
856 return position;
857 }
858
859 DEFUN ("previous-single-property-change", Fprevious_single_property_change,
860 Sprevious_single_property_change, 2, 4, 0,
861 "Return the position of previous property change for a specific property.\n\
862 Scans characters backward from POSITION till it finds\n\
863 a change in the PROP property, then returns the position of the change.\n\
864 The optional third argument OBJECT is the string or buffer to scan.\n\
865 The property values are compared with `eq'.\n\
866 Return nil if the property is constant all the way to the start of OBJECT.\n\
867 If the value is non-nil, it is a position less than POSITION, never equal.\n\n\
868 If the optional fourth argument LIMIT is non-nil, don't search\n\
869 back past position LIMIT; return LIMIT if nothing is found until LIMIT.")
870 (position, prop, object, limit)
871 Lisp_Object position, prop, object, limit;
872 {
873 register INTERVAL i, previous;
874 register Lisp_Object here_val;
875
876 if (NILP (object))
877 XSETBUFFER (object, current_buffer);
878
879 if (!NILP (limit))
880 CHECK_NUMBER_COERCE_MARKER (limit, 0);
881
882 i = validate_interval_range (object, &position, &position, soft);
883
884 /* Start with the interval containing the char before point. */
885 if (! NULL_INTERVAL_P (i) && i->position == XFASTINT (position))
886 i = previous_interval (i);
887
888 if (NULL_INTERVAL_P (i))
889 return limit;
890
891 here_val = textget (i->plist, prop);
892 previous = previous_interval (i);
893 while (! NULL_INTERVAL_P (previous)
894 && EQ (here_val, textget (previous->plist, prop))
895 && (NILP (limit)
896 || previous->position + LENGTH (previous) > XFASTINT (limit)))
897 previous = previous_interval (previous);
898 if (NULL_INTERVAL_P (previous))
899 return limit;
900 if (!NILP (limit)
901 && !(previous->position + LENGTH (previous) > XFASTINT (limit)))
902 return limit;
903
904 XSETFASTINT (position, (previous->position + LENGTH (previous)
905 - (STRINGP (object))));
906 return position;
907 }
908 \f
909 /* Callers note, this can GC when OBJECT is a buffer (or nil). */
910
911 DEFUN ("add-text-properties", Fadd_text_properties,
912 Sadd_text_properties, 3, 4, 0,
913 "Add properties to the text from START to END.\n\
914 The third argument PROPERTIES is a property list\n\
915 specifying the property values to add.\n\
916 The optional fourth argument, OBJECT,\n\
917 is the string or buffer containing the text.\n\
918 Return t if any property value actually changed, nil otherwise.")
919 (start, end, properties, object)
920 Lisp_Object start, end, properties, object;
921 {
922 register INTERVAL i, unchanged;
923 register int s, len, modified = 0;
924 struct gcpro gcpro1;
925
926 properties = validate_plist (properties);
927 if (NILP (properties))
928 return Qnil;
929
930 if (NILP (object))
931 XSETBUFFER (object, current_buffer);
932
933 i = validate_interval_range (object, &start, &end, hard);
934 if (NULL_INTERVAL_P (i))
935 return Qnil;
936
937 s = XINT (start);
938 len = XINT (end) - s;
939
940 /* No need to protect OBJECT, because we GC only if it's a buffer,
941 and live buffers are always protected. */
942 GCPRO1 (properties);
943
944 /* If we're not starting on an interval boundary, we have to
945 split this interval. */
946 if (i->position != s)
947 {
948 /* If this interval already has the properties, we can
949 skip it. */
950 if (interval_has_all_properties (properties, i))
951 {
952 int got = (LENGTH (i) - (s - i->position));
953 if (got >= len)
954 RETURN_UNGCPRO (Qnil);
955 len -= got;
956 i = next_interval (i);
957 }
958 else
959 {
960 unchanged = i;
961 i = split_interval_right (unchanged, s - unchanged->position);
962 copy_properties (unchanged, i);
963 }
964 }
965
966 if (BUFFERP (object))
967 modify_region (XBUFFER (object), XINT (start), XINT (end));
968
969 /* We are at the beginning of interval I, with LEN chars to scan. */
970 for (;;)
971 {
972 if (i == 0)
973 abort ();
974
975 if (LENGTH (i) >= len)
976 {
977 /* We can UNGCPRO safely here, because there will be just
978 one more chance to gc, in the next call to add_properties,
979 and after that we will not need PROPERTIES or OBJECT again. */
980 UNGCPRO;
981
982 if (interval_has_all_properties (properties, i))
983 {
984 if (BUFFERP (object))
985 signal_after_change (XINT (start), XINT (end) - XINT (start),
986 XINT (end) - XINT (start));
987
988 return modified ? Qt : Qnil;
989 }
990
991 if (LENGTH (i) == len)
992 {
993 add_properties (properties, i, object);
994 if (BUFFERP (object))
995 signal_after_change (XINT (start), XINT (end) - XINT (start),
996 XINT (end) - XINT (start));
997 return Qt;
998 }
999
1000 /* i doesn't have the properties, and goes past the change limit */
1001 unchanged = i;
1002 i = split_interval_left (unchanged, len);
1003 copy_properties (unchanged, i);
1004 add_properties (properties, i, object);
1005 if (BUFFERP (object))
1006 signal_after_change (XINT (start), XINT (end) - XINT (start),
1007 XINT (end) - XINT (start));
1008 return Qt;
1009 }
1010
1011 len -= LENGTH (i);
1012 modified += add_properties (properties, i, object);
1013 i = next_interval (i);
1014 }
1015 }
1016
1017 /* Callers note, this can GC when OBJECT is a buffer (or nil). */
1018
1019 DEFUN ("put-text-property", Fput_text_property,
1020 Sput_text_property, 4, 5, 0,
1021 "Set one property of the text from START to END.\n\
1022 The third and fourth arguments PROPERTY and VALUE\n\
1023 specify the property to add.\n\
1024 The optional fifth argument, OBJECT,\n\
1025 is the string or buffer containing the text.")
1026 (start, end, property, value, object)
1027 Lisp_Object start, end, property, value, object;
1028 {
1029 Fadd_text_properties (start, end,
1030 Fcons (property, Fcons (value, Qnil)),
1031 object);
1032 return Qnil;
1033 }
1034
1035 DEFUN ("set-text-properties", Fset_text_properties,
1036 Sset_text_properties, 3, 4, 0,
1037 "Completely replace properties of text from START to END.\n\
1038 The third argument PROPERTIES is the new property list.\n\
1039 The optional fourth argument, OBJECT,\n\
1040 is the string or buffer containing the text.")
1041 (start, end, properties, object)
1042 Lisp_Object start, end, properties, object;
1043 {
1044 register INTERVAL i, unchanged;
1045 register INTERVAL prev_changed = NULL_INTERVAL;
1046 register int s, len;
1047 Lisp_Object ostart, oend;
1048 int have_modified = 0;
1049
1050 ostart = start;
1051 oend = end;
1052
1053 properties = validate_plist (properties);
1054
1055 if (NILP (object))
1056 XSETBUFFER (object, current_buffer);
1057
1058 /* If we want no properties for a whole string,
1059 get rid of its intervals. */
1060 if (NILP (properties) && STRINGP (object)
1061 && XFASTINT (start) == 0
1062 && XFASTINT (end) == XSTRING (object)->size)
1063 {
1064 if (! XSTRING (object)->intervals)
1065 return Qt;
1066
1067 XSTRING (object)->intervals = 0;
1068 return Qt;
1069 }
1070
1071 i = validate_interval_range (object, &start, &end, soft);
1072
1073 if (NULL_INTERVAL_P (i))
1074 {
1075 /* If buffer has no properties, and we want none, return now. */
1076 if (NILP (properties))
1077 return Qnil;
1078
1079 /* Restore the original START and END values
1080 because validate_interval_range increments them for strings. */
1081 start = ostart;
1082 end = oend;
1083
1084 i = validate_interval_range (object, &start, &end, hard);
1085 /* This can return if start == end. */
1086 if (NULL_INTERVAL_P (i))
1087 return Qnil;
1088 }
1089
1090 s = XINT (start);
1091 len = XINT (end) - s;
1092
1093 if (BUFFERP (object))
1094 modify_region (XBUFFER (object), XINT (start), XINT (end));
1095
1096 if (i->position != s)
1097 {
1098 unchanged = i;
1099 i = split_interval_right (unchanged, s - unchanged->position);
1100
1101 if (LENGTH (i) > len)
1102 {
1103 copy_properties (unchanged, i);
1104 i = split_interval_left (i, len);
1105 set_properties (properties, i, object);
1106 if (BUFFERP (object))
1107 signal_after_change (XINT (start), XINT (end) - XINT (start),
1108 XINT (end) - XINT (start));
1109
1110 return Qt;
1111 }
1112
1113 set_properties (properties, i, object);
1114
1115 if (LENGTH (i) == len)
1116 {
1117 if (BUFFERP (object))
1118 signal_after_change (XINT (start), XINT (end) - XINT (start),
1119 XINT (end) - XINT (start));
1120
1121 return Qt;
1122 }
1123
1124 prev_changed = i;
1125 len -= LENGTH (i);
1126 i = next_interval (i);
1127 }
1128
1129 /* We are starting at the beginning of an interval, I */
1130 while (len > 0)
1131 {
1132 if (i == 0)
1133 abort ();
1134
1135 if (LENGTH (i) >= len)
1136 {
1137 if (LENGTH (i) > len)
1138 i = split_interval_left (i, len);
1139
1140 /* We have to call set_properties even if we are going to
1141 merge the intervals, so as to make the undo records
1142 and cause redisplay to happen. */
1143 set_properties (properties, i, object);
1144 if (!NULL_INTERVAL_P (prev_changed))
1145 merge_interval_left (i);
1146 if (BUFFERP (object))
1147 signal_after_change (XINT (start), XINT (end) - XINT (start),
1148 XINT (end) - XINT (start));
1149 return Qt;
1150 }
1151
1152 len -= LENGTH (i);
1153
1154 /* We have to call set_properties even if we are going to
1155 merge the intervals, so as to make the undo records
1156 and cause redisplay to happen. */
1157 set_properties (properties, i, object);
1158 if (NULL_INTERVAL_P (prev_changed))
1159 prev_changed = i;
1160 else
1161 prev_changed = i = merge_interval_left (i);
1162
1163 i = next_interval (i);
1164 }
1165
1166 if (BUFFERP (object))
1167 signal_after_change (XINT (start), XINT (end) - XINT (start),
1168 XINT (end) - XINT (start));
1169 return Qt;
1170 }
1171
1172 DEFUN ("remove-text-properties", Fremove_text_properties,
1173 Sremove_text_properties, 3, 4, 0,
1174 "Remove some properties from text from START to END.\n\
1175 The third argument PROPERTIES is a property list\n\
1176 whose property names specify the properties to remove.\n\
1177 \(The values stored in PROPERTIES are ignored.)\n\
1178 The optional fourth argument, OBJECT,\n\
1179 is the string or buffer containing the text.\n\
1180 Return t if any property was actually removed, nil otherwise.")
1181 (start, end, properties, object)
1182 Lisp_Object start, end, properties, object;
1183 {
1184 register INTERVAL i, unchanged;
1185 register int s, len, modified = 0;
1186
1187 if (NILP (object))
1188 XSETBUFFER (object, current_buffer);
1189
1190 i = validate_interval_range (object, &start, &end, soft);
1191 if (NULL_INTERVAL_P (i))
1192 return Qnil;
1193
1194 s = XINT (start);
1195 len = XINT (end) - s;
1196
1197 if (i->position != s)
1198 {
1199 /* No properties on this first interval -- return if
1200 it covers the entire region. */
1201 if (! interval_has_some_properties (properties, i))
1202 {
1203 int got = (LENGTH (i) - (s - i->position));
1204 if (got >= len)
1205 return Qnil;
1206 len -= got;
1207 i = next_interval (i);
1208 }
1209 /* Split away the beginning of this interval; what we don't
1210 want to modify. */
1211 else
1212 {
1213 unchanged = i;
1214 i = split_interval_right (unchanged, s - unchanged->position);
1215 copy_properties (unchanged, i);
1216 }
1217 }
1218
1219 if (BUFFERP (object))
1220 modify_region (XBUFFER (object), XINT (start), XINT (end));
1221
1222 /* We are at the beginning of an interval, with len to scan */
1223 for (;;)
1224 {
1225 if (i == 0)
1226 abort ();
1227
1228 if (LENGTH (i) >= len)
1229 {
1230 if (! interval_has_some_properties (properties, i))
1231 return modified ? Qt : Qnil;
1232
1233 if (LENGTH (i) == len)
1234 {
1235 remove_properties (properties, i, object);
1236 if (BUFFERP (object))
1237 signal_after_change (XINT (start), XINT (end) - XINT (start),
1238 XINT (end) - XINT (start));
1239 return Qt;
1240 }
1241
1242 /* i has the properties, and goes past the change limit */
1243 unchanged = i;
1244 i = split_interval_left (i, len);
1245 copy_properties (unchanged, i);
1246 remove_properties (properties, i, object);
1247 if (BUFFERP (object))
1248 signal_after_change (XINT (start), XINT (end) - XINT (start),
1249 XINT (end) - XINT (start));
1250 return Qt;
1251 }
1252
1253 len -= LENGTH (i);
1254 modified += remove_properties (properties, i, object);
1255 i = next_interval (i);
1256 }
1257 }
1258 \f
1259 DEFUN ("text-property-any", Ftext_property_any,
1260 Stext_property_any, 4, 5, 0,
1261 "Check text from START to END for property PROPERTY equalling VALUE.\n\
1262 If so, return the position of the first character whose property PROPERTY\n\
1263 is `eq' to VALUE. Otherwise return nil.\n\
1264 The optional fifth argument, OBJECT, is the string or buffer\n\
1265 containing the text.")
1266 (start, end, property, value, object)
1267 Lisp_Object start, end, property, value, object;
1268 {
1269 register INTERVAL i;
1270 register int e, pos;
1271
1272 if (NILP (object))
1273 XSETBUFFER (object, current_buffer);
1274 i = validate_interval_range (object, &start, &end, soft);
1275 if (NULL_INTERVAL_P (i))
1276 return (!NILP (value) || EQ (start, end) ? Qnil : start);
1277 e = XINT (end);
1278
1279 while (! NULL_INTERVAL_P (i))
1280 {
1281 if (i->position >= e)
1282 break;
1283 if (EQ (textget (i->plist, property), value))
1284 {
1285 pos = i->position;
1286 if (pos < XINT (start))
1287 pos = XINT (start);
1288 return make_number (pos - (STRINGP (object)));
1289 }
1290 i = next_interval (i);
1291 }
1292 return Qnil;
1293 }
1294
1295 DEFUN ("text-property-not-all", Ftext_property_not_all,
1296 Stext_property_not_all, 4, 5, 0,
1297 "Check text from START to END for property PROPERTY not equalling VALUE.\n\
1298 If so, return the position of the first character whose property PROPERTY\n\
1299 is not `eq' to VALUE. Otherwise, return nil.\n\
1300 The optional fifth argument, OBJECT, is the string or buffer\n\
1301 containing the text.")
1302 (start, end, property, value, object)
1303 Lisp_Object start, end, property, value, object;
1304 {
1305 register INTERVAL i;
1306 register int s, e;
1307
1308 if (NILP (object))
1309 XSETBUFFER (object, current_buffer);
1310 i = validate_interval_range (object, &start, &end, soft);
1311 if (NULL_INTERVAL_P (i))
1312 return (NILP (value) || EQ (start, end)) ? Qnil : start;
1313 s = XINT (start);
1314 e = XINT (end);
1315
1316 while (! NULL_INTERVAL_P (i))
1317 {
1318 if (i->position >= e)
1319 break;
1320 if (! EQ (textget (i->plist, property), value))
1321 {
1322 if (i->position > s)
1323 s = i->position;
1324 return make_number (s - (STRINGP (object)));
1325 }
1326 i = next_interval (i);
1327 }
1328 return Qnil;
1329 }
1330 \f
1331 #if 0 /* You can use set-text-properties for this. */
1332
1333 DEFUN ("erase-text-properties", Ferase_text_properties,
1334 Serase_text_properties, 2, 3, 0,
1335 "Remove all properties from the text from START to END.\n\
1336 The optional third argument, OBJECT,\n\
1337 is the string or buffer containing the text.")
1338 (start, end, object)
1339 Lisp_Object start, end, object;
1340 {
1341 register INTERVAL i;
1342 register INTERVAL prev_changed = NULL_INTERVAL;
1343 register int s, len, modified;
1344
1345 if (NILP (object))
1346 XSETBUFFER (object, current_buffer);
1347
1348 i = validate_interval_range (object, &start, &end, soft);
1349 if (NULL_INTERVAL_P (i))
1350 return Qnil;
1351
1352 s = XINT (start);
1353 len = XINT (end) - s;
1354
1355 if (i->position != s)
1356 {
1357 register int got;
1358 register INTERVAL unchanged = i;
1359
1360 /* If there are properties here, then this text will be modified. */
1361 if (! NILP (i->plist))
1362 {
1363 i = split_interval_right (unchanged, s - unchanged->position);
1364 i->plist = Qnil;
1365 modified++;
1366
1367 if (LENGTH (i) > len)
1368 {
1369 i = split_interval_right (i, len);
1370 copy_properties (unchanged, i);
1371 return Qt;
1372 }
1373
1374 if (LENGTH (i) == len)
1375 return Qt;
1376
1377 got = LENGTH (i);
1378 }
1379 /* If the text of I is without any properties, and contains
1380 LEN or more characters, then we may return without changing
1381 anything.*/
1382 else if (LENGTH (i) - (s - i->position) <= len)
1383 return Qnil;
1384 /* The amount of text to change extends past I, so just note
1385 how much we've gotten. */
1386 else
1387 got = LENGTH (i) - (s - i->position);
1388
1389 len -= got;
1390 prev_changed = i;
1391 i = next_interval (i);
1392 }
1393
1394 /* We are starting at the beginning of an interval, I. */
1395 while (len > 0)
1396 {
1397 if (LENGTH (i) >= len)
1398 {
1399 /* If I has no properties, simply merge it if possible. */
1400 if (NILP (i->plist))
1401 {
1402 if (! NULL_INTERVAL_P (prev_changed))
1403 merge_interval_left (i);
1404
1405 return modified ? Qt : Qnil;
1406 }
1407
1408 if (LENGTH (i) > len)
1409 i = split_interval_left (i, len);
1410 if (! NULL_INTERVAL_P (prev_changed))
1411 merge_interval_left (i);
1412 else
1413 i->plist = Qnil;
1414
1415 return Qt;
1416 }
1417
1418 /* Here if we still need to erase past the end of I */
1419 len -= LENGTH (i);
1420 if (NULL_INTERVAL_P (prev_changed))
1421 {
1422 modified += erase_properties (i);
1423 prev_changed = i;
1424 }
1425 else
1426 {
1427 modified += ! NILP (i->plist);
1428 /* Merging I will give it the properties of PREV_CHANGED. */
1429 prev_changed = i = merge_interval_left (i);
1430 }
1431
1432 i = next_interval (i);
1433 }
1434
1435 return modified ? Qt : Qnil;
1436 }
1437 #endif /* 0 */
1438
1439 /* I don't think this is the right interface to export; how often do you
1440 want to do something like this, other than when you're copying objects
1441 around?
1442
1443 I think it would be better to have a pair of functions, one which
1444 returns the text properties of a region as a list of ranges and
1445 plists, and another which applies such a list to another object. */
1446
1447 /* Add properties from SRC to SRC of SRC, starting at POS in DEST.
1448 SRC and DEST may each refer to strings or buffers.
1449 Optional sixth argument PROP causes only that property to be copied.
1450 Properties are copied to DEST as if by `add-text-properties'.
1451 Return t if any property value actually changed, nil otherwise. */
1452
1453 /* Note this can GC when DEST is a buffer. */
1454 \f
1455 Lisp_Object
1456 copy_text_properties (start, end, src, pos, dest, prop)
1457 Lisp_Object start, end, src, pos, dest, prop;
1458 {
1459 INTERVAL i;
1460 Lisp_Object res;
1461 Lisp_Object stuff;
1462 Lisp_Object plist;
1463 int s, e, e2, p, len, modified = 0;
1464 struct gcpro gcpro1, gcpro2;
1465
1466 i = validate_interval_range (src, &start, &end, soft);
1467 if (NULL_INTERVAL_P (i))
1468 return Qnil;
1469
1470 CHECK_NUMBER_COERCE_MARKER (pos, 0);
1471 {
1472 Lisp_Object dest_start, dest_end;
1473
1474 dest_start = pos;
1475 XSETFASTINT (dest_end, XINT (dest_start) + (XINT (end) - XINT (start)));
1476 /* Apply this to a copy of pos; it will try to increment its arguments,
1477 which we don't want. */
1478 validate_interval_range (dest, &dest_start, &dest_end, soft);
1479 }
1480
1481 s = XINT (start);
1482 e = XINT (end);
1483 p = XINT (pos);
1484
1485 stuff = Qnil;
1486
1487 while (s < e)
1488 {
1489 e2 = i->position + LENGTH (i);
1490 if (e2 > e)
1491 e2 = e;
1492 len = e2 - s;
1493
1494 plist = i->plist;
1495 if (! NILP (prop))
1496 while (! NILP (plist))
1497 {
1498 if (EQ (Fcar (plist), prop))
1499 {
1500 plist = Fcons (prop, Fcons (Fcar (Fcdr (plist)), Qnil));
1501 break;
1502 }
1503 plist = Fcdr (Fcdr (plist));
1504 }
1505 if (! NILP (plist))
1506 {
1507 /* Must defer modifications to the interval tree in case src
1508 and dest refer to the same string or buffer. */
1509 stuff = Fcons (Fcons (make_number (p),
1510 Fcons (make_number (p + len),
1511 Fcons (plist, Qnil))),
1512 stuff);
1513 }
1514
1515 i = next_interval (i);
1516 if (NULL_INTERVAL_P (i))
1517 break;
1518
1519 p += len;
1520 s = i->position;
1521 }
1522
1523 GCPRO2 (stuff, dest);
1524
1525 while (! NILP (stuff))
1526 {
1527 res = Fcar (stuff);
1528 res = Fadd_text_properties (Fcar (res), Fcar (Fcdr (res)),
1529 Fcar (Fcdr (Fcdr (res))), dest);
1530 if (! NILP (res))
1531 modified++;
1532 stuff = Fcdr (stuff);
1533 }
1534
1535 UNGCPRO;
1536
1537 return modified ? Qt : Qnil;
1538 }
1539 \f
1540 /* Call the modification hook functions in LIST, each with START and END. */
1541
1542 static void
1543 call_mod_hooks (list, start, end)
1544 Lisp_Object list, start, end;
1545 {
1546 struct gcpro gcpro1;
1547 GCPRO1 (list);
1548 while (!NILP (list))
1549 {
1550 call2 (Fcar (list), start, end);
1551 list = Fcdr (list);
1552 }
1553 UNGCPRO;
1554 }
1555
1556 /* Check for read-only intervals between character positions START ... END,
1557 in BUF, and signal an error if we find one.
1558
1559 Then check for any modification hooks in the range.
1560 Create a list of all these hooks in lexicographic order,
1561 eliminating consecutive extra copies of the same hook. Then call
1562 those hooks in order, with START and END - 1 as arguments. */
1563
1564 void
1565 verify_interval_modification (buf, start, end)
1566 struct buffer *buf;
1567 int start, end;
1568 {
1569 register INTERVAL intervals = BUF_INTERVALS (buf);
1570 register INTERVAL i, prev;
1571 Lisp_Object hooks;
1572 register Lisp_Object prev_mod_hooks;
1573 Lisp_Object mod_hooks;
1574 struct gcpro gcpro1;
1575
1576 hooks = Qnil;
1577 prev_mod_hooks = Qnil;
1578 mod_hooks = Qnil;
1579
1580 interval_insert_behind_hooks = Qnil;
1581 interval_insert_in_front_hooks = Qnil;
1582
1583 if (NULL_INTERVAL_P (intervals))
1584 return;
1585
1586 if (start > end)
1587 {
1588 int temp = start;
1589 start = end;
1590 end = temp;
1591 }
1592
1593 /* For an insert operation, check the two chars around the position. */
1594 if (start == end)
1595 {
1596 INTERVAL prev;
1597 Lisp_Object before, after;
1598
1599 /* Set I to the interval containing the char after START,
1600 and PREV to the interval containing the char before START.
1601 Either one may be null. They may be equal. */
1602 i = find_interval (intervals, start);
1603
1604 if (start == BUF_BEGV (buf))
1605 prev = 0;
1606 else if (i->position == start)
1607 prev = previous_interval (i);
1608 else if (i->position < start)
1609 prev = i;
1610 if (start == BUF_ZV (buf))
1611 i = 0;
1612
1613 /* If Vinhibit_read_only is set and is not a list, we can
1614 skip the read_only checks. */
1615 if (NILP (Vinhibit_read_only) || CONSP (Vinhibit_read_only))
1616 {
1617 /* If I and PREV differ we need to check for the read-only
1618 property together with its stickiness. If either I or
1619 PREV are 0, this check is all we need.
1620 We have to take special care, since read-only may be
1621 indirectly defined via the category property. */
1622 if (i != prev)
1623 {
1624 if (! NULL_INTERVAL_P (i))
1625 {
1626 after = textget (i->plist, Qread_only);
1627
1628 /* If interval I is read-only and read-only is
1629 front-sticky, inhibit insertion.
1630 Check for read-only as well as category. */
1631 if (! NILP (after)
1632 && NILP (Fmemq (after, Vinhibit_read_only)))
1633 {
1634 Lisp_Object tem;
1635
1636 tem = textget (i->plist, Qfront_sticky);
1637 if (TMEM (Qread_only, tem)
1638 || (NILP (Fplist_get (i->plist, Qread_only))
1639 && TMEM (Qcategory, tem)))
1640 error ("Attempt to insert within read-only text");
1641 }
1642 }
1643
1644 if (! NULL_INTERVAL_P (prev))
1645 {
1646 before = textget (prev->plist, Qread_only);
1647
1648 /* If interval PREV is read-only and read-only isn't
1649 rear-nonsticky, inhibit insertion.
1650 Check for read-only as well as category. */
1651 if (! NILP (before)
1652 && NILP (Fmemq (before, Vinhibit_read_only)))
1653 {
1654 Lisp_Object tem;
1655
1656 tem = textget (prev->plist, Qrear_nonsticky);
1657 if (! TMEM (Qread_only, tem)
1658 && (! NILP (Fplist_get (prev->plist,Qread_only))
1659 || ! TMEM (Qcategory, tem)))
1660 error ("Attempt to insert within read-only text");
1661 }
1662 }
1663 }
1664 else if (! NULL_INTERVAL_P (i))
1665 {
1666 after = textget (i->plist, Qread_only);
1667
1668 /* If interval I is read-only and read-only is
1669 front-sticky, inhibit insertion.
1670 Check for read-only as well as category. */
1671 if (! NILP (after) && NILP (Fmemq (after, Vinhibit_read_only)))
1672 {
1673 Lisp_Object tem;
1674
1675 tem = textget (i->plist, Qfront_sticky);
1676 if (TMEM (Qread_only, tem)
1677 || (NILP (Fplist_get (i->plist, Qread_only))
1678 && TMEM (Qcategory, tem)))
1679 error ("Attempt to insert within read-only text");
1680
1681 tem = textget (prev->plist, Qrear_nonsticky);
1682 if (! TMEM (Qread_only, tem)
1683 && (! NILP (Fplist_get (prev->plist, Qread_only))
1684 || ! TMEM (Qcategory, tem)))
1685 error ("Attempt to insert within read-only text");
1686 }
1687 }
1688 }
1689
1690 /* Run both insert hooks (just once if they're the same). */
1691 if (!NULL_INTERVAL_P (prev))
1692 interval_insert_behind_hooks
1693 = textget (prev->plist, Qinsert_behind_hooks);
1694 if (!NULL_INTERVAL_P (i))
1695 interval_insert_in_front_hooks
1696 = textget (i->plist, Qinsert_in_front_hooks);
1697 }
1698 else
1699 {
1700 /* Loop over intervals on or next to START...END,
1701 collecting their hooks. */
1702
1703 i = find_interval (intervals, start);
1704 do
1705 {
1706 if (! INTERVAL_WRITABLE_P (i))
1707 error ("Attempt to modify read-only text");
1708
1709 mod_hooks = textget (i->plist, Qmodification_hooks);
1710 if (! NILP (mod_hooks) && ! EQ (mod_hooks, prev_mod_hooks))
1711 {
1712 hooks = Fcons (mod_hooks, hooks);
1713 prev_mod_hooks = mod_hooks;
1714 }
1715
1716 i = next_interval (i);
1717 }
1718 /* Keep going thru the interval containing the char before END. */
1719 while (! NULL_INTERVAL_P (i) && i->position < end);
1720
1721 GCPRO1 (hooks);
1722 hooks = Fnreverse (hooks);
1723 while (! EQ (hooks, Qnil))
1724 {
1725 call_mod_hooks (Fcar (hooks), make_number (start),
1726 make_number (end));
1727 hooks = Fcdr (hooks);
1728 }
1729 UNGCPRO;
1730 }
1731 }
1732
1733 /* Run the interval hooks for an insertion on character range START ... END.
1734 verify_interval_modification chose which hooks to run;
1735 this function is called after the insertion happens
1736 so it can indicate the range of inserted text. */
1737
1738 void
1739 report_interval_modification (start, end)
1740 Lisp_Object start, end;
1741 {
1742 if (! NILP (interval_insert_behind_hooks))
1743 call_mod_hooks (interval_insert_behind_hooks, start, end);
1744 if (! NILP (interval_insert_in_front_hooks)
1745 && ! EQ (interval_insert_in_front_hooks,
1746 interval_insert_behind_hooks))
1747 call_mod_hooks (interval_insert_in_front_hooks, start, end);
1748 }
1749 \f
1750 void
1751 syms_of_textprop ()
1752 {
1753 DEFVAR_LISP ("default-text-properties", &Vdefault_text_properties,
1754 "Property-list used as default values.\n\
1755 The value of a property in this list is seen as the value for every\n\
1756 character that does not have its own value for that property.");
1757 Vdefault_text_properties = Qnil;
1758
1759 DEFVAR_LISP ("inhibit-point-motion-hooks", &Vinhibit_point_motion_hooks,
1760 "If non-nil, don't run `point-left' and `point-entered' text properties.\n\
1761 This also inhibits the use of the `intangible' text property.");
1762 Vinhibit_point_motion_hooks = Qnil;
1763
1764 staticpro (&interval_insert_behind_hooks);
1765 staticpro (&interval_insert_in_front_hooks);
1766 interval_insert_behind_hooks = Qnil;
1767 interval_insert_in_front_hooks = Qnil;
1768
1769
1770 /* Common attributes one might give text */
1771
1772 staticpro (&Qforeground);
1773 Qforeground = intern ("foreground");
1774 staticpro (&Qbackground);
1775 Qbackground = intern ("background");
1776 staticpro (&Qfont);
1777 Qfont = intern ("font");
1778 staticpro (&Qstipple);
1779 Qstipple = intern ("stipple");
1780 staticpro (&Qunderline);
1781 Qunderline = intern ("underline");
1782 staticpro (&Qread_only);
1783 Qread_only = intern ("read-only");
1784 staticpro (&Qinvisible);
1785 Qinvisible = intern ("invisible");
1786 staticpro (&Qintangible);
1787 Qintangible = intern ("intangible");
1788 staticpro (&Qcategory);
1789 Qcategory = intern ("category");
1790 staticpro (&Qlocal_map);
1791 Qlocal_map = intern ("local-map");
1792 staticpro (&Qfront_sticky);
1793 Qfront_sticky = intern ("front-sticky");
1794 staticpro (&Qrear_nonsticky);
1795 Qrear_nonsticky = intern ("rear-nonsticky");
1796
1797 /* Properties that text might use to specify certain actions */
1798
1799 staticpro (&Qmouse_left);
1800 Qmouse_left = intern ("mouse-left");
1801 staticpro (&Qmouse_entered);
1802 Qmouse_entered = intern ("mouse-entered");
1803 staticpro (&Qpoint_left);
1804 Qpoint_left = intern ("point-left");
1805 staticpro (&Qpoint_entered);
1806 Qpoint_entered = intern ("point-entered");
1807
1808 defsubr (&Stext_properties_at);
1809 defsubr (&Sget_text_property);
1810 defsubr (&Sget_char_property);
1811 defsubr (&Snext_char_property_change);
1812 defsubr (&Sprevious_char_property_change);
1813 defsubr (&Snext_property_change);
1814 defsubr (&Snext_single_property_change);
1815 defsubr (&Sprevious_property_change);
1816 defsubr (&Sprevious_single_property_change);
1817 defsubr (&Sadd_text_properties);
1818 defsubr (&Sput_text_property);
1819 defsubr (&Sset_text_properties);
1820 defsubr (&Sremove_text_properties);
1821 defsubr (&Stext_property_any);
1822 defsubr (&Stext_property_not_all);
1823 /* defsubr (&Serase_text_properties); */
1824 /* defsubr (&Scopy_text_properties); */
1825 }
1826
1827 #else
1828
1829 lose -- this shouldn't be compiled if USE_TEXT_PROPERTIES isn't defined
1830
1831 #endif /* USE_TEXT_PROPERTIES */