From 1b7541cc216b277fdb9a9023ce041b77f2d72c5b Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 10 Feb 1996 08:58:49 +0000 Subject: (Fadd_text_properties): Don't return without ungcpro. --- src/textprop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- cgit v1.2.1