]> code.delx.au - gnu-emacs/blob - src/textprop.c
Doc fix.
[gnu-emacs] / src / textprop.c
1 /* Interface code for dealing with text properties.
2 Copyright (C) 1993 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, 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20 #include <config.h>
21 #include "lisp.h"
22 #include "intervals.h"
23 #include "buffer.h"
24 \f
25
26 /* NOTES: previous- and next- property change will have to skip
27 zero-length intervals if they are implemented. This could be done
28 inside next_interval and previous_interval.
29
30 set_properties needs to deal with the interval property cache.
31
32 It is assumed that for any interval plist, a property appears
33 only once on the list. Although some code i.e., remove_properties,
34 handles the more general case, the uniqueness of properties is
35 necessary for the system to remain consistent. This requirement
36 is enforced by the subrs installing properties onto the intervals. */
37
38 /* The rest of the file is within this conditional */
39 #ifdef USE_TEXT_PROPERTIES
40 \f
41 /* Types of hooks. */
42 Lisp_Object Qmouse_left;
43 Lisp_Object Qmouse_entered;
44 Lisp_Object Qpoint_left;
45 Lisp_Object Qpoint_entered;
46 Lisp_Object Qcategory;
47 Lisp_Object Qlocal_map;
48
49 /* Visual properties text (including strings) may have. */
50 Lisp_Object Qforeground, Qbackground, Qfont, Qunderline, Qstipple;
51 Lisp_Object Qinvisible, Qread_only, Qhidden;
52
53 /* Sticky properties */
54 Lisp_Object Qfront_sticky, Qrear_nonsticky;
55
56 /* If o1 is a cons whose cdr is a cons, return non-zero and set o2 to
57 the o1's cdr. Otherwise, return zero. This is handy for
58 traversing plists. */
59 #define PLIST_ELT_P(o1, o2) (CONSP (o1) && CONSP ((o2) = XCONS (o1)->cdr))
60
61 Lisp_Object Vinhibit_point_motion_hooks;
62
63 \f
64 /* Extract the interval at the position pointed to by BEGIN from
65 OBJECT, a string or buffer. Additionally, check that the positions
66 pointed to by BEGIN and END are within the bounds of OBJECT, and
67 reverse them if *BEGIN is greater than *END. The objects pointed
68 to by BEGIN and END may be integers or markers; if the latter, they
69 are coerced to integers.
70
71 When OBJECT is a string, we increment *BEGIN and *END
72 to make them origin-one.
73
74 Note that buffer points don't correspond to interval indices.
75 For example, point-max is 1 greater than the index of the last
76 character. This difference is handled in the caller, which uses
77 the validated points to determine a length, and operates on that.
78 Exceptions are Ftext_properties_at, Fnext_property_change, and
79 Fprevious_property_change which call this function with BEGIN == END.
80 Handle this case specially.
81
82 If FORCE is soft (0), it's OK to return NULL_INTERVAL. Otherwise,
83 create an interval tree for OBJECT if one doesn't exist, provided
84 the object actually contains text. In the current design, if there
85 is no text, there can be no text properties. */
86
87 #define soft 0
88 #define hard 1
89
90 static INTERVAL
91 validate_interval_range (object, begin, end, force)
92 Lisp_Object object, *begin, *end;
93 int force;
94 {
95 register INTERVAL i;
96 int searchpos;
97
98 CHECK_STRING_OR_BUFFER (object, 0);
99 CHECK_NUMBER_COERCE_MARKER (*begin, 0);
100 CHECK_NUMBER_COERCE_MARKER (*end, 0);
101
102 /* If we are asked for a point, but from a subr which operates
103 on a range, then return nothing. */
104 if (*begin == *end && begin != end)
105 return NULL_INTERVAL;
106
107 if (XINT (*begin) > XINT (*end))
108 {
109 Lisp_Object n;
110 n = *begin;
111 *begin = *end;
112 *end = n;
113 }
114
115 if (XTYPE (object) == Lisp_Buffer)
116 {
117 register struct buffer *b = XBUFFER (object);
118
119 if (!(BUF_BEGV (b) <= XINT (*begin) && XINT (*begin) <= XINT (*end)
120 && XINT (*end) <= BUF_ZV (b)))
121 args_out_of_range (*begin, *end);
122 i = b->intervals;
123
124 /* If there's no text, there are no properties. */
125 if (BUF_BEGV (b) == BUF_ZV (b))
126 return NULL_INTERVAL;
127
128 searchpos = XINT (*begin);
129 }
130 else
131 {
132 register struct Lisp_String *s = XSTRING (object);
133
134 if (! (0 <= XINT (*begin) && XINT (*begin) <= XINT (*end)
135 && XINT (*end) <= s->size))
136 args_out_of_range (*begin, *end);
137 /* User-level Positions in strings start with 0,
138 but the interval code always wants positions starting with 1. */
139 XFASTINT (*begin) += 1;
140 if (begin != end)
141 XFASTINT (*end) += 1;
142 i = s->intervals;
143
144 if (s->size == 0)
145 return NULL_INTERVAL;
146
147 searchpos = XINT (*begin);
148 }
149
150 if (NULL_INTERVAL_P (i))
151 return (force ? create_root_interval (object) : i);
152
153 return find_interval (i, searchpos);
154 }
155
156 /* Validate LIST as a property list. If LIST is not a list, then
157 make one consisting of (LIST nil). Otherwise, verify that LIST
158 is even numbered and thus suitable as a plist. */
159
160 static Lisp_Object
161 validate_plist (list)
162 Lisp_Object list;
163 {
164 if (NILP (list))
165 return Qnil;
166
167 if (CONSP (list))
168 {
169 register int i;
170 register Lisp_Object tail;
171 for (i = 0, tail = list; !NILP (tail); i++)
172 {
173 tail = Fcdr (tail);
174 QUIT;
175 }
176 if (i & 1)
177 error ("Odd length text property list");
178 return list;
179 }
180
181 return Fcons (list, Fcons (Qnil, Qnil));
182 }
183
184 /* Return nonzero if interval I has all the properties,
185 with the same values, of list PLIST. */
186
187 static int
188 interval_has_all_properties (plist, i)
189 Lisp_Object plist;
190 INTERVAL i;
191 {
192 register Lisp_Object tail1, tail2, sym1, sym2;
193 register int found;
194
195 /* Go through each element of PLIST. */
196 for (tail1 = plist; ! NILP (tail1); tail1 = Fcdr (Fcdr (tail1)))
197 {
198 sym1 = Fcar (tail1);
199 found = 0;
200
201 /* Go through I's plist, looking for sym1 */
202 for (tail2 = i->plist; ! NILP (tail2); tail2 = Fcdr (Fcdr (tail2)))
203 if (EQ (sym1, Fcar (tail2)))
204 {
205 /* Found the same property on both lists. If the
206 values are unequal, return zero. */
207 if (! EQ (Fcar (Fcdr (tail1)), Fcar (Fcdr (tail2))))
208 return 0;
209
210 /* Property has same value on both lists; go to next one. */
211 found = 1;
212 break;
213 }
214
215 if (! found)
216 return 0;
217 }
218
219 return 1;
220 }
221
222 /* Return nonzero if the plist of interval I has any of the
223 properties of PLIST, regardless of their values. */
224
225 static INLINE int
226 interval_has_some_properties (plist, i)
227 Lisp_Object plist;
228 INTERVAL i;
229 {
230 register Lisp_Object tail1, tail2, sym;
231
232 /* Go through each element of PLIST. */
233 for (tail1 = plist; ! NILP (tail1); tail1 = Fcdr (Fcdr (tail1)))
234 {
235 sym = Fcar (tail1);
236
237 /* Go through i's plist, looking for tail1 */
238 for (tail2 = i->plist; ! NILP (tail2); tail2 = Fcdr (Fcdr (tail2)))
239 if (EQ (sym, Fcar (tail2)))
240 return 1;
241 }
242
243 return 0;
244 }
245 \f
246 /* Changing the plists of individual intervals. */
247
248 /* Return the value of PROP in property-list PLIST, or Qunbound if it
249 has none. */
250 static int
251 property_value (plist, prop)
252 {
253 Lisp_Object value;
254
255 while (PLIST_ELT_P (plist, value))
256 if (EQ (XCONS (plist)->car, prop))
257 return XCONS (value)->car;
258 else
259 plist = XCONS (value)->cdr;
260
261 return Qunbound;
262 }
263
264 /* Set the properties of INTERVAL to PROPERTIES,
265 and record undo info for the previous values.
266 OBJECT is the string or buffer that INTERVAL belongs to. */
267
268 static void
269 set_properties (properties, interval, object)
270 Lisp_Object properties, object;
271 INTERVAL interval;
272 {
273 Lisp_Object sym, value;
274
275 if (BUFFERP (object))
276 {
277 /* For each property in the old plist which is missing from PROPERTIES,
278 or has a different value in PROPERTIES, make an undo record. */
279 for (sym = interval->plist;
280 PLIST_ELT_P (sym, value);
281 sym = XCONS (value)->cdr)
282 if (! EQ (property_value (properties, XCONS (sym)->car),
283 XCONS (value)->car))
284 {
285 modify_region (XBUFFER (object),
286 make_number (interval->position),
287 make_number (interval->position + LENGTH (interval)));
288 record_property_change (interval->position, LENGTH (interval),
289 XCONS (sym)->car, XCONS (value)->car,
290 object);
291 }
292
293 /* For each new property that has no value at all in the old plist,
294 make an undo record binding it to nil, so it will be removed. */
295 for (sym = properties;
296 PLIST_ELT_P (sym, value);
297 sym = XCONS (value)->cdr)
298 if (EQ (property_value (interval->plist, XCONS (sym)->car), Qunbound))
299 {
300 modify_region (XBUFFER (object),
301 make_number (interval->position),
302 make_number (interval->position + LENGTH (interval)));
303 record_property_change (interval->position, LENGTH (interval),
304 XCONS (sym)->car, Qnil,
305 object);
306 }
307 }
308
309 /* Store new properties. */
310 interval->plist = Fcopy_sequence (properties);
311 }
312
313 /* Add the properties of PLIST to the interval I, or set
314 the value of I's property to the value of the property on PLIST
315 if they are different.
316
317 OBJECT should be the string or buffer the interval is in.
318
319 Return nonzero if this changes I (i.e., if any members of PLIST
320 are actually added to I's plist) */
321
322 static int
323 add_properties (plist, i, object)
324 Lisp_Object plist;
325 INTERVAL i;
326 Lisp_Object object;
327 {
328 register Lisp_Object tail1, tail2, sym1, val1;
329 register int changed = 0;
330 register int found;
331
332 /* Go through each element of PLIST. */
333 for (tail1 = plist; ! NILP (tail1); tail1 = Fcdr (Fcdr (tail1)))
334 {
335 sym1 = Fcar (tail1);
336 val1 = Fcar (Fcdr (tail1));
337 found = 0;
338
339 /* Go through I's plist, looking for sym1 */
340 for (tail2 = i->plist; ! NILP (tail2); tail2 = Fcdr (Fcdr (tail2)))
341 if (EQ (sym1, Fcar (tail2)))
342 {
343 register Lisp_Object this_cdr = Fcdr (tail2);
344
345 /* Found the property. Now check its value. */
346 found = 1;
347
348 /* The properties have the same value on both lists.
349 Continue to the next property. */
350 if (EQ (val1, Fcar (this_cdr)))
351 break;
352
353 /* Record this change in the buffer, for undo purposes. */
354 if (XTYPE (object) == Lisp_Buffer)
355 {
356 modify_region (XBUFFER (object),
357 make_number (i->position),
358 make_number (i->position + LENGTH (i)));
359 record_property_change (i->position, LENGTH (i),
360 sym1, Fcar (this_cdr), object);
361 }
362
363 /* I's property has a different value -- change it */
364 Fsetcar (this_cdr, val1);
365 changed++;
366 break;
367 }
368
369 if (! found)
370 {
371 /* Record this change in the buffer, for undo purposes. */
372 if (XTYPE (object) == Lisp_Buffer)
373 {
374 modify_region (XBUFFER (object),
375 make_number (i->position),
376 make_number (i->position + LENGTH (i)));
377 record_property_change (i->position, LENGTH (i),
378 sym1, Qnil, object);
379 }
380 i->plist = Fcons (sym1, Fcons (val1, i->plist));
381 changed++;
382 }
383 }
384
385 return changed;
386 }
387
388 /* For any members of PLIST which are properties of I, remove them
389 from I's plist.
390 OBJECT is the string or buffer containing I. */
391
392 static int
393 remove_properties (plist, i, object)
394 Lisp_Object plist;
395 INTERVAL i;
396 Lisp_Object object;
397 {
398 register Lisp_Object tail1, tail2, sym;
399 register Lisp_Object current_plist = i->plist;
400 register int changed = 0;
401
402 /* Go through each element of plist. */
403 for (tail1 = plist; ! NILP (tail1); tail1 = Fcdr (Fcdr (tail1)))
404 {
405 sym = Fcar (tail1);
406
407 /* First, remove the symbol if its at the head of the list */
408 while (! NILP (current_plist) && EQ (sym, Fcar (current_plist)))
409 {
410 if (XTYPE (object) == Lisp_Buffer)
411 {
412 modify_region (XBUFFER (object),
413 make_number (i->position),
414 make_number (i->position + LENGTH (i)));
415 record_property_change (i->position, LENGTH (i),
416 sym, Fcar (Fcdr (current_plist)),
417 object);
418 }
419
420 current_plist = Fcdr (Fcdr (current_plist));
421 changed++;
422 }
423
424 /* Go through i's plist, looking for sym */
425 tail2 = current_plist;
426 while (! NILP (tail2))
427 {
428 register Lisp_Object this = Fcdr (Fcdr (tail2));
429 if (EQ (sym, Fcar (this)))
430 {
431 if (XTYPE (object) == Lisp_Buffer)
432 {
433 modify_region (XBUFFER (object),
434 make_number (i->position),
435 make_number (i->position + LENGTH (i)));
436 record_property_change (i->position, LENGTH (i),
437 sym, Fcar (Fcdr (this)), object);
438 }
439
440 Fsetcdr (Fcdr (tail2), Fcdr (Fcdr (this)));
441 changed++;
442 }
443 tail2 = this;
444 }
445 }
446
447 if (changed)
448 i->plist = current_plist;
449 return changed;
450 }
451
452 #if 0
453 /* Remove all properties from interval I. Return non-zero
454 if this changes the interval. */
455
456 static INLINE int
457 erase_properties (i)
458 INTERVAL i;
459 {
460 if (NILP (i->plist))
461 return 0;
462
463 i->plist = Qnil;
464 return 1;
465 }
466 #endif
467 \f
468 DEFUN ("text-properties-at", Ftext_properties_at,
469 Stext_properties_at, 1, 2, 0,
470 "Return the list of properties held by the character at POSITION\n\
471 in optional argument OBJECT, a string or buffer. If nil, OBJECT\n\
472 defaults to the current buffer.\n\
473 If POSITION is at the end of OBJECT, the value is nil.")
474 (pos, object)
475 Lisp_Object pos, object;
476 {
477 register INTERVAL i;
478
479 if (NILP (object))
480 XSET (object, Lisp_Buffer, current_buffer);
481
482 i = validate_interval_range (object, &pos, &pos, soft);
483 if (NULL_INTERVAL_P (i))
484 return Qnil;
485 /* If POS is at the end of the interval,
486 it means it's the end of OBJECT.
487 There are no properties at the very end,
488 since no character follows. */
489 if (XINT (pos) == LENGTH (i) + i->position)
490 return Qnil;
491
492 return i->plist;
493 }
494
495 DEFUN ("get-text-property", Fget_text_property, Sget_text_property, 2, 3, 0,
496 "Return the value of position POS's property PROP, in OBJECT.\n\
497 OBJECT is optional and defaults to the current buffer.\n\
498 If POSITION is at the end of OBJECT, the value is nil.")
499 (pos, prop, object)
500 Lisp_Object pos, object;
501 register Lisp_Object prop;
502 {
503 register INTERVAL i;
504 register Lisp_Object tail;
505
506 if (NILP (object))
507 XSET (object, Lisp_Buffer, current_buffer);
508 i = validate_interval_range (object, &pos, &pos, soft);
509 if (NULL_INTERVAL_P (i))
510 return Qnil;
511
512 /* If POS is at the end of the interval,
513 it means it's the end of OBJECT.
514 There are no properties at the very end,
515 since no character follows. */
516 if (XINT (pos) == LENGTH (i) + i->position)
517 return Qnil;
518
519 return textget (i->plist, prop);
520 }
521
522 DEFUN ("next-property-change", Fnext_property_change,
523 Snext_property_change, 1, 3, 0,
524 "Return the position of next property change.\n\
525 Scans characters forward from POS in OBJECT till it finds\n\
526 a change in some text property, then returns the position of the change.\n\
527 The optional second argument OBJECT is the string or buffer to scan.\n\
528 Return nil if the property is constant all the way to the end of OBJECT.\n\
529 If the value is non-nil, it is a position greater than POS, never equal.\n\n\
530 If the optional third argument LIMIT is non-nil, don't search\n\
531 past position LIMIT; return LIMIT if nothing is found before LIMIT.")
532 (pos, object, limit)
533 Lisp_Object pos, object, limit;
534 {
535 register INTERVAL i, next;
536
537 if (NILP (object))
538 XSET (object, Lisp_Buffer, current_buffer);
539
540 i = validate_interval_range (object, &pos, &pos, soft);
541 if (NULL_INTERVAL_P (i))
542 return limit;
543
544 next = next_interval (i);
545 while (! NULL_INTERVAL_P (next) && intervals_equal (i, next)
546 && (NILP (limit) || next->position < XFASTINT (limit)))
547 next = next_interval (next);
548
549 if (NULL_INTERVAL_P (next))
550 return limit;
551 if (! NILP (limit) && !(next->position < XFASTINT (limit)))
552 return limit;
553
554 return next->position - (XTYPE (object) == Lisp_String);
555 }
556
557 /* Return 1 if there's a change in some property between BEG and END. */
558
559 int
560 property_change_between_p (beg, end)
561 int beg, end;
562 {
563 register INTERVAL i, next;
564 Lisp_Object object, pos;
565
566 XSET (object, Lisp_Buffer, current_buffer);
567 XFASTINT (pos) = beg;
568
569 i = validate_interval_range (object, &pos, &pos, soft);
570 if (NULL_INTERVAL_P (i))
571 return 0;
572
573 next = next_interval (i);
574 while (! NULL_INTERVAL_P (next) && intervals_equal (i, next))
575 {
576 next = next_interval (next);
577 if (NULL_INTERVAL_P (next))
578 return 0;
579 if (next->position >= end)
580 return 0;
581 }
582
583 if (NULL_INTERVAL_P (next))
584 return 0;
585
586 return 1;
587 }
588
589 DEFUN ("next-single-property-change", Fnext_single_property_change,
590 Snext_single_property_change, 2, 4, 0,
591 "Return the position of next property change for a specific property.\n\
592 Scans characters forward from POS till it finds\n\
593 a change in the PROP property, then returns the position of the change.\n\
594 The optional third argument OBJECT is the string or buffer to scan.\n\
595 The property values are compared with `eq'.\n\
596 Return nil if the property is constant all the way to the end of OBJECT.\n\
597 If the value is non-nil, it is a position greater than POS, never equal.\n\n\
598 If the optional fourth argument LIMIT is non-nil, don't search\n\
599 past position LIMIT; return LIMIT if nothing is found before LIMIT.")
600 (pos, prop, object, limit)
601 Lisp_Object pos, prop, object, limit;
602 {
603 register INTERVAL i, next;
604 register Lisp_Object here_val;
605
606 if (NILP (object))
607 XSET (object, Lisp_Buffer, current_buffer);
608
609 i = validate_interval_range (object, &pos, &pos, soft);
610 if (NULL_INTERVAL_P (i))
611 return limit;
612
613 here_val = textget (i->plist, prop);
614 next = next_interval (i);
615 while (! NULL_INTERVAL_P (next)
616 && EQ (here_val, textget (next->plist, prop))
617 && (NILP (limit) || next->position < XFASTINT (limit)))
618 next = next_interval (next);
619
620 if (NULL_INTERVAL_P (next))
621 return limit;
622 if (! NILP (limit) && !(next->position < XFASTINT (limit)))
623 return limit;
624
625 return next->position - (XTYPE (object) == Lisp_String);
626 }
627
628 DEFUN ("previous-property-change", Fprevious_property_change,
629 Sprevious_property_change, 1, 3, 0,
630 "Return the position of previous property change.\n\
631 Scans characters backwards from POS in OBJECT till it finds\n\
632 a change in some text property, then returns the position of the change.\n\
633 The optional second argument OBJECT is the string or buffer to scan.\n\
634 Return nil if the property is constant all the way to the start of OBJECT.\n\
635 If the value is non-nil, it is a position less than POS, never equal.\n\n\
636 If the optional third argument LIMIT is non-nil, don't search\n\
637 back past position LIMIT; return LIMIT if nothing is found until LIMIT.")
638 (pos, object, limit)
639 Lisp_Object pos, object, limit;
640 {
641 register INTERVAL i, previous;
642
643 if (NILP (object))
644 XSET (object, Lisp_Buffer, current_buffer);
645
646 i = validate_interval_range (object, &pos, &pos, soft);
647 if (NULL_INTERVAL_P (i))
648 return limit;
649
650 /* Start with the interval containing the char before point. */
651 if (i->position == XFASTINT (pos))
652 i = previous_interval (i);
653
654 previous = previous_interval (i);
655 while (! NULL_INTERVAL_P (previous) && intervals_equal (previous, i)
656 && (NILP (limit)
657 || previous->position + LENGTH (previous) > XFASTINT (limit)))
658 previous = previous_interval (previous);
659 if (NULL_INTERVAL_P (previous))
660 return limit;
661 if (!NILP (limit)
662 && !(previous->position + LENGTH (previous) > XFASTINT (limit)))
663 return limit;
664
665 return (previous->position + LENGTH (previous)
666 - (XTYPE (object) == Lisp_String));
667 }
668
669 DEFUN ("previous-single-property-change", Fprevious_single_property_change,
670 Sprevious_single_property_change, 2, 4, 0,
671 "Return the position of previous property change for a specific property.\n\
672 Scans characters backward from POS till it finds\n\
673 a change in the PROP property, then returns the position of the change.\n\
674 The optional third argument OBJECT is the string or buffer to scan.\n\
675 The property values are compared with `eq'.\n\
676 Return nil if the property is constant all the way to the start of OBJECT.\n\
677 If the value is non-nil, it is a position less than POS, never equal.\n\n\
678 If the optional fourth argument LIMIT is non-nil, don't search\n\
679 back past position LIMIT; return LIMIT if nothing is found until LIMIT.")
680 (pos, prop, object, limit)
681 Lisp_Object pos, prop, object, limit;
682 {
683 register INTERVAL i, previous;
684 register Lisp_Object here_val;
685
686 if (NILP (object))
687 XSET (object, Lisp_Buffer, current_buffer);
688
689 i = validate_interval_range (object, &pos, &pos, soft);
690 if (NULL_INTERVAL_P (i))
691 return limit;
692
693 /* Start with the interval containing the char before point. */
694 if (i->position == XFASTINT (pos))
695 i = previous_interval (i);
696
697 here_val = textget (i->plist, prop);
698 previous = previous_interval (i);
699 while (! NULL_INTERVAL_P (previous)
700 && EQ (here_val, textget (previous->plist, prop))
701 && (NILP (limit)
702 || previous->position + LENGTH (previous) > XFASTINT (limit)))
703 previous = previous_interval (previous);
704 if (NULL_INTERVAL_P (previous))
705 return limit;
706 if (!NILP (limit)
707 && !(previous->position + LENGTH (previous) > XFASTINT (limit)))
708 return limit;
709
710 return (previous->position + LENGTH (previous)
711 - (XTYPE (object) == Lisp_String));
712 }
713
714 DEFUN ("add-text-properties", Fadd_text_properties,
715 Sadd_text_properties, 3, 4, 0,
716 "Add properties to the text from START to END.\n\
717 The third argument PROPS is a property list\n\
718 specifying the property values to add.\n\
719 The optional fourth argument, OBJECT,\n\
720 is the string or buffer containing the text.\n\
721 Return t if any property value actually changed, nil otherwise.")
722 (start, end, properties, object)
723 Lisp_Object start, end, properties, object;
724 {
725 register INTERVAL i, unchanged;
726 register int s, len, modified = 0;
727
728 properties = validate_plist (properties);
729 if (NILP (properties))
730 return Qnil;
731
732 if (NILP (object))
733 XSET (object, Lisp_Buffer, current_buffer);
734
735 i = validate_interval_range (object, &start, &end, hard);
736 if (NULL_INTERVAL_P (i))
737 return Qnil;
738
739 s = XINT (start);
740 len = XINT (end) - s;
741
742 /* If we're not starting on an interval boundary, we have to
743 split this interval. */
744 if (i->position != s)
745 {
746 /* If this interval already has the properties, we can
747 skip it. */
748 if (interval_has_all_properties (properties, i))
749 {
750 int got = (LENGTH (i) - (s - i->position));
751 if (got >= len)
752 return Qnil;
753 len -= got;
754 i = next_interval (i);
755 }
756 else
757 {
758 unchanged = i;
759 i = split_interval_right (unchanged, s - unchanged->position);
760 copy_properties (unchanged, i);
761 }
762 }
763
764 /* We are at the beginning of interval I, with LEN chars to scan. */
765 for (;;)
766 {
767 if (i == 0)
768 abort ();
769
770 if (LENGTH (i) >= len)
771 {
772 if (interval_has_all_properties (properties, i))
773 return modified ? Qt : Qnil;
774
775 if (LENGTH (i) == len)
776 {
777 add_properties (properties, i, object);
778 return Qt;
779 }
780
781 /* i doesn't have the properties, and goes past the change limit */
782 unchanged = i;
783 i = split_interval_left (unchanged, len);
784 copy_properties (unchanged, i);
785 add_properties (properties, i, object);
786 return Qt;
787 }
788
789 len -= LENGTH (i);
790 modified += add_properties (properties, i, object);
791 i = next_interval (i);
792 }
793 }
794
795 DEFUN ("put-text-property", Fput_text_property,
796 Sput_text_property, 4, 5, 0,
797 "Set one property of the text from START to END.\n\
798 The third and fourth arguments PROP and VALUE\n\
799 specify the property to add.\n\
800 The optional fifth argument, OBJECT,\n\
801 is the string or buffer containing the text.")
802 (start, end, prop, value, object)
803 Lisp_Object start, end, prop, value, object;
804 {
805 Fadd_text_properties (start, end,
806 Fcons (prop, Fcons (value, Qnil)),
807 object);
808 return Qnil;
809 }
810
811 DEFUN ("set-text-properties", Fset_text_properties,
812 Sset_text_properties, 3, 4, 0,
813 "Completely replace properties of text from START to END.\n\
814 The third argument PROPS is the new property list.\n\
815 The optional fourth argument, OBJECT,\n\
816 is the string or buffer containing the text.")
817 (start, end, props, object)
818 Lisp_Object start, end, props, object;
819 {
820 register INTERVAL i, unchanged;
821 register INTERVAL prev_changed = NULL_INTERVAL;
822 register int s, len;
823
824 props = validate_plist (props);
825
826 if (NILP (object))
827 XSET (object, Lisp_Buffer, current_buffer);
828
829 i = validate_interval_range (object, &start, &end, hard);
830 if (NULL_INTERVAL_P (i))
831 return Qnil;
832
833 s = XINT (start);
834 len = XINT (end) - s;
835
836 if (i->position != s)
837 {
838 unchanged = i;
839 i = split_interval_right (unchanged, s - unchanged->position);
840
841 if (LENGTH (i) > len)
842 {
843 copy_properties (unchanged, i);
844 i = split_interval_left (i, len);
845 set_properties (props, i, object);
846 return Qt;
847 }
848
849 set_properties (props, i, object);
850
851 if (LENGTH (i) == len)
852 return Qt;
853
854 prev_changed = i;
855 len -= LENGTH (i);
856 i = next_interval (i);
857 }
858
859 /* We are starting at the beginning of an interval, I */
860 while (len > 0)
861 {
862 if (i == 0)
863 abort ();
864
865 if (LENGTH (i) >= len)
866 {
867 if (LENGTH (i) > len)
868 i = split_interval_left (i, len);
869
870 if (NULL_INTERVAL_P (prev_changed))
871 set_properties (props, i, object);
872 else
873 merge_interval_left (i);
874 return Qt;
875 }
876
877 len -= LENGTH (i);
878 if (NULL_INTERVAL_P (prev_changed))
879 {
880 set_properties (props, i, object);
881 prev_changed = i;
882 }
883 else
884 prev_changed = i = merge_interval_left (i);
885
886 i = next_interval (i);
887 }
888
889 return Qt;
890 }
891
892 DEFUN ("remove-text-properties", Fremove_text_properties,
893 Sremove_text_properties, 3, 4, 0,
894 "Remove some properties from text from START to END.\n\
895 The third argument PROPS is a property list\n\
896 whose property names specify the properties to remove.\n\
897 \(The values stored in PROPS are ignored.)\n\
898 The optional fourth argument, OBJECT,\n\
899 is the string or buffer containing the text.\n\
900 Return t if any property was actually removed, nil otherwise.")
901 (start, end, props, object)
902 Lisp_Object start, end, props, object;
903 {
904 register INTERVAL i, unchanged;
905 register int s, len, modified = 0;
906
907 if (NILP (object))
908 XSET (object, Lisp_Buffer, current_buffer);
909
910 i = validate_interval_range (object, &start, &end, soft);
911 if (NULL_INTERVAL_P (i))
912 return Qnil;
913
914 s = XINT (start);
915 len = XINT (end) - s;
916
917 if (i->position != s)
918 {
919 /* No properties on this first interval -- return if
920 it covers the entire region. */
921 if (! interval_has_some_properties (props, i))
922 {
923 int got = (LENGTH (i) - (s - i->position));
924 if (got >= len)
925 return Qnil;
926 len -= got;
927 i = next_interval (i);
928 }
929 /* Split away the beginning of this interval; what we don't
930 want to modify. */
931 else
932 {
933 unchanged = i;
934 i = split_interval_right (unchanged, s - unchanged->position);
935 copy_properties (unchanged, i);
936 }
937 }
938
939 /* We are at the beginning of an interval, with len to scan */
940 for (;;)
941 {
942 if (i == 0)
943 abort ();
944
945 if (LENGTH (i) >= len)
946 {
947 if (! interval_has_some_properties (props, i))
948 return modified ? Qt : Qnil;
949
950 if (LENGTH (i) == len)
951 {
952 remove_properties (props, i, object);
953 return Qt;
954 }
955
956 /* i has the properties, and goes past the change limit */
957 unchanged = i;
958 i = split_interval_left (i, len);
959 copy_properties (unchanged, i);
960 remove_properties (props, i, object);
961 return Qt;
962 }
963
964 len -= LENGTH (i);
965 modified += remove_properties (props, i, object);
966 i = next_interval (i);
967 }
968 }
969
970 DEFUN ("text-property-any", Ftext_property_any,
971 Stext_property_any, 4, 5, 0,
972 "Check text from START to END to see if PROP is ever `eq' to VALUE.\n\
973 If so, return the position of the first character whose PROP is `eq'\n\
974 to VALUE. Otherwise return nil.\n\
975 The optional fifth argument, OBJECT, is the string or buffer\n\
976 containing the text.")
977 (start, end, prop, value, object)
978 Lisp_Object start, end, prop, value, object;
979 {
980 register INTERVAL i;
981 register int e, pos;
982
983 if (NILP (object))
984 XSET (object, Lisp_Buffer, current_buffer);
985 i = validate_interval_range (object, &start, &end, soft);
986 e = XINT (end);
987
988 while (! NULL_INTERVAL_P (i))
989 {
990 if (i->position >= e)
991 break;
992 if (EQ (textget (i->plist, prop), value))
993 {
994 pos = i->position;
995 if (pos < XINT (start))
996 pos = XINT (start);
997 return make_number (pos - (XTYPE (object) == Lisp_String));
998 }
999 i = next_interval (i);
1000 }
1001 return Qnil;
1002 }
1003
1004 DEFUN ("text-property-not-all", Ftext_property_not_all,
1005 Stext_property_not_all, 4, 5, 0,
1006 "Check text from START to END to see if PROP is ever not `eq' to VALUE.\n\
1007 If so, return the position of the first character whose PROP is not\n\
1008 `eq' to VALUE. Otherwise, return nil.\n\
1009 The optional fifth argument, OBJECT, is the string or buffer\n\
1010 containing the text.")
1011 (start, end, prop, value, object)
1012 Lisp_Object start, end, prop, value, object;
1013 {
1014 register INTERVAL i;
1015 register int s, e;
1016
1017 if (NILP (object))
1018 XSET (object, Lisp_Buffer, current_buffer);
1019 i = validate_interval_range (object, &start, &end, soft);
1020 if (NULL_INTERVAL_P (i))
1021 return (NILP (value) || EQ (start, end)) ? Qnil : start;
1022 s = XINT (start);
1023 e = XINT (end);
1024
1025 while (! NULL_INTERVAL_P (i))
1026 {
1027 if (i->position >= e)
1028 break;
1029 if (! EQ (textget (i->plist, prop), value))
1030 {
1031 if (i->position > s)
1032 s = i->position;
1033 return make_number (s - (XTYPE (object) == Lisp_String));
1034 }
1035 i = next_interval (i);
1036 }
1037 return Qnil;
1038 }
1039
1040 #if 0 /* You can use set-text-properties for this. */
1041
1042 DEFUN ("erase-text-properties", Ferase_text_properties,
1043 Serase_text_properties, 2, 3, 0,
1044 "Remove all properties from the text from START to END.\n\
1045 The optional third argument, OBJECT,\n\
1046 is the string or buffer containing the text.")
1047 (start, end, object)
1048 Lisp_Object start, end, object;
1049 {
1050 register INTERVAL i;
1051 register INTERVAL prev_changed = NULL_INTERVAL;
1052 register int s, len, modified;
1053
1054 if (NILP (object))
1055 XSET (object, Lisp_Buffer, current_buffer);
1056
1057 i = validate_interval_range (object, &start, &end, soft);
1058 if (NULL_INTERVAL_P (i))
1059 return Qnil;
1060
1061 s = XINT (start);
1062 len = XINT (end) - s;
1063
1064 if (i->position != s)
1065 {
1066 register int got;
1067 register INTERVAL unchanged = i;
1068
1069 /* If there are properties here, then this text will be modified. */
1070 if (! NILP (i->plist))
1071 {
1072 i = split_interval_right (unchanged, s - unchanged->position);
1073 i->plist = Qnil;
1074 modified++;
1075
1076 if (LENGTH (i) > len)
1077 {
1078 i = split_interval_right (i, len);
1079 copy_properties (unchanged, i);
1080 return Qt;
1081 }
1082
1083 if (LENGTH (i) == len)
1084 return Qt;
1085
1086 got = LENGTH (i);
1087 }
1088 /* If the text of I is without any properties, and contains
1089 LEN or more characters, then we may return without changing
1090 anything.*/
1091 else if (LENGTH (i) - (s - i->position) <= len)
1092 return Qnil;
1093 /* The amount of text to change extends past I, so just note
1094 how much we've gotten. */
1095 else
1096 got = LENGTH (i) - (s - i->position);
1097
1098 len -= got;
1099 prev_changed = i;
1100 i = next_interval (i);
1101 }
1102
1103 /* We are starting at the beginning of an interval, I. */
1104 while (len > 0)
1105 {
1106 if (LENGTH (i) >= len)
1107 {
1108 /* If I has no properties, simply merge it if possible. */
1109 if (NILP (i->plist))
1110 {
1111 if (! NULL_INTERVAL_P (prev_changed))
1112 merge_interval_left (i);
1113
1114 return modified ? Qt : Qnil;
1115 }
1116
1117 if (LENGTH (i) > len)
1118 i = split_interval_left (i, len);
1119 if (! NULL_INTERVAL_P (prev_changed))
1120 merge_interval_left (i);
1121 else
1122 i->plist = Qnil;
1123
1124 return Qt;
1125 }
1126
1127 /* Here if we still need to erase past the end of I */
1128 len -= LENGTH (i);
1129 if (NULL_INTERVAL_P (prev_changed))
1130 {
1131 modified += erase_properties (i);
1132 prev_changed = i;
1133 }
1134 else
1135 {
1136 modified += ! NILP (i->plist);
1137 /* Merging I will give it the properties of PREV_CHANGED. */
1138 prev_changed = i = merge_interval_left (i);
1139 }
1140
1141 i = next_interval (i);
1142 }
1143
1144 return modified ? Qt : Qnil;
1145 }
1146 #endif /* 0 */
1147
1148 /* I don't think this is the right interface to export; how often do you
1149 want to do something like this, other than when you're copying objects
1150 around?
1151
1152 I think it would be better to have a pair of functions, one which
1153 returns the text properties of a region as a list of ranges and
1154 plists, and another which applies such a list to another object. */
1155
1156 /* DEFUN ("copy-text-properties", Fcopy_text_properties,
1157 Scopy_text_properties, 5, 6, 0,
1158 "Add properties from SRC-START to SRC-END of SRC at DEST-POS of DEST.\n\
1159 SRC and DEST may each refer to strings or buffers.\n\
1160 Optional sixth argument PROP causes only that property to be copied.\n\
1161 Properties are copied to DEST as if by `add-text-properties'.\n\
1162 Return t if any property value actually changed, nil otherwise.") */
1163
1164 Lisp_Object
1165 copy_text_properties (start, end, src, pos, dest, prop)
1166 Lisp_Object start, end, src, pos, dest, prop;
1167 {
1168 INTERVAL i;
1169 Lisp_Object res;
1170 Lisp_Object stuff;
1171 Lisp_Object plist;
1172 int s, e, e2, p, len, modified = 0;
1173
1174 i = validate_interval_range (src, &start, &end, soft);
1175 if (NULL_INTERVAL_P (i))
1176 return Qnil;
1177
1178 CHECK_NUMBER_COERCE_MARKER (pos, 0);
1179 {
1180 Lisp_Object dest_start, dest_end;
1181
1182 dest_start = pos;
1183 XFASTINT (dest_end) = XINT (dest_start) + (XINT (end) - XINT (start));
1184 /* Apply this to a copy of pos; it will try to increment its arguments,
1185 which we don't want. */
1186 validate_interval_range (dest, &dest_start, &dest_end, soft);
1187 }
1188
1189 s = XINT (start);
1190 e = XINT (end);
1191 p = XINT (pos);
1192
1193 stuff = Qnil;
1194
1195 while (s < e)
1196 {
1197 e2 = i->position + LENGTH (i);
1198 if (e2 > e)
1199 e2 = e;
1200 len = e2 - s;
1201
1202 plist = i->plist;
1203 if (! NILP (prop))
1204 while (! NILP (plist))
1205 {
1206 if (EQ (Fcar (plist), prop))
1207 {
1208 plist = Fcons (prop, Fcons (Fcar (Fcdr (plist)), Qnil));
1209 break;
1210 }
1211 plist = Fcdr (Fcdr (plist));
1212 }
1213 if (! NILP (plist))
1214 {
1215 /* Must defer modifications to the interval tree in case src
1216 and dest refer to the same string or buffer. */
1217 stuff = Fcons (Fcons (make_number (p),
1218 Fcons (make_number (p + len),
1219 Fcons (plist, Qnil))),
1220 stuff);
1221 }
1222
1223 i = next_interval (i);
1224 if (NULL_INTERVAL_P (i))
1225 break;
1226
1227 p += len;
1228 s = i->position;
1229 }
1230
1231 while (! NILP (stuff))
1232 {
1233 res = Fcar (stuff);
1234 res = Fadd_text_properties (Fcar (res), Fcar (Fcdr (res)),
1235 Fcar (Fcdr (Fcdr (res))), dest);
1236 if (! NILP (res))
1237 modified++;
1238 stuff = Fcdr (stuff);
1239 }
1240
1241 return modified ? Qt : Qnil;
1242 }
1243
1244 void
1245 syms_of_textprop ()
1246 {
1247 DEFVAR_INT ("interval-balance-threshold", &interval_balance_threshold,
1248 "Threshold for rebalancing interval trees, expressed as the\n\
1249 percentage by which the left interval tree should not differ from the right.");
1250 interval_balance_threshold = 8;
1251
1252 DEFVAR_LISP ("inhibit-point-motion-hooks", &Vinhibit_point_motion_hooks,
1253 "If non-nil, don't call the text property values of\n\
1254 `point-left' and `point-entered'.");
1255 Vinhibit_point_motion_hooks = Qnil;
1256
1257 /* Common attributes one might give text */
1258
1259 staticpro (&Qforeground);
1260 Qforeground = intern ("foreground");
1261 staticpro (&Qbackground);
1262 Qbackground = intern ("background");
1263 staticpro (&Qfont);
1264 Qfont = intern ("font");
1265 staticpro (&Qstipple);
1266 Qstipple = intern ("stipple");
1267 staticpro (&Qunderline);
1268 Qunderline = intern ("underline");
1269 staticpro (&Qread_only);
1270 Qread_only = intern ("read-only");
1271 staticpro (&Qinvisible);
1272 Qinvisible = intern ("invisible");
1273 staticpro (&Qhidden);
1274 Qhidden = intern ("hidden");
1275 staticpro (&Qcategory);
1276 Qcategory = intern ("category");
1277 staticpro (&Qlocal_map);
1278 Qlocal_map = intern ("local-map");
1279 staticpro (&Qfront_sticky);
1280 Qfront_sticky = intern ("front-sticky");
1281 staticpro (&Qrear_nonsticky);
1282 Qrear_nonsticky = intern ("rear-nonsticky");
1283
1284 /* Properties that text might use to specify certain actions */
1285
1286 staticpro (&Qmouse_left);
1287 Qmouse_left = intern ("mouse-left");
1288 staticpro (&Qmouse_entered);
1289 Qmouse_entered = intern ("mouse-entered");
1290 staticpro (&Qpoint_left);
1291 Qpoint_left = intern ("point-left");
1292 staticpro (&Qpoint_entered);
1293 Qpoint_entered = intern ("point-entered");
1294
1295 defsubr (&Stext_properties_at);
1296 defsubr (&Sget_text_property);
1297 defsubr (&Snext_property_change);
1298 defsubr (&Snext_single_property_change);
1299 defsubr (&Sprevious_property_change);
1300 defsubr (&Sprevious_single_property_change);
1301 defsubr (&Sadd_text_properties);
1302 defsubr (&Sput_text_property);
1303 defsubr (&Sset_text_properties);
1304 defsubr (&Sremove_text_properties);
1305 defsubr (&Stext_property_any);
1306 defsubr (&Stext_property_not_all);
1307 /* defsubr (&Serase_text_properties); */
1308 /* defsubr (&Scopy_text_properties); */
1309 }
1310
1311 #else
1312
1313 lose -- this shouldn't be compiled if USE_TEXT_PROPERTIES isn't defined
1314
1315 #endif /* USE_TEXT_PROPERTIES */