diff options
| author | Jim Blandy | 1993-07-06 14:54:28 +0000 |
|---|---|---|
| committer | Jim Blandy | 1993-07-06 14:54:28 +0000 |
| commit | 15e92abada1c887a3692912dceb8bfeb3bfbfd10 (patch) | |
| tree | 573691faccc022888266ccc9a1ef4c2ccc442512 | |
| parent | 24e3d3bf9eba91c26528d7507b1bb614ff3bb7c7 (diff) | |
| download | emacs-15e92abada1c887a3692912dceb8bfeb3bfbfd10.tar.gz emacs-15e92abada1c887a3692912dceb8bfeb3bfbfd10.zip | |
* textprop.c (copy_text_properties): New function, from David
Gillespie.
* intervals.h: Declare copy_text_properties.
* fns.c: #include "intervals.h".
(Fsubstring): Copy text properties to result string.
(concat): Copy text properties to result string.
* ymakefile (fns.o): Note that this depends on INTERVAL_SRC.
| -rw-r--r-- | src/intervals.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/intervals.h b/src/intervals.h index 7a6c91064fd..16202499b50 100644 --- a/src/intervals.h +++ b/src/intervals.h | |||
| @@ -201,6 +201,7 @@ extern Lisp_Object Ftext_properties_at (); | |||
| 201 | extern Lisp_Object Fnext_property_change (), Fprevious_property_change (); | 201 | extern Lisp_Object Fnext_property_change (), Fprevious_property_change (); |
| 202 | extern Lisp_Object Fadd_text_properties (), Fset_text_properties (); | 202 | extern Lisp_Object Fadd_text_properties (), Fset_text_properties (); |
| 203 | extern Lisp_Object Fremove_text_properties (), Ferase_text_properties (); | 203 | extern Lisp_Object Fremove_text_properties (), Ferase_text_properties (); |
| 204 | extern Lisp_Object copy_text_properties (); | ||
| 204 | 205 | ||
| 205 | extern void syms_of_textprop (); | 206 | extern void syms_of_textprop (); |
| 206 | 207 | ||