diff options
| author | Richard M. Stallman | 1996-02-10 08:58:49 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-02-10 08:58:49 +0000 |
| commit | 64db13070cf0a4a4d3dd1a107d07bf9bed99f02f (patch) | |
| tree | b3a6c83a5ba7319fb974b9b4d62325f014ca7c45 /src/textprop.c | |
| parent | ba8dfba86d49b44c07256c8034a8f19104033b4b (diff) | |
| download | emacs-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.c | 2 |
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 | } |