summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-02-10 08:58:49 +0000
committerRichard M. Stallman <rms@gnu.org>1996-02-10 08:58:49 +0000
commit1b7541cc216b277fdb9a9023ce041b77f2d72c5b (patch)
treedd59b5712dc9b6456550ad3b749e459a4ae064b8
parentc9807d950a2b30b89df8f20c6e7a589b87451340 (diff)
downloademacs-1b7541cc216b277fdb9a9023ce041b77f2d72c5b.tar.gz
(Fadd_text_properties): Don't return without ungcpro.
-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.")
{
int got = (LENGTH (i) - (s - i->position));
if (got >= len)
- return Qnil;
+ RETURN_UNGCPRO (Qnil);
len -= got;
i = next_interval (i);
}