# HG changeset patch # User Jim Blandy # Date 741970468 0 # Node ID 98eb9ca25031a88e77376664d97feb437e5d7eb1 # Parent da8962f65741ed33df89f030950464e1966395d3 * 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. diff -r da8962f65741 -r 98eb9ca25031 src/intervals.h --- a/src/intervals.h Tue Jul 06 14:53:54 1993 +0000 +++ b/src/intervals.h Tue Jul 06 14:54:28 1993 +0000 @@ -201,6 +201,7 @@ extern Lisp_Object Fnext_property_change (), Fprevious_property_change (); extern Lisp_Object Fadd_text_properties (), Fset_text_properties (); extern Lisp_Object Fremove_text_properties (), Ferase_text_properties (); +extern Lisp_Object copy_text_properties (); extern void syms_of_textprop ();