aboutsummaryrefslogtreecommitdiffstats
path: root/src/textprop.c
diff options
context:
space:
mode:
authorRichard M. Stallman1996-02-10 08:58:49 +0000
committerRichard M. Stallman1996-02-10 08:58:49 +0000
commit64db13070cf0a4a4d3dd1a107d07bf9bed99f02f (patch)
treeb3a6c83a5ba7319fb974b9b4d62325f014ca7c45 /src/textprop.c
parentba8dfba86d49b44c07256c8034a8f19104033b4b (diff)
downloademacs-64db13070cf0a4a4d3dd1a107d07bf9bed99f02f.tar.gz
emacs-64db13070cf0a4a4d3dd1a107d07bf9bed99f02f.zip
(Fadd_text_properties): Don't return without ungcpro.
Diffstat (limited to 'src/textprop.c')
-rw-r--r--src/textprop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/textprop.c b/src/textprop.c
index 5f249b59b99..5e9daf99fd0 100644
--- a/src/textprop.c
+++ b/src/textprop.c
@@ -885,7 +885,7 @@ Return t if any property value actually changed, nil otherwise.")
885 { 885 {
886 int got = (LENGTH (i) - (s - i->position)); 886 int got = (LENGTH (i) - (s - i->position));
887 if (got >= len) 887 if (got >= len)
888 return Qnil; 888 RETURN_UNGCPRO (Qnil);
889 len -= got; 889 len -= got;
890 i = next_interval (i); 890 i = next_interval (i);
891 } 891 }