Fix typos in ChangeLogs.
[emacs.git] / src / textprop.c
bloba224c121e211f693c654c43992ecd021c097f6b6
1 /* Interface code for dealing with text properties.
2 Copyright (C) 1993-1995, 1997, 1999-2011 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
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 3 of the License, or
9 (at your option) any later version.
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.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
19 #include <config.h>
20 #include <setjmp.h>
21 #include "lisp.h"
22 #include "intervals.h"
23 #include "buffer.h"
24 #include "window.h"
26 #ifndef NULL
27 #define NULL (void *)0
28 #endif
30 /* Test for membership, allowing for t (actually any non-cons) to mean the
31 universal set. */
33 #define TMEM(sym, set) (CONSP (set) ? ! NILP (Fmemq (sym, set)) : ! NILP (set))
36 /* NOTES: previous- and next- property change will have to skip
37 zero-length intervals if they are implemented. This could be done
38 inside next_interval and previous_interval.
40 set_properties needs to deal with the interval property cache.
42 It is assumed that for any interval plist, a property appears
43 only once on the list. Although some code i.e., remove_properties,
44 handles the more general case, the uniqueness of properties is
45 necessary for the system to remain consistent. This requirement
46 is enforced by the subrs installing properties onto the intervals. */
49 /* Types of hooks. */
50 static Lisp_Object Qmouse_left;
51 static Lisp_Object Qmouse_entered;
52 Lisp_Object Qpoint_left;
53 Lisp_Object Qpoint_entered;
54 Lisp_Object Qcategory;
55 Lisp_Object Qlocal_map;
57 /* Visual properties text (including strings) may have. */
58 static Lisp_Object Qforeground, Qbackground, Qunderline;
59 Lisp_Object Qfont;
60 static Lisp_Object Qstipple;
61 Lisp_Object Qinvisible, Qintangible, Qmouse_face;
62 static Lisp_Object Qread_only;
63 Lisp_Object Qminibuffer_prompt;
65 /* Sticky properties */
66 Lisp_Object Qfront_sticky, Qrear_nonsticky;
68 /* If o1 is a cons whose cdr is a cons, return non-zero and set o2 to
69 the o1's cdr. Otherwise, return zero. This is handy for
70 traversing plists. */
71 #define PLIST_ELT_P(o1, o2) (CONSP (o1) && ((o2)=XCDR (o1), CONSP (o2)))
73 /* verify_interval_modification saves insertion hooks here
74 to be run later by report_interval_modification. */
75 static Lisp_Object interval_insert_behind_hooks;
76 static Lisp_Object interval_insert_in_front_hooks;
78 static void text_read_only (Lisp_Object) NO_RETURN;
79 static Lisp_Object Fprevious_property_change (Lisp_Object, Lisp_Object,
80 Lisp_Object);
83 /* Signal a `text-read-only' error. This function makes it easier
84 to capture that error in GDB by putting a breakpoint on it. */
86 static void
87 text_read_only (Lisp_Object propval)
89 if (STRINGP (propval))
90 xsignal1 (Qtext_read_only, propval);
92 xsignal0 (Qtext_read_only);
97 /* Extract the interval at the position pointed to by BEGIN from
98 OBJECT, a string or buffer. Additionally, check that the positions
99 pointed to by BEGIN and END are within the bounds of OBJECT, and
100 reverse them if *BEGIN is greater than *END. The objects pointed
101 to by BEGIN and END may be integers or markers; if the latter, they
102 are coerced to integers.
104 When OBJECT is a string, we increment *BEGIN and *END
105 to make them origin-one.
107 Note that buffer points don't correspond to interval indices.
108 For example, point-max is 1 greater than the index of the last
109 character. This difference is handled in the caller, which uses
110 the validated points to determine a length, and operates on that.
111 Exceptions are Ftext_properties_at, Fnext_property_change, and
112 Fprevious_property_change which call this function with BEGIN == END.
113 Handle this case specially.
115 If FORCE is soft (0), it's OK to return NULL_INTERVAL. Otherwise,
116 create an interval tree for OBJECT if one doesn't exist, provided
117 the object actually contains text. In the current design, if there
118 is no text, there can be no text properties. */
120 #define soft 0
121 #define hard 1
123 INTERVAL
124 validate_interval_range (Lisp_Object object, Lisp_Object *begin, Lisp_Object *end, int force)
126 register INTERVAL i;
127 EMACS_INT searchpos;
129 CHECK_STRING_OR_BUFFER (object);
130 CHECK_NUMBER_COERCE_MARKER (*begin);
131 CHECK_NUMBER_COERCE_MARKER (*end);
133 /* If we are asked for a point, but from a subr which operates
134 on a range, then return nothing. */
135 if (EQ (*begin, *end) && begin != end)
136 return NULL_INTERVAL;
138 if (XINT (*begin) > XINT (*end))
140 Lisp_Object n;
141 n = *begin;
142 *begin = *end;
143 *end = n;
146 if (BUFFERP (object))
148 register struct buffer *b = XBUFFER (object);
150 if (!(BUF_BEGV (b) <= XINT (*begin) && XINT (*begin) <= XINT (*end)
151 && XINT (*end) <= BUF_ZV (b)))
152 args_out_of_range (*begin, *end);
153 i = BUF_INTERVALS (b);
155 /* If there's no text, there are no properties. */
156 if (BUF_BEGV (b) == BUF_ZV (b))
157 return NULL_INTERVAL;
159 searchpos = XINT (*begin);
161 else
163 EMACS_INT len = SCHARS (object);
165 if (! (0 <= XINT (*begin) && XINT (*begin) <= XINT (*end)
166 && XINT (*end) <= len))
167 args_out_of_range (*begin, *end);
168 XSETFASTINT (*begin, XFASTINT (*begin));
169 if (begin != end)
170 XSETFASTINT (*end, XFASTINT (*end));
171 i = STRING_INTERVALS (object);
173 if (len == 0)
174 return NULL_INTERVAL;
176 searchpos = XINT (*begin);
179 if (NULL_INTERVAL_P (i))
180 return (force ? create_root_interval (object) : i);
182 return find_interval (i, searchpos);
185 /* Validate LIST as a property list. If LIST is not a list, then
186 make one consisting of (LIST nil). Otherwise, verify that LIST
187 is even numbered and thus suitable as a plist. */
189 static Lisp_Object
190 validate_plist (Lisp_Object list)
192 if (NILP (list))
193 return Qnil;
195 if (CONSP (list))
197 register int i;
198 register Lisp_Object tail;
199 for (i = 0, tail = list; CONSP (tail); i++)
201 tail = XCDR (tail);
202 QUIT;
204 if (i & 1)
205 error ("Odd length text property list");
206 return list;
209 return Fcons (list, Fcons (Qnil, Qnil));
212 /* Return nonzero if interval I has all the properties,
213 with the same values, of list PLIST. */
215 static int
216 interval_has_all_properties (Lisp_Object plist, INTERVAL i)
218 register Lisp_Object tail1, tail2, sym1;
219 register int found;
221 /* Go through each element of PLIST. */
222 for (tail1 = plist; CONSP (tail1); tail1 = Fcdr (XCDR (tail1)))
224 sym1 = XCAR (tail1);
225 found = 0;
227 /* Go through I's plist, looking for sym1 */
228 for (tail2 = i->plist; CONSP (tail2); tail2 = Fcdr (XCDR (tail2)))
229 if (EQ (sym1, XCAR (tail2)))
231 /* Found the same property on both lists. If the
232 values are unequal, return zero. */
233 if (! EQ (Fcar (XCDR (tail1)), Fcar (XCDR (tail2))))
234 return 0;
236 /* Property has same value on both lists; go to next one. */
237 found = 1;
238 break;
241 if (! found)
242 return 0;
245 return 1;
248 /* Return nonzero if the plist of interval I has any of the
249 properties of PLIST, regardless of their values. */
251 static INLINE int
252 interval_has_some_properties (Lisp_Object plist, INTERVAL i)
254 register Lisp_Object tail1, tail2, sym;
256 /* Go through each element of PLIST. */
257 for (tail1 = plist; CONSP (tail1); tail1 = Fcdr (XCDR (tail1)))
259 sym = XCAR (tail1);
261 /* Go through i's plist, looking for tail1 */
262 for (tail2 = i->plist; CONSP (tail2); tail2 = Fcdr (XCDR (tail2)))
263 if (EQ (sym, XCAR (tail2)))
264 return 1;
267 return 0;
270 /* Return nonzero if the plist of interval I has any of the
271 property names in LIST, regardless of their values. */
273 static INLINE int
274 interval_has_some_properties_list (Lisp_Object list, INTERVAL i)
276 register Lisp_Object tail1, tail2, sym;
278 /* Go through each element of LIST. */
279 for (tail1 = list; CONSP (tail1); tail1 = XCDR (tail1))
281 sym = Fcar (tail1);
283 /* Go through i's plist, looking for tail1 */
284 for (tail2 = i->plist; CONSP (tail2); tail2 = XCDR (XCDR (tail2)))
285 if (EQ (sym, XCAR (tail2)))
286 return 1;
289 return 0;
292 /* Changing the plists of individual intervals. */
294 /* Return the value of PROP in property-list PLIST, or Qunbound if it
295 has none. */
296 static Lisp_Object
297 property_value (Lisp_Object plist, Lisp_Object prop)
299 Lisp_Object value;
301 while (PLIST_ELT_P (plist, value))
302 if (EQ (XCAR (plist), prop))
303 return XCAR (value);
304 else
305 plist = XCDR (value);
307 return Qunbound;
310 /* Set the properties of INTERVAL to PROPERTIES,
311 and record undo info for the previous values.
312 OBJECT is the string or buffer that INTERVAL belongs to. */
314 static void
315 set_properties (Lisp_Object properties, INTERVAL interval, Lisp_Object object)
317 Lisp_Object sym, value;
319 if (BUFFERP (object))
321 /* For each property in the old plist which is missing from PROPERTIES,
322 or has a different value in PROPERTIES, make an undo record. */
323 for (sym = interval->plist;
324 PLIST_ELT_P (sym, value);
325 sym = XCDR (value))
326 if (! EQ (property_value (properties, XCAR (sym)),
327 XCAR (value)))
329 record_property_change (interval->position, LENGTH (interval),
330 XCAR (sym), XCAR (value),
331 object);
334 /* For each new property that has no value at all in the old plist,
335 make an undo record binding it to nil, so it will be removed. */
336 for (sym = properties;
337 PLIST_ELT_P (sym, value);
338 sym = XCDR (value))
339 if (EQ (property_value (interval->plist, XCAR (sym)), Qunbound))
341 record_property_change (interval->position, LENGTH (interval),
342 XCAR (sym), Qnil,
343 object);
347 /* Store new properties. */
348 interval->plist = Fcopy_sequence (properties);
351 /* Add the properties of PLIST to the interval I, or set
352 the value of I's property to the value of the property on PLIST
353 if they are different.
355 OBJECT should be the string or buffer the interval is in.
357 Return nonzero if this changes I (i.e., if any members of PLIST
358 are actually added to I's plist) */
360 static int
361 add_properties (Lisp_Object plist, INTERVAL i, Lisp_Object object)
363 Lisp_Object tail1, tail2, sym1, val1;
364 register int changed = 0;
365 register int found;
366 struct gcpro gcpro1, gcpro2, gcpro3;
368 tail1 = plist;
369 sym1 = Qnil;
370 val1 = Qnil;
371 /* No need to protect OBJECT, because we can GC only in the case
372 where it is a buffer, and live buffers are always protected.
373 I and its plist are also protected, via OBJECT. */
374 GCPRO3 (tail1, sym1, val1);
376 /* Go through each element of PLIST. */
377 for (tail1 = plist; CONSP (tail1); tail1 = Fcdr (XCDR (tail1)))
379 sym1 = XCAR (tail1);
380 val1 = Fcar (XCDR (tail1));
381 found = 0;
383 /* Go through I's plist, looking for sym1 */
384 for (tail2 = i->plist; CONSP (tail2); tail2 = Fcdr (XCDR (tail2)))
385 if (EQ (sym1, XCAR (tail2)))
387 /* No need to gcpro, because tail2 protects this
388 and it must be a cons cell (we get an error otherwise). */
389 register Lisp_Object this_cdr;
391 this_cdr = XCDR (tail2);
392 /* Found the property. Now check its value. */
393 found = 1;
395 /* The properties have the same value on both lists.
396 Continue to the next property. */
397 if (EQ (val1, Fcar (this_cdr)))
398 break;
400 /* Record this change in the buffer, for undo purposes. */
401 if (BUFFERP (object))
403 record_property_change (i->position, LENGTH (i),
404 sym1, Fcar (this_cdr), object);
407 /* I's property has a different value -- change it */
408 Fsetcar (this_cdr, val1);
409 changed++;
410 break;
413 if (! found)
415 /* Record this change in the buffer, for undo purposes. */
416 if (BUFFERP (object))
418 record_property_change (i->position, LENGTH (i),
419 sym1, Qnil, object);
421 i->plist = Fcons (sym1, Fcons (val1, i->plist));
422 changed++;
426 UNGCPRO;
428 return changed;
431 /* For any members of PLIST, or LIST,
432 which are properties of I, remove them from I's plist.
433 (If PLIST is non-nil, use that, otherwise use LIST.)
434 OBJECT is the string or buffer containing I. */
436 static int
437 remove_properties (Lisp_Object plist, Lisp_Object list, INTERVAL i, Lisp_Object object)
439 register Lisp_Object tail1, tail2, sym, current_plist;
440 register int changed = 0;
442 /* Nonzero means tail1 is a plist, otherwise it is a list. */
443 int use_plist;
445 current_plist = i->plist;
447 if (! NILP (plist))
448 tail1 = plist, use_plist = 1;
449 else
450 tail1 = list, use_plist = 0;
452 /* Go through each element of LIST or PLIST. */
453 while (CONSP (tail1))
455 sym = XCAR (tail1);
457 /* First, remove the symbol if it's at the head of the list */
458 while (CONSP (current_plist) && EQ (sym, XCAR (current_plist)))
460 if (BUFFERP (object))
461 record_property_change (i->position, LENGTH (i),
462 sym, XCAR (XCDR (current_plist)),
463 object);
465 current_plist = XCDR (XCDR (current_plist));
466 changed++;
469 /* Go through I's plist, looking for SYM. */
470 tail2 = current_plist;
471 while (! NILP (tail2))
473 register Lisp_Object this;
474 this = XCDR (XCDR (tail2));
475 if (CONSP (this) && EQ (sym, XCAR (this)))
477 if (BUFFERP (object))
478 record_property_change (i->position, LENGTH (i),
479 sym, XCAR (XCDR (this)), object);
481 Fsetcdr (XCDR (tail2), XCDR (XCDR (this)));
482 changed++;
484 tail2 = this;
487 /* Advance thru TAIL1 one way or the other. */
488 tail1 = XCDR (tail1);
489 if (use_plist && CONSP (tail1))
490 tail1 = XCDR (tail1);
493 if (changed)
494 i->plist = current_plist;
495 return changed;
498 #if 0
499 /* Remove all properties from interval I. Return non-zero
500 if this changes the interval. */
502 static INLINE int
503 erase_properties (INTERVAL i)
505 if (NILP (i->plist))
506 return 0;
508 i->plist = Qnil;
509 return 1;
511 #endif
513 /* Returns the interval of POSITION in OBJECT.
514 POSITION is BEG-based. */
516 INTERVAL
517 interval_of (EMACS_INT position, Lisp_Object object)
519 register INTERVAL i;
520 EMACS_INT beg, end;
522 if (NILP (object))
523 XSETBUFFER (object, current_buffer);
524 else if (EQ (object, Qt))
525 return NULL_INTERVAL;
527 CHECK_STRING_OR_BUFFER (object);
529 if (BUFFERP (object))
531 register struct buffer *b = XBUFFER (object);
533 beg = BUF_BEGV (b);
534 end = BUF_ZV (b);
535 i = BUF_INTERVALS (b);
537 else
539 beg = 0;
540 end = SCHARS (object);
541 i = STRING_INTERVALS (object);
544 if (!(beg <= position && position <= end))
545 args_out_of_range (make_number (position), make_number (position));
546 if (beg == end || NULL_INTERVAL_P (i))
547 return NULL_INTERVAL;
549 return find_interval (i, position);
552 DEFUN ("text-properties-at", Ftext_properties_at,
553 Stext_properties_at, 1, 2, 0,
554 doc: /* Return the list of properties of the character at POSITION in OBJECT.
555 If the optional second argument OBJECT is a buffer (or nil, which means
556 the current buffer), POSITION is a buffer position (integer or marker).
557 If OBJECT is a string, POSITION is a 0-based index into it.
558 If POSITION is at the end of OBJECT, the value is nil. */)
559 (Lisp_Object position, Lisp_Object object)
561 register INTERVAL i;
563 if (NILP (object))
564 XSETBUFFER (object, current_buffer);
566 i = validate_interval_range (object, &position, &position, soft);
567 if (NULL_INTERVAL_P (i))
568 return Qnil;
569 /* If POSITION is at the end of the interval,
570 it means it's the end of OBJECT.
571 There are no properties at the very end,
572 since no character follows. */
573 if (XINT (position) == LENGTH (i) + i->position)
574 return Qnil;
576 return i->plist;
579 DEFUN ("get-text-property", Fget_text_property, Sget_text_property, 2, 3, 0,
580 doc: /* Return the value of POSITION's property PROP, in OBJECT.
581 OBJECT is optional and defaults to the current buffer.
582 If POSITION is at the end of OBJECT, the value is nil. */)
583 (Lisp_Object position, Lisp_Object prop, Lisp_Object object)
585 return textget (Ftext_properties_at (position, object), prop);
588 /* Return the value of char's property PROP, in OBJECT at POSITION.
589 OBJECT is optional and defaults to the current buffer.
590 If OVERLAY is non-0, then in the case that the returned property is from
591 an overlay, the overlay found is returned in *OVERLAY, otherwise nil is
592 returned in *OVERLAY.
593 If POSITION is at the end of OBJECT, the value is nil.
594 If OBJECT is a buffer, then overlay properties are considered as well as
595 text properties.
596 If OBJECT is a window, then that window's buffer is used, but
597 window-specific overlays are considered only if they are associated
598 with OBJECT. */
599 Lisp_Object
600 get_char_property_and_overlay (Lisp_Object position, register Lisp_Object prop, Lisp_Object object, Lisp_Object *overlay)
602 struct window *w = 0;
604 CHECK_NUMBER_COERCE_MARKER (position);
606 if (NILP (object))
607 XSETBUFFER (object, current_buffer);
609 if (WINDOWP (object))
611 w = XWINDOW (object);
612 object = w->buffer;
614 if (BUFFERP (object))
616 int noverlays;
617 Lisp_Object *overlay_vec;
618 struct buffer *obuf = current_buffer;
620 if (XINT (position) < BUF_BEGV (XBUFFER (object))
621 || XINT (position) > BUF_ZV (XBUFFER (object)))
622 xsignal1 (Qargs_out_of_range, position);
624 set_buffer_temp (XBUFFER (object));
626 GET_OVERLAYS_AT (XINT (position), overlay_vec, noverlays, NULL, 0);
627 noverlays = sort_overlays (overlay_vec, noverlays, w);
629 set_buffer_temp (obuf);
631 /* Now check the overlays in order of decreasing priority. */
632 while (--noverlays >= 0)
634 Lisp_Object tem = Foverlay_get (overlay_vec[noverlays], prop);
635 if (!NILP (tem))
637 if (overlay)
638 /* Return the overlay we got the property from. */
639 *overlay = overlay_vec[noverlays];
640 return tem;
645 if (overlay)
646 /* Indicate that the return value is not from an overlay. */
647 *overlay = Qnil;
649 /* Not a buffer, or no appropriate overlay, so fall through to the
650 simpler case. */
651 return Fget_text_property (position, prop, object);
654 DEFUN ("get-char-property", Fget_char_property, Sget_char_property, 2, 3, 0,
655 doc: /* Return the value of POSITION's property PROP, in OBJECT.
656 Both overlay properties and text properties are checked.
657 OBJECT is optional and defaults to the current buffer.
658 If POSITION is at the end of OBJECT, the value is nil.
659 If OBJECT is a buffer, then overlay properties are considered as well as
660 text properties.
661 If OBJECT is a window, then that window's buffer is used, but window-specific
662 overlays are considered only if they are associated with OBJECT. */)
663 (Lisp_Object position, Lisp_Object prop, Lisp_Object object)
665 return get_char_property_and_overlay (position, prop, object, 0);
668 DEFUN ("get-char-property-and-overlay", Fget_char_property_and_overlay,
669 Sget_char_property_and_overlay, 2, 3, 0,
670 doc: /* Like `get-char-property', but with extra overlay information.
671 The value is a cons cell. Its car is the return value of `get-char-property'
672 with the same arguments--that is, the value of POSITION's property
673 PROP in OBJECT. Its cdr is the overlay in which the property was
674 found, or nil, if it was found as a text property or not found at all.
676 OBJECT is optional and defaults to the current buffer. OBJECT may be
677 a string, a buffer or a window. For strings, the cdr of the return
678 value is always nil, since strings do not have overlays. If OBJECT is
679 a window, then that window's buffer is used, but window-specific
680 overlays are considered only if they are associated with OBJECT. If
681 POSITION is at the end of OBJECT, both car and cdr are nil. */)
682 (Lisp_Object position, Lisp_Object prop, Lisp_Object object)
684 Lisp_Object overlay;
685 Lisp_Object val
686 = get_char_property_and_overlay (position, prop, object, &overlay);
687 return Fcons (val, overlay);
691 DEFUN ("next-char-property-change", Fnext_char_property_change,
692 Snext_char_property_change, 1, 2, 0,
693 doc: /* Return the position of next text property or overlay change.
694 This scans characters forward in the current buffer from POSITION till
695 it finds a change in some text property, or the beginning or end of an
696 overlay, and returns the position of that.
697 If none is found up to (point-max), the function returns (point-max).
699 If the optional second argument LIMIT is non-nil, don't search
700 past position LIMIT; return LIMIT if nothing is found before LIMIT.
701 LIMIT is a no-op if it is greater than (point-max). */)
702 (Lisp_Object position, Lisp_Object limit)
704 Lisp_Object temp;
706 temp = Fnext_overlay_change (position);
707 if (! NILP (limit))
709 CHECK_NUMBER_COERCE_MARKER (limit);
710 if (XINT (limit) < XINT (temp))
711 temp = limit;
713 return Fnext_property_change (position, Qnil, temp);
716 DEFUN ("previous-char-property-change", Fprevious_char_property_change,
717 Sprevious_char_property_change, 1, 2, 0,
718 doc: /* Return the position of previous text property or overlay change.
719 Scans characters backward in the current buffer from POSITION till it
720 finds a change in some text property, or the beginning or end of an
721 overlay, and returns the position of that.
722 If none is found since (point-min), the function returns (point-min).
724 If the optional second argument LIMIT is non-nil, don't search
725 past position LIMIT; return LIMIT if nothing is found before LIMIT.
726 LIMIT is a no-op if it is less than (point-min). */)
727 (Lisp_Object position, Lisp_Object limit)
729 Lisp_Object temp;
731 temp = Fprevious_overlay_change (position);
732 if (! NILP (limit))
734 CHECK_NUMBER_COERCE_MARKER (limit);
735 if (XINT (limit) > XINT (temp))
736 temp = limit;
738 return Fprevious_property_change (position, Qnil, temp);
742 DEFUN ("next-single-char-property-change", Fnext_single_char_property_change,
743 Snext_single_char_property_change, 2, 4, 0,
744 doc: /* Return the position of next text property or overlay change for a specific property.
745 Scans characters forward from POSITION till it finds
746 a change in the PROP property, then returns the position of the change.
747 If the optional third argument OBJECT is a buffer (or nil, which means
748 the current buffer), POSITION is a buffer position (integer or marker).
749 If OBJECT is a string, POSITION is a 0-based index into it.
751 In a string, scan runs to the end of the string.
752 In a buffer, it runs to (point-max), and the value cannot exceed that.
754 The property values are compared with `eq'.
755 If the property is constant all the way to the end of OBJECT, return the
756 last valid position in OBJECT.
757 If the optional fourth argument LIMIT is non-nil, don't search
758 past position LIMIT; return LIMIT if nothing is found before LIMIT. */)
759 (Lisp_Object position, Lisp_Object prop, Lisp_Object object, Lisp_Object limit)
761 if (STRINGP (object))
763 position = Fnext_single_property_change (position, prop, object, limit);
764 if (NILP (position))
766 if (NILP (limit))
767 position = make_number (SCHARS (object));
768 else
770 CHECK_NUMBER (limit);
771 position = limit;
775 else
777 Lisp_Object initial_value, value;
778 int count = SPECPDL_INDEX ();
780 if (! NILP (object))
781 CHECK_BUFFER (object);
783 if (BUFFERP (object) && current_buffer != XBUFFER (object))
785 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
786 Fset_buffer (object);
789 CHECK_NUMBER_COERCE_MARKER (position);
791 initial_value = Fget_char_property (position, prop, object);
793 if (NILP (limit))
794 XSETFASTINT (limit, ZV);
795 else
796 CHECK_NUMBER_COERCE_MARKER (limit);
798 if (XFASTINT (position) >= XFASTINT (limit))
800 position = limit;
801 if (XFASTINT (position) > ZV)
802 XSETFASTINT (position, ZV);
804 else
805 while (1)
807 position = Fnext_char_property_change (position, limit);
808 if (XFASTINT (position) >= XFASTINT (limit))
810 position = limit;
811 break;
814 value = Fget_char_property (position, prop, object);
815 if (!EQ (value, initial_value))
816 break;
819 unbind_to (count, Qnil);
822 return position;
825 DEFUN ("previous-single-char-property-change",
826 Fprevious_single_char_property_change,
827 Sprevious_single_char_property_change, 2, 4, 0,
828 doc: /* Return the position of previous text property or overlay change for a specific property.
829 Scans characters backward from POSITION till it finds
830 a change in the PROP property, then returns the position of the change.
831 If the optional third argument OBJECT is a buffer (or nil, which means
832 the current buffer), POSITION is a buffer position (integer or marker).
833 If OBJECT is a string, POSITION is a 0-based index into it.
835 In a string, scan runs to the start of the string.
836 In a buffer, it runs to (point-min), and the value cannot be less than that.
838 The property values are compared with `eq'.
839 If the property is constant all the way to the start of OBJECT, return the
840 first valid position in OBJECT.
841 If the optional fourth argument LIMIT is non-nil, don't search
842 back past position LIMIT; return LIMIT if nothing is found before LIMIT. */)
843 (Lisp_Object position, Lisp_Object prop, Lisp_Object object, Lisp_Object limit)
845 if (STRINGP (object))
847 position = Fprevious_single_property_change (position, prop, object, limit);
848 if (NILP (position))
850 if (NILP (limit))
851 position = make_number (0);
852 else
854 CHECK_NUMBER (limit);
855 position = limit;
859 else
861 int count = SPECPDL_INDEX ();
863 if (! NILP (object))
864 CHECK_BUFFER (object);
866 if (BUFFERP (object) && current_buffer != XBUFFER (object))
868 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
869 Fset_buffer (object);
872 CHECK_NUMBER_COERCE_MARKER (position);
874 if (NILP (limit))
875 XSETFASTINT (limit, BEGV);
876 else
877 CHECK_NUMBER_COERCE_MARKER (limit);
879 if (XFASTINT (position) <= XFASTINT (limit))
881 position = limit;
882 if (XFASTINT (position) < BEGV)
883 XSETFASTINT (position, BEGV);
885 else
887 Lisp_Object initial_value
888 = Fget_char_property (make_number (XFASTINT (position) - 1),
889 prop, object);
891 while (1)
893 position = Fprevious_char_property_change (position, limit);
895 if (XFASTINT (position) <= XFASTINT (limit))
897 position = limit;
898 break;
900 else
902 Lisp_Object value
903 = Fget_char_property (make_number (XFASTINT (position) - 1),
904 prop, object);
906 if (!EQ (value, initial_value))
907 break;
912 unbind_to (count, Qnil);
915 return position;
918 DEFUN ("next-property-change", Fnext_property_change,
919 Snext_property_change, 1, 3, 0,
920 doc: /* Return the position of next property change.
921 Scans characters forward from POSITION in OBJECT till it finds
922 a change in some text property, then returns the position of the change.
923 If the optional second argument OBJECT is a buffer (or nil, which means
924 the current buffer), POSITION is a buffer position (integer or marker).
925 If OBJECT is a string, POSITION is a 0-based index into it.
926 Return nil if the property is constant all the way to the end of OBJECT.
927 If the value is non-nil, it is a position greater than POSITION, never equal.
929 If the optional third argument LIMIT is non-nil, don't search
930 past position LIMIT; return LIMIT if nothing is found before LIMIT. */)
931 (Lisp_Object position, Lisp_Object object, Lisp_Object limit)
933 register INTERVAL i, next;
935 if (NILP (object))
936 XSETBUFFER (object, current_buffer);
938 if (!NILP (limit) && !EQ (limit, Qt))
939 CHECK_NUMBER_COERCE_MARKER (limit);
941 i = validate_interval_range (object, &position, &position, soft);
943 /* If LIMIT is t, return start of next interval--don't
944 bother checking further intervals. */
945 if (EQ (limit, Qt))
947 if (NULL_INTERVAL_P (i))
948 next = i;
949 else
950 next = next_interval (i);
952 if (NULL_INTERVAL_P (next))
953 XSETFASTINT (position, (STRINGP (object)
954 ? SCHARS (object)
955 : BUF_ZV (XBUFFER (object))));
956 else
957 XSETFASTINT (position, next->position);
958 return position;
961 if (NULL_INTERVAL_P (i))
962 return limit;
964 next = next_interval (i);
966 while (!NULL_INTERVAL_P (next) && intervals_equal (i, next)
967 && (NILP (limit) || next->position < XFASTINT (limit)))
968 next = next_interval (next);
970 if (NULL_INTERVAL_P (next)
971 || (next->position
972 >= (INTEGERP (limit)
973 ? XFASTINT (limit)
974 : (STRINGP (object)
975 ? SCHARS (object)
976 : BUF_ZV (XBUFFER (object))))))
977 return limit;
978 else
979 return make_number (next->position);
982 DEFUN ("next-single-property-change", Fnext_single_property_change,
983 Snext_single_property_change, 2, 4, 0,
984 doc: /* Return the position of next property change for a specific property.
985 Scans characters forward from POSITION till it finds
986 a change in the PROP property, then returns the position of the change.
987 If the optional third argument OBJECT is a buffer (or nil, which means
988 the current buffer), POSITION is a buffer position (integer or marker).
989 If OBJECT is a string, POSITION is a 0-based index into it.
990 The property values are compared with `eq'.
991 Return nil if the property is constant all the way to the end of OBJECT.
992 If the value is non-nil, it is a position greater than POSITION, never equal.
994 If the optional fourth argument LIMIT is non-nil, don't search
995 past position LIMIT; return LIMIT if nothing is found before LIMIT. */)
996 (Lisp_Object position, Lisp_Object prop, Lisp_Object object, Lisp_Object limit)
998 register INTERVAL i, next;
999 register Lisp_Object here_val;
1001 if (NILP (object))
1002 XSETBUFFER (object, current_buffer);
1004 if (!NILP (limit))
1005 CHECK_NUMBER_COERCE_MARKER (limit);
1007 i = validate_interval_range (object, &position, &position, soft);
1008 if (NULL_INTERVAL_P (i))
1009 return limit;
1011 here_val = textget (i->plist, prop);
1012 next = next_interval (i);
1013 while (! NULL_INTERVAL_P (next)
1014 && EQ (here_val, textget (next->plist, prop))
1015 && (NILP (limit) || next->position < XFASTINT (limit)))
1016 next = next_interval (next);
1018 if (NULL_INTERVAL_P (next)
1019 || (next->position
1020 >= (INTEGERP (limit)
1021 ? XFASTINT (limit)
1022 : (STRINGP (object)
1023 ? SCHARS (object)
1024 : BUF_ZV (XBUFFER (object))))))
1025 return limit;
1026 else
1027 return make_number (next->position);
1030 DEFUN ("previous-property-change", Fprevious_property_change,
1031 Sprevious_property_change, 1, 3, 0,
1032 doc: /* Return the position of previous property change.
1033 Scans characters backwards from POSITION in OBJECT till it finds
1034 a change in some text property, then returns the position of the change.
1035 If the optional second argument OBJECT is a buffer (or nil, which means
1036 the current buffer), POSITION is a buffer position (integer or marker).
1037 If OBJECT is a string, POSITION is a 0-based index into it.
1038 Return nil if the property is constant all the way to the start of OBJECT.
1039 If the value is non-nil, it is a position less than POSITION, never equal.
1041 If the optional third argument LIMIT is non-nil, don't search
1042 back past position LIMIT; return LIMIT if nothing is found until LIMIT. */)
1043 (Lisp_Object position, Lisp_Object object, Lisp_Object limit)
1045 register INTERVAL i, previous;
1047 if (NILP (object))
1048 XSETBUFFER (object, current_buffer);
1050 if (!NILP (limit))
1051 CHECK_NUMBER_COERCE_MARKER (limit);
1053 i = validate_interval_range (object, &position, &position, soft);
1054 if (NULL_INTERVAL_P (i))
1055 return limit;
1057 /* Start with the interval containing the char before point. */
1058 if (i->position == XFASTINT (position))
1059 i = previous_interval (i);
1061 previous = previous_interval (i);
1062 while (!NULL_INTERVAL_P (previous) && intervals_equal (previous, i)
1063 && (NILP (limit)
1064 || (previous->position + LENGTH (previous) > XFASTINT (limit))))
1065 previous = previous_interval (previous);
1067 if (NULL_INTERVAL_P (previous)
1068 || (previous->position + LENGTH (previous)
1069 <= (INTEGERP (limit)
1070 ? XFASTINT (limit)
1071 : (STRINGP (object) ? 0 : BUF_BEGV (XBUFFER (object))))))
1072 return limit;
1073 else
1074 return make_number (previous->position + LENGTH (previous));
1077 DEFUN ("previous-single-property-change", Fprevious_single_property_change,
1078 Sprevious_single_property_change, 2, 4, 0,
1079 doc: /* Return the position of previous property change for a specific property.
1080 Scans characters backward from POSITION till it finds
1081 a change in the PROP property, then returns the position of the change.
1082 If the optional third argument OBJECT is a buffer (or nil, which means
1083 the current buffer), POSITION is a buffer position (integer or marker).
1084 If OBJECT is a string, POSITION is a 0-based index into it.
1085 The property values are compared with `eq'.
1086 Return nil if the property is constant all the way to the start of OBJECT.
1087 If the value is non-nil, it is a position less than POSITION, never equal.
1089 If the optional fourth argument LIMIT is non-nil, don't search
1090 back past position LIMIT; return LIMIT if nothing is found until LIMIT. */)
1091 (Lisp_Object position, Lisp_Object prop, Lisp_Object object, Lisp_Object limit)
1093 register INTERVAL i, previous;
1094 register Lisp_Object here_val;
1096 if (NILP (object))
1097 XSETBUFFER (object, current_buffer);
1099 if (!NILP (limit))
1100 CHECK_NUMBER_COERCE_MARKER (limit);
1102 i = validate_interval_range (object, &position, &position, soft);
1104 /* Start with the interval containing the char before point. */
1105 if (!NULL_INTERVAL_P (i) && i->position == XFASTINT (position))
1106 i = previous_interval (i);
1108 if (NULL_INTERVAL_P (i))
1109 return limit;
1111 here_val = textget (i->plist, prop);
1112 previous = previous_interval (i);
1113 while (!NULL_INTERVAL_P (previous)
1114 && EQ (here_val, textget (previous->plist, prop))
1115 && (NILP (limit)
1116 || (previous->position + LENGTH (previous) > XFASTINT (limit))))
1117 previous = previous_interval (previous);
1119 if (NULL_INTERVAL_P (previous)
1120 || (previous->position + LENGTH (previous)
1121 <= (INTEGERP (limit)
1122 ? XFASTINT (limit)
1123 : (STRINGP (object) ? 0 : BUF_BEGV (XBUFFER (object))))))
1124 return limit;
1125 else
1126 return make_number (previous->position + LENGTH (previous));
1129 /* Callers note, this can GC when OBJECT is a buffer (or nil). */
1131 DEFUN ("add-text-properties", Fadd_text_properties,
1132 Sadd_text_properties, 3, 4, 0,
1133 doc: /* Add properties to the text from START to END.
1134 The third argument PROPERTIES is a property list
1135 specifying the property values to add. If the optional fourth argument
1136 OBJECT is a buffer (or nil, which means the current buffer),
1137 START and END are buffer positions (integers or markers).
1138 If OBJECT is a string, START and END are 0-based indices into it.
1139 Return t if any property value actually changed, nil otherwise. */)
1140 (Lisp_Object start, Lisp_Object end, Lisp_Object properties, Lisp_Object object)
1142 register INTERVAL i, unchanged;
1143 register EMACS_INT s, len;
1144 register int modified = 0;
1145 struct gcpro gcpro1;
1147 properties = validate_plist (properties);
1148 if (NILP (properties))
1149 return Qnil;
1151 if (NILP (object))
1152 XSETBUFFER (object, current_buffer);
1154 i = validate_interval_range (object, &start, &end, hard);
1155 if (NULL_INTERVAL_P (i))
1156 return Qnil;
1158 s = XINT (start);
1159 len = XINT (end) - s;
1161 /* No need to protect OBJECT, because we GC only if it's a buffer,
1162 and live buffers are always protected. */
1163 GCPRO1 (properties);
1165 /* If we're not starting on an interval boundary, we have to
1166 split this interval. */
1167 if (i->position != s)
1169 /* If this interval already has the properties, we can
1170 skip it. */
1171 if (interval_has_all_properties (properties, i))
1173 EMACS_INT got = (LENGTH (i) - (s - i->position));
1174 if (got >= len)
1175 RETURN_UNGCPRO (Qnil);
1176 len -= got;
1177 i = next_interval (i);
1179 else
1181 unchanged = i;
1182 i = split_interval_right (unchanged, s - unchanged->position);
1183 copy_properties (unchanged, i);
1187 if (BUFFERP (object))
1188 modify_region (XBUFFER (object), XINT (start), XINT (end), 1);
1190 /* We are at the beginning of interval I, with LEN chars to scan. */
1191 for (;;)
1193 if (i == 0)
1194 abort ();
1196 if (LENGTH (i) >= len)
1198 /* We can UNGCPRO safely here, because there will be just
1199 one more chance to gc, in the next call to add_properties,
1200 and after that we will not need PROPERTIES or OBJECT again. */
1201 UNGCPRO;
1203 if (interval_has_all_properties (properties, i))
1205 if (BUFFERP (object))
1206 signal_after_change (XINT (start), XINT (end) - XINT (start),
1207 XINT (end) - XINT (start));
1209 return modified ? Qt : Qnil;
1212 if (LENGTH (i) == len)
1214 add_properties (properties, i, object);
1215 if (BUFFERP (object))
1216 signal_after_change (XINT (start), XINT (end) - XINT (start),
1217 XINT (end) - XINT (start));
1218 return Qt;
1221 /* i doesn't have the properties, and goes past the change limit */
1222 unchanged = i;
1223 i = split_interval_left (unchanged, len);
1224 copy_properties (unchanged, i);
1225 add_properties (properties, i, object);
1226 if (BUFFERP (object))
1227 signal_after_change (XINT (start), XINT (end) - XINT (start),
1228 XINT (end) - XINT (start));
1229 return Qt;
1232 len -= LENGTH (i);
1233 modified += add_properties (properties, i, object);
1234 i = next_interval (i);
1238 /* Callers note, this can GC when OBJECT is a buffer (or nil). */
1240 DEFUN ("put-text-property", Fput_text_property,
1241 Sput_text_property, 4, 5, 0,
1242 doc: /* Set one property of the text from START to END.
1243 The third and fourth arguments PROPERTY and VALUE
1244 specify the property to add.
1245 If the optional fifth argument OBJECT is a buffer (or nil, which means
1246 the current buffer), START and END are buffer positions (integers or
1247 markers). If OBJECT is a string, START and END are 0-based indices into it. */)
1248 (Lisp_Object start, Lisp_Object end, Lisp_Object property, Lisp_Object value, Lisp_Object object)
1250 Fadd_text_properties (start, end,
1251 Fcons (property, Fcons (value, Qnil)),
1252 object);
1253 return Qnil;
1256 DEFUN ("set-text-properties", Fset_text_properties,
1257 Sset_text_properties, 3, 4, 0,
1258 doc: /* Completely replace properties of text from START to END.
1259 The third argument PROPERTIES is the new property list.
1260 If the optional fourth argument OBJECT is a buffer (or nil, which means
1261 the current buffer), START and END are buffer positions (integers or
1262 markers). If OBJECT is a string, START and END are 0-based indices into it.
1263 If PROPERTIES is nil, the effect is to remove all properties from
1264 the designated part of OBJECT. */)
1265 (Lisp_Object start, Lisp_Object end, Lisp_Object properties, Lisp_Object object)
1267 return set_text_properties (start, end, properties, object, Qt);
1271 /* Replace properties of text from START to END with new list of
1272 properties PROPERTIES. OBJECT is the buffer or string containing
1273 the text. OBJECT nil means use the current buffer.
1274 COHERENT_CHANGE_P nil means this is being called as an internal
1275 subroutine, rather than as a change primitive with checking of
1276 read-only, invoking change hooks, etc.. Value is nil if the
1277 function _detected_ that it did not replace any properties, non-nil
1278 otherwise. */
1280 Lisp_Object
1281 set_text_properties (Lisp_Object start, Lisp_Object end, Lisp_Object properties, Lisp_Object object, Lisp_Object coherent_change_p)
1283 register INTERVAL i;
1284 Lisp_Object ostart, oend;
1286 ostart = start;
1287 oend = end;
1289 properties = validate_plist (properties);
1291 if (NILP (object))
1292 XSETBUFFER (object, current_buffer);
1294 /* If we want no properties for a whole string,
1295 get rid of its intervals. */
1296 if (NILP (properties) && STRINGP (object)
1297 && XFASTINT (start) == 0
1298 && XFASTINT (end) == SCHARS (object))
1300 if (! STRING_INTERVALS (object))
1301 return Qnil;
1303 STRING_SET_INTERVALS (object, NULL_INTERVAL);
1304 return Qt;
1307 i = validate_interval_range (object, &start, &end, soft);
1309 if (NULL_INTERVAL_P (i))
1311 /* If buffer has no properties, and we want none, return now. */
1312 if (NILP (properties))
1313 return Qnil;
1315 /* Restore the original START and END values
1316 because validate_interval_range increments them for strings. */
1317 start = ostart;
1318 end = oend;
1320 i = validate_interval_range (object, &start, &end, hard);
1321 /* This can return if start == end. */
1322 if (NULL_INTERVAL_P (i))
1323 return Qnil;
1326 if (BUFFERP (object) && !NILP (coherent_change_p))
1327 modify_region (XBUFFER (object), XINT (start), XINT (end), 1);
1329 set_text_properties_1 (start, end, properties, object, i);
1331 if (BUFFERP (object) && !NILP (coherent_change_p))
1332 signal_after_change (XINT (start), XINT (end) - XINT (start),
1333 XINT (end) - XINT (start));
1334 return Qt;
1337 /* Replace properties of text from START to END with new list of
1338 properties PROPERTIES. BUFFER is the buffer containing
1339 the text. This does not obey any hooks.
1340 You can provide the interval that START is located in as I,
1341 or pass NULL for I and this function will find it.
1342 START and END can be in any order. */
1344 void
1345 set_text_properties_1 (Lisp_Object start, Lisp_Object end, Lisp_Object properties, Lisp_Object buffer, INTERVAL i)
1347 register INTERVAL prev_changed = NULL_INTERVAL;
1348 register EMACS_INT s, len;
1349 INTERVAL unchanged;
1351 s = XINT (start);
1352 len = XINT (end) - s;
1353 if (len == 0)
1354 return;
1355 if (len < 0)
1357 s = s + len;
1358 len = - len;
1361 if (i == 0)
1362 i = find_interval (BUF_INTERVALS (XBUFFER (buffer)), s);
1364 if (i->position != s)
1366 unchanged = i;
1367 i = split_interval_right (unchanged, s - unchanged->position);
1369 if (LENGTH (i) > len)
1371 copy_properties (unchanged, i);
1372 i = split_interval_left (i, len);
1373 set_properties (properties, i, buffer);
1374 return;
1377 set_properties (properties, i, buffer);
1379 if (LENGTH (i) == len)
1380 return;
1382 prev_changed = i;
1383 len -= LENGTH (i);
1384 i = next_interval (i);
1387 /* We are starting at the beginning of an interval I. LEN is positive. */
1390 if (i == 0)
1391 abort ();
1393 if (LENGTH (i) >= len)
1395 if (LENGTH (i) > len)
1396 i = split_interval_left (i, len);
1398 /* We have to call set_properties even if we are going to
1399 merge the intervals, so as to make the undo records
1400 and cause redisplay to happen. */
1401 set_properties (properties, i, buffer);
1402 if (!NULL_INTERVAL_P (prev_changed))
1403 merge_interval_left (i);
1404 return;
1407 len -= LENGTH (i);
1409 /* We have to call set_properties even if we are going to
1410 merge the intervals, so as to make the undo records
1411 and cause redisplay to happen. */
1412 set_properties (properties, i, buffer);
1413 if (NULL_INTERVAL_P (prev_changed))
1414 prev_changed = i;
1415 else
1416 prev_changed = i = merge_interval_left (i);
1418 i = next_interval (i);
1420 while (len > 0);
1423 DEFUN ("remove-text-properties", Fremove_text_properties,
1424 Sremove_text_properties, 3, 4, 0,
1425 doc: /* Remove some properties from text from START to END.
1426 The third argument PROPERTIES is a property list
1427 whose property names specify the properties to remove.
1428 \(The values stored in PROPERTIES are ignored.)
1429 If the optional fourth argument OBJECT is a buffer (or nil, which means
1430 the current buffer), START and END are buffer positions (integers or
1431 markers). If OBJECT is a string, START and END are 0-based indices into it.
1432 Return t if any property was actually removed, nil otherwise.
1434 Use `set-text-properties' if you want to remove all text properties. */)
1435 (Lisp_Object start, Lisp_Object end, Lisp_Object properties, Lisp_Object object)
1437 register INTERVAL i, unchanged;
1438 register EMACS_INT s, len;
1439 register int modified = 0;
1441 if (NILP (object))
1442 XSETBUFFER (object, current_buffer);
1444 i = validate_interval_range (object, &start, &end, soft);
1445 if (NULL_INTERVAL_P (i))
1446 return Qnil;
1448 s = XINT (start);
1449 len = XINT (end) - s;
1451 if (i->position != s)
1453 /* No properties on this first interval -- return if
1454 it covers the entire region. */
1455 if (! interval_has_some_properties (properties, i))
1457 EMACS_INT got = (LENGTH (i) - (s - i->position));
1458 if (got >= len)
1459 return Qnil;
1460 len -= got;
1461 i = next_interval (i);
1463 /* Split away the beginning of this interval; what we don't
1464 want to modify. */
1465 else
1467 unchanged = i;
1468 i = split_interval_right (unchanged, s - unchanged->position);
1469 copy_properties (unchanged, i);
1473 if (BUFFERP (object))
1474 modify_region (XBUFFER (object), XINT (start), XINT (end), 1);
1476 /* We are at the beginning of an interval, with len to scan */
1477 for (;;)
1479 if (i == 0)
1480 abort ();
1482 if (LENGTH (i) >= len)
1484 if (! interval_has_some_properties (properties, i))
1485 return modified ? Qt : Qnil;
1487 if (LENGTH (i) == len)
1489 remove_properties (properties, Qnil, i, object);
1490 if (BUFFERP (object))
1491 signal_after_change (XINT (start), XINT (end) - XINT (start),
1492 XINT (end) - XINT (start));
1493 return Qt;
1496 /* i has the properties, and goes past the change limit */
1497 unchanged = i;
1498 i = split_interval_left (i, len);
1499 copy_properties (unchanged, i);
1500 remove_properties (properties, Qnil, i, object);
1501 if (BUFFERP (object))
1502 signal_after_change (XINT (start), XINT (end) - XINT (start),
1503 XINT (end) - XINT (start));
1504 return Qt;
1507 len -= LENGTH (i);
1508 modified += remove_properties (properties, Qnil, i, object);
1509 i = next_interval (i);
1513 DEFUN ("remove-list-of-text-properties", Fremove_list_of_text_properties,
1514 Sremove_list_of_text_properties, 3, 4, 0,
1515 doc: /* Remove some properties from text from START to END.
1516 The third argument LIST-OF-PROPERTIES is a list of property names to remove.
1517 If the optional fourth argument OBJECT is a buffer (or nil, which means
1518 the current buffer), START and END are buffer positions (integers or
1519 markers). If OBJECT is a string, START and END are 0-based indices into it.
1520 Return t if any property was actually removed, nil otherwise. */)
1521 (Lisp_Object start, Lisp_Object end, Lisp_Object list_of_properties, Lisp_Object object)
1523 register INTERVAL i, unchanged;
1524 register EMACS_INT s, len;
1525 register int modified = 0;
1526 Lisp_Object properties;
1527 properties = list_of_properties;
1529 if (NILP (object))
1530 XSETBUFFER (object, current_buffer);
1532 i = validate_interval_range (object, &start, &end, soft);
1533 if (NULL_INTERVAL_P (i))
1534 return Qnil;
1536 s = XINT (start);
1537 len = XINT (end) - s;
1539 if (i->position != s)
1541 /* No properties on this first interval -- return if
1542 it covers the entire region. */
1543 if (! interval_has_some_properties_list (properties, i))
1545 EMACS_INT got = (LENGTH (i) - (s - i->position));
1546 if (got >= len)
1547 return Qnil;
1548 len -= got;
1549 i = next_interval (i);
1551 /* Split away the beginning of this interval; what we don't
1552 want to modify. */
1553 else
1555 unchanged = i;
1556 i = split_interval_right (unchanged, s - unchanged->position);
1557 copy_properties (unchanged, i);
1561 /* We are at the beginning of an interval, with len to scan.
1562 The flag `modified' records if changes have been made.
1563 When object is a buffer, we must call modify_region before changes are
1564 made and signal_after_change when we are done.
1565 We call modify_region before calling remove_properties if modified == 0,
1566 and we call signal_after_change before returning if modified != 0. */
1567 for (;;)
1569 if (i == 0)
1570 abort ();
1572 if (LENGTH (i) >= len)
1574 if (! interval_has_some_properties_list (properties, i))
1576 if (modified)
1578 if (BUFFERP (object))
1579 signal_after_change (XINT (start),
1580 XINT (end) - XINT (start),
1581 XINT (end) - XINT (start));
1582 return Qt;
1584 else
1585 return Qnil;
1587 else if (LENGTH (i) == len)
1589 if (!modified && BUFFERP (object))
1590 modify_region (XBUFFER (object), XINT (start), XINT (end), 1);
1591 remove_properties (Qnil, properties, i, object);
1592 if (BUFFERP (object))
1593 signal_after_change (XINT (start), XINT (end) - XINT (start),
1594 XINT (end) - XINT (start));
1595 return Qt;
1597 else
1598 { /* i has the properties, and goes past the change limit. */
1599 unchanged = i;
1600 i = split_interval_left (i, len);
1601 copy_properties (unchanged, i);
1602 if (!modified && BUFFERP (object))
1603 modify_region (XBUFFER (object), XINT (start), XINT (end), 1);
1604 remove_properties (Qnil, properties, i, object);
1605 if (BUFFERP (object))
1606 signal_after_change (XINT (start), XINT (end) - XINT (start),
1607 XINT (end) - XINT (start));
1608 return Qt;
1611 if (interval_has_some_properties_list (properties, i))
1613 if (!modified && BUFFERP (object))
1614 modify_region (XBUFFER (object), XINT (start), XINT (end), 1);
1615 remove_properties (Qnil, properties, i, object);
1616 modified = 1;
1618 len -= LENGTH (i);
1619 i = next_interval (i);
1623 DEFUN ("text-property-any", Ftext_property_any,
1624 Stext_property_any, 4, 5, 0,
1625 doc: /* Check text from START to END for property PROPERTY equalling VALUE.
1626 If so, return the position of the first character whose property PROPERTY
1627 is `eq' to VALUE. Otherwise return nil.
1628 If the optional fifth argument OBJECT is a buffer (or nil, which means
1629 the current buffer), START and END are buffer positions (integers or
1630 markers). If OBJECT is a string, START and END are 0-based indices into it. */)
1631 (Lisp_Object start, Lisp_Object end, Lisp_Object property, Lisp_Object value, Lisp_Object object)
1633 register INTERVAL i;
1634 register EMACS_INT e, pos;
1636 if (NILP (object))
1637 XSETBUFFER (object, current_buffer);
1638 i = validate_interval_range (object, &start, &end, soft);
1639 if (NULL_INTERVAL_P (i))
1640 return (!NILP (value) || EQ (start, end) ? Qnil : start);
1641 e = XINT (end);
1643 while (! NULL_INTERVAL_P (i))
1645 if (i->position >= e)
1646 break;
1647 if (EQ (textget (i->plist, property), value))
1649 pos = i->position;
1650 if (pos < XINT (start))
1651 pos = XINT (start);
1652 return make_number (pos);
1654 i = next_interval (i);
1656 return Qnil;
1659 DEFUN ("text-property-not-all", Ftext_property_not_all,
1660 Stext_property_not_all, 4, 5, 0,
1661 doc: /* Check text from START to END for property PROPERTY not equalling VALUE.
1662 If so, return the position of the first character whose property PROPERTY
1663 is not `eq' to VALUE. Otherwise, return nil.
1664 If the optional fifth argument OBJECT is a buffer (or nil, which means
1665 the current buffer), START and END are buffer positions (integers or
1666 markers). If OBJECT is a string, START and END are 0-based indices into it. */)
1667 (Lisp_Object start, Lisp_Object end, Lisp_Object property, Lisp_Object value, Lisp_Object object)
1669 register INTERVAL i;
1670 register EMACS_INT s, e;
1672 if (NILP (object))
1673 XSETBUFFER (object, current_buffer);
1674 i = validate_interval_range (object, &start, &end, soft);
1675 if (NULL_INTERVAL_P (i))
1676 return (NILP (value) || EQ (start, end)) ? Qnil : start;
1677 s = XINT (start);
1678 e = XINT (end);
1680 while (! NULL_INTERVAL_P (i))
1682 if (i->position >= e)
1683 break;
1684 if (! EQ (textget (i->plist, property), value))
1686 if (i->position > s)
1687 s = i->position;
1688 return make_number (s);
1690 i = next_interval (i);
1692 return Qnil;
1696 /* Return the direction from which the text-property PROP would be
1697 inherited by any new text inserted at POS: 1 if it would be
1698 inherited from the char after POS, -1 if it would be inherited from
1699 the char before POS, and 0 if from neither.
1700 BUFFER can be either a buffer or nil (meaning current buffer). */
1703 text_property_stickiness (Lisp_Object prop, Lisp_Object pos, Lisp_Object buffer)
1705 Lisp_Object prev_pos, front_sticky;
1706 int is_rear_sticky = 1, is_front_sticky = 0; /* defaults */
1708 if (NILP (buffer))
1709 XSETBUFFER (buffer, current_buffer);
1711 if (XINT (pos) > BUF_BEGV (XBUFFER (buffer)))
1712 /* Consider previous character. */
1714 Lisp_Object rear_non_sticky;
1716 prev_pos = make_number (XINT (pos) - 1);
1717 rear_non_sticky = Fget_text_property (prev_pos, Qrear_nonsticky, buffer);
1719 if (!NILP (CONSP (rear_non_sticky)
1720 ? Fmemq (prop, rear_non_sticky)
1721 : rear_non_sticky))
1722 /* PROP is rear-non-sticky. */
1723 is_rear_sticky = 0;
1725 else
1726 return 0;
1728 /* Consider following character. */
1729 /* This signals an arg-out-of-range error if pos is outside the
1730 buffer's accessible range. */
1731 front_sticky = Fget_text_property (pos, Qfront_sticky, buffer);
1733 if (EQ (front_sticky, Qt)
1734 || (CONSP (front_sticky)
1735 && !NILP (Fmemq (prop, front_sticky))))
1736 /* PROP is inherited from after. */
1737 is_front_sticky = 1;
1739 /* Simple cases, where the properties are consistent. */
1740 if (is_rear_sticky && !is_front_sticky)
1741 return -1;
1742 else if (!is_rear_sticky && is_front_sticky)
1743 return 1;
1744 else if (!is_rear_sticky && !is_front_sticky)
1745 return 0;
1747 /* The stickiness properties are inconsistent, so we have to
1748 disambiguate. Basically, rear-sticky wins, _except_ if the
1749 property that would be inherited has a value of nil, in which case
1750 front-sticky wins. */
1751 if (XINT (pos) == BUF_BEGV (XBUFFER (buffer))
1752 || NILP (Fget_text_property (prev_pos, prop, buffer)))
1753 return 1;
1754 else
1755 return -1;
1759 /* Copying properties between objects. */
1761 /* Add properties from START to END of SRC, starting at POS in DEST.
1762 SRC and DEST may each refer to strings or buffers.
1763 Optional sixth argument PROP causes only that property to be copied.
1764 Properties are copied to DEST as if by `add-text-properties'.
1765 Return t if any property value actually changed, nil otherwise. */
1767 /* Note this can GC when DEST is a buffer. */
1769 Lisp_Object
1770 copy_text_properties (Lisp_Object start, Lisp_Object end, Lisp_Object src, Lisp_Object pos, Lisp_Object dest, Lisp_Object prop)
1772 INTERVAL i;
1773 Lisp_Object res;
1774 Lisp_Object stuff;
1775 Lisp_Object plist;
1776 EMACS_INT s, e, e2, p, len;
1777 int modified = 0;
1778 struct gcpro gcpro1, gcpro2;
1780 i = validate_interval_range (src, &start, &end, soft);
1781 if (NULL_INTERVAL_P (i))
1782 return Qnil;
1784 CHECK_NUMBER_COERCE_MARKER (pos);
1786 Lisp_Object dest_start, dest_end;
1788 dest_start = pos;
1789 XSETFASTINT (dest_end, XINT (dest_start) + (XINT (end) - XINT (start)));
1790 /* Apply this to a copy of pos; it will try to increment its arguments,
1791 which we don't want. */
1792 validate_interval_range (dest, &dest_start, &dest_end, soft);
1795 s = XINT (start);
1796 e = XINT (end);
1797 p = XINT (pos);
1799 stuff = Qnil;
1801 while (s < e)
1803 e2 = i->position + LENGTH (i);
1804 if (e2 > e)
1805 e2 = e;
1806 len = e2 - s;
1808 plist = i->plist;
1809 if (! NILP (prop))
1810 while (! NILP (plist))
1812 if (EQ (Fcar (plist), prop))
1814 plist = Fcons (prop, Fcons (Fcar (Fcdr (plist)), Qnil));
1815 break;
1817 plist = Fcdr (Fcdr (plist));
1819 if (! NILP (plist))
1821 /* Must defer modifications to the interval tree in case src
1822 and dest refer to the same string or buffer. */
1823 stuff = Fcons (Fcons (make_number (p),
1824 Fcons (make_number (p + len),
1825 Fcons (plist, Qnil))),
1826 stuff);
1829 i = next_interval (i);
1830 if (NULL_INTERVAL_P (i))
1831 break;
1833 p += len;
1834 s = i->position;
1837 GCPRO2 (stuff, dest);
1839 while (! NILP (stuff))
1841 res = Fcar (stuff);
1842 res = Fadd_text_properties (Fcar (res), Fcar (Fcdr (res)),
1843 Fcar (Fcdr (Fcdr (res))), dest);
1844 if (! NILP (res))
1845 modified++;
1846 stuff = Fcdr (stuff);
1849 UNGCPRO;
1851 return modified ? Qt : Qnil;
1855 /* Return a list representing the text properties of OBJECT between
1856 START and END. if PROP is non-nil, report only on that property.
1857 Each result list element has the form (S E PLIST), where S and E
1858 are positions in OBJECT and PLIST is a property list containing the
1859 text properties of OBJECT between S and E. Value is nil if OBJECT
1860 doesn't contain text properties between START and END. */
1862 Lisp_Object
1863 text_property_list (Lisp_Object object, Lisp_Object start, Lisp_Object end, Lisp_Object prop)
1865 struct interval *i;
1866 Lisp_Object result;
1868 result = Qnil;
1870 i = validate_interval_range (object, &start, &end, soft);
1871 if (!NULL_INTERVAL_P (i))
1873 EMACS_INT s = XINT (start);
1874 EMACS_INT e = XINT (end);
1876 while (s < e)
1878 EMACS_INT interval_end, len;
1879 Lisp_Object plist;
1881 interval_end = i->position + LENGTH (i);
1882 if (interval_end > e)
1883 interval_end = e;
1884 len = interval_end - s;
1886 plist = i->plist;
1888 if (!NILP (prop))
1889 for (; CONSP (plist); plist = Fcdr (XCDR (plist)))
1890 if (EQ (XCAR (plist), prop))
1892 plist = Fcons (prop, Fcons (Fcar (XCDR (plist)), Qnil));
1893 break;
1896 if (!NILP (plist))
1897 result = Fcons (Fcons (make_number (s),
1898 Fcons (make_number (s + len),
1899 Fcons (plist, Qnil))),
1900 result);
1902 i = next_interval (i);
1903 if (NULL_INTERVAL_P (i))
1904 break;
1905 s = i->position;
1909 return result;
1913 /* Add text properties to OBJECT from LIST. LIST is a list of triples
1914 (START END PLIST), where START and END are positions and PLIST is a
1915 property list containing the text properties to add. Adjust START
1916 and END positions by DELTA before adding properties. Value is
1917 non-zero if OBJECT was modified. */
1920 add_text_properties_from_list (Lisp_Object object, Lisp_Object list, Lisp_Object delta)
1922 struct gcpro gcpro1, gcpro2;
1923 int modified_p = 0;
1925 GCPRO2 (list, object);
1927 for (; CONSP (list); list = XCDR (list))
1929 Lisp_Object item, start, end, plist, tem;
1931 item = XCAR (list);
1932 start = make_number (XINT (XCAR (item)) + XINT (delta));
1933 end = make_number (XINT (XCAR (XCDR (item))) + XINT (delta));
1934 plist = XCAR (XCDR (XCDR (item)));
1936 tem = Fadd_text_properties (start, end, plist, object);
1937 if (!NILP (tem))
1938 modified_p = 1;
1941 UNGCPRO;
1942 return modified_p;
1947 /* Modify end-points of ranges in LIST destructively, and return the
1948 new list. LIST is a list as returned from text_property_list.
1949 Discard properties that begin at or after NEW_END, and limit
1950 end-points to NEW_END. */
1952 Lisp_Object
1953 extend_property_ranges (Lisp_Object list, Lisp_Object new_end)
1955 Lisp_Object prev = Qnil, head = list;
1956 EMACS_INT max = XINT (new_end);
1958 for (; CONSP (list); prev = list, list = XCDR (list))
1960 Lisp_Object item, beg, end;
1962 item = XCAR (list);
1963 beg = XCAR (item);
1964 end = XCAR (XCDR (item));
1966 if (XINT (beg) >= max)
1968 /* The start-point is past the end of the new string.
1969 Discard this property. */
1970 if (EQ (head, list))
1971 head = XCDR (list);
1972 else
1973 XSETCDR (prev, XCDR (list));
1975 else if (XINT (end) > max)
1976 /* The end-point is past the end of the new string. */
1977 XSETCAR (XCDR (item), new_end);
1980 return head;
1985 /* Call the modification hook functions in LIST, each with START and END. */
1987 static void
1988 call_mod_hooks (Lisp_Object list, Lisp_Object start, Lisp_Object end)
1990 struct gcpro gcpro1;
1991 GCPRO1 (list);
1992 while (!NILP (list))
1994 call2 (Fcar (list), start, end);
1995 list = Fcdr (list);
1997 UNGCPRO;
2000 /* Check for read-only intervals between character positions START ... END,
2001 in BUF, and signal an error if we find one.
2003 Then check for any modification hooks in the range.
2004 Create a list of all these hooks in lexicographic order,
2005 eliminating consecutive extra copies of the same hook. Then call
2006 those hooks in order, with START and END - 1 as arguments. */
2008 void
2009 verify_interval_modification (struct buffer *buf,
2010 EMACS_INT start, EMACS_INT end)
2012 register INTERVAL intervals = BUF_INTERVALS (buf);
2013 register INTERVAL i;
2014 Lisp_Object hooks;
2015 register Lisp_Object prev_mod_hooks;
2016 Lisp_Object mod_hooks;
2017 struct gcpro gcpro1;
2019 hooks = Qnil;
2020 prev_mod_hooks = Qnil;
2021 mod_hooks = Qnil;
2023 interval_insert_behind_hooks = Qnil;
2024 interval_insert_in_front_hooks = Qnil;
2026 if (NULL_INTERVAL_P (intervals))
2027 return;
2029 if (start > end)
2031 EMACS_INT temp = start;
2032 start = end;
2033 end = temp;
2036 /* For an insert operation, check the two chars around the position. */
2037 if (start == end)
2039 INTERVAL prev = NULL;
2040 Lisp_Object before, after;
2042 /* Set I to the interval containing the char after START,
2043 and PREV to the interval containing the char before START.
2044 Either one may be null. They may be equal. */
2045 i = find_interval (intervals, start);
2047 if (start == BUF_BEGV (buf))
2048 prev = 0;
2049 else if (i->position == start)
2050 prev = previous_interval (i);
2051 else if (i->position < start)
2052 prev = i;
2053 if (start == BUF_ZV (buf))
2054 i = 0;
2056 /* If Vinhibit_read_only is set and is not a list, we can
2057 skip the read_only checks. */
2058 if (NILP (Vinhibit_read_only) || CONSP (Vinhibit_read_only))
2060 /* If I and PREV differ we need to check for the read-only
2061 property together with its stickiness. If either I or
2062 PREV are 0, this check is all we need.
2063 We have to take special care, since read-only may be
2064 indirectly defined via the category property. */
2065 if (i != prev)
2067 if (! NULL_INTERVAL_P (i))
2069 after = textget (i->plist, Qread_only);
2071 /* If interval I is read-only and read-only is
2072 front-sticky, inhibit insertion.
2073 Check for read-only as well as category. */
2074 if (! NILP (after)
2075 && NILP (Fmemq (after, Vinhibit_read_only)))
2077 Lisp_Object tem;
2079 tem = textget (i->plist, Qfront_sticky);
2080 if (TMEM (Qread_only, tem)
2081 || (NILP (Fplist_get (i->plist, Qread_only))
2082 && TMEM (Qcategory, tem)))
2083 text_read_only (after);
2087 if (! NULL_INTERVAL_P (prev))
2089 before = textget (prev->plist, Qread_only);
2091 /* If interval PREV is read-only and read-only isn't
2092 rear-nonsticky, inhibit insertion.
2093 Check for read-only as well as category. */
2094 if (! NILP (before)
2095 && NILP (Fmemq (before, Vinhibit_read_only)))
2097 Lisp_Object tem;
2099 tem = textget (prev->plist, Qrear_nonsticky);
2100 if (! TMEM (Qread_only, tem)
2101 && (! NILP (Fplist_get (prev->plist,Qread_only))
2102 || ! TMEM (Qcategory, tem)))
2103 text_read_only (before);
2107 else if (! NULL_INTERVAL_P (i))
2109 after = textget (i->plist, Qread_only);
2111 /* If interval I is read-only and read-only is
2112 front-sticky, inhibit insertion.
2113 Check for read-only as well as category. */
2114 if (! NILP (after) && NILP (Fmemq (after, Vinhibit_read_only)))
2116 Lisp_Object tem;
2118 tem = textget (i->plist, Qfront_sticky);
2119 if (TMEM (Qread_only, tem)
2120 || (NILP (Fplist_get (i->plist, Qread_only))
2121 && TMEM (Qcategory, tem)))
2122 text_read_only (after);
2124 tem = textget (prev->plist, Qrear_nonsticky);
2125 if (! TMEM (Qread_only, tem)
2126 && (! NILP (Fplist_get (prev->plist, Qread_only))
2127 || ! TMEM (Qcategory, tem)))
2128 text_read_only (after);
2133 /* Run both insert hooks (just once if they're the same). */
2134 if (!NULL_INTERVAL_P (prev))
2135 interval_insert_behind_hooks
2136 = textget (prev->plist, Qinsert_behind_hooks);
2137 if (!NULL_INTERVAL_P (i))
2138 interval_insert_in_front_hooks
2139 = textget (i->plist, Qinsert_in_front_hooks);
2141 else
2143 /* Loop over intervals on or next to START...END,
2144 collecting their hooks. */
2146 i = find_interval (intervals, start);
2149 if (! INTERVAL_WRITABLE_P (i))
2150 text_read_only (textget (i->plist, Qread_only));
2152 if (!inhibit_modification_hooks)
2154 mod_hooks = textget (i->plist, Qmodification_hooks);
2155 if (! NILP (mod_hooks) && ! EQ (mod_hooks, prev_mod_hooks))
2157 hooks = Fcons (mod_hooks, hooks);
2158 prev_mod_hooks = mod_hooks;
2162 i = next_interval (i);
2164 /* Keep going thru the interval containing the char before END. */
2165 while (! NULL_INTERVAL_P (i) && i->position < end);
2167 if (!inhibit_modification_hooks)
2169 GCPRO1 (hooks);
2170 hooks = Fnreverse (hooks);
2171 while (! EQ (hooks, Qnil))
2173 call_mod_hooks (Fcar (hooks), make_number (start),
2174 make_number (end));
2175 hooks = Fcdr (hooks);
2177 UNGCPRO;
2182 /* Run the interval hooks for an insertion on character range START ... END.
2183 verify_interval_modification chose which hooks to run;
2184 this function is called after the insertion happens
2185 so it can indicate the range of inserted text. */
2187 void
2188 report_interval_modification (Lisp_Object start, Lisp_Object end)
2190 if (! NILP (interval_insert_behind_hooks))
2191 call_mod_hooks (interval_insert_behind_hooks, start, end);
2192 if (! NILP (interval_insert_in_front_hooks)
2193 && ! EQ (interval_insert_in_front_hooks,
2194 interval_insert_behind_hooks))
2195 call_mod_hooks (interval_insert_in_front_hooks, start, end);
2198 void
2199 syms_of_textprop (void)
2201 DEFVAR_LISP ("default-text-properties", Vdefault_text_properties,
2202 doc: /* Property-list used as default values.
2203 The value of a property in this list is seen as the value for every
2204 character that does not have its own value for that property. */);
2205 Vdefault_text_properties = Qnil;
2207 DEFVAR_LISP ("char-property-alias-alist", Vchar_property_alias_alist,
2208 doc: /* Alist of alternative properties for properties without a value.
2209 Each element should look like (PROPERTY ALTERNATIVE1 ALTERNATIVE2...).
2210 If a piece of text has no direct value for a particular property, then
2211 this alist is consulted. If that property appears in the alist, then
2212 the first non-nil value from the associated alternative properties is
2213 returned. */);
2214 Vchar_property_alias_alist = Qnil;
2216 DEFVAR_LISP ("inhibit-point-motion-hooks", Vinhibit_point_motion_hooks,
2217 doc: /* If non-nil, don't run `point-left' and `point-entered' text properties.
2218 This also inhibits the use of the `intangible' text property. */);
2219 Vinhibit_point_motion_hooks = Qnil;
2221 DEFVAR_LISP ("text-property-default-nonsticky",
2222 Vtext_property_default_nonsticky,
2223 doc: /* Alist of properties vs the corresponding non-stickinesses.
2224 Each element has the form (PROPERTY . NONSTICKINESS).
2226 If a character in a buffer has PROPERTY, new text inserted adjacent to
2227 the character doesn't inherit PROPERTY if NONSTICKINESS is non-nil,
2228 inherits it if NONSTICKINESS is nil. The `front-sticky' and
2229 `rear-nonsticky' properties of the character override NONSTICKINESS. */);
2230 /* Text property `syntax-table' should be nonsticky by default. */
2231 Vtext_property_default_nonsticky
2232 = Fcons (Fcons (intern_c_string ("syntax-table"), Qt), Qnil);
2234 staticpro (&interval_insert_behind_hooks);
2235 staticpro (&interval_insert_in_front_hooks);
2236 interval_insert_behind_hooks = Qnil;
2237 interval_insert_in_front_hooks = Qnil;
2240 /* Common attributes one might give text */
2242 staticpro (&Qforeground);
2243 Qforeground = intern_c_string ("foreground");
2244 staticpro (&Qbackground);
2245 Qbackground = intern_c_string ("background");
2246 staticpro (&Qfont);
2247 Qfont = intern_c_string ("font");
2248 staticpro (&Qstipple);
2249 Qstipple = intern_c_string ("stipple");
2250 staticpro (&Qunderline);
2251 Qunderline = intern_c_string ("underline");
2252 staticpro (&Qread_only);
2253 Qread_only = intern_c_string ("read-only");
2254 staticpro (&Qinvisible);
2255 Qinvisible = intern_c_string ("invisible");
2256 staticpro (&Qintangible);
2257 Qintangible = intern_c_string ("intangible");
2258 staticpro (&Qcategory);
2259 Qcategory = intern_c_string ("category");
2260 staticpro (&Qlocal_map);
2261 Qlocal_map = intern_c_string ("local-map");
2262 staticpro (&Qfront_sticky);
2263 Qfront_sticky = intern_c_string ("front-sticky");
2264 staticpro (&Qrear_nonsticky);
2265 Qrear_nonsticky = intern_c_string ("rear-nonsticky");
2266 staticpro (&Qmouse_face);
2267 Qmouse_face = intern_c_string ("mouse-face");
2268 staticpro (&Qminibuffer_prompt);
2269 Qminibuffer_prompt = intern_c_string ("minibuffer-prompt");
2271 /* Properties that text might use to specify certain actions */
2273 staticpro (&Qmouse_left);
2274 Qmouse_left = intern_c_string ("mouse-left");
2275 staticpro (&Qmouse_entered);
2276 Qmouse_entered = intern_c_string ("mouse-entered");
2277 staticpro (&Qpoint_left);
2278 Qpoint_left = intern_c_string ("point-left");
2279 staticpro (&Qpoint_entered);
2280 Qpoint_entered = intern_c_string ("point-entered");
2282 defsubr (&Stext_properties_at);
2283 defsubr (&Sget_text_property);
2284 defsubr (&Sget_char_property);
2285 defsubr (&Sget_char_property_and_overlay);
2286 defsubr (&Snext_char_property_change);
2287 defsubr (&Sprevious_char_property_change);
2288 defsubr (&Snext_single_char_property_change);
2289 defsubr (&Sprevious_single_char_property_change);
2290 defsubr (&Snext_property_change);
2291 defsubr (&Snext_single_property_change);
2292 defsubr (&Sprevious_property_change);
2293 defsubr (&Sprevious_single_property_change);
2294 defsubr (&Sadd_text_properties);
2295 defsubr (&Sput_text_property);
2296 defsubr (&Sset_text_properties);
2297 defsubr (&Sremove_text_properties);
2298 defsubr (&Sremove_list_of_text_properties);
2299 defsubr (&Stext_property_any);
2300 defsubr (&Stext_property_not_all);