summaryrefslogtreecommitdiff
path: root/src/fns.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1999-01-06 23:55:31 +0000
committerRichard M. Stallman <rms@gnu.org>1999-01-06 23:55:31 +0000
commit41857307a664323538feb4e301dbd9b44020ccbd (patch)
treee74e4c3e805cba5a233d8f31b39946aef1026bf1 /src/fns.c
parente83f6bb0746d9c18016e5eb31259b0fb3eba4d6c (diff)
downloademacs-41857307a664323538feb4e301dbd9b44020ccbd.tar.gz
(Frequire): Don't fail to unbind bindings.
Diffstat (limited to 'src/fns.c')
-rw-r--r--src/fns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fns.c b/src/fns.c
index 53f980c1e97..ffe2b156712 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -2654,7 +2654,7 @@ Normally the return value is FEATURE.")
noerror, Qt, Qnil, (NILP (file_name) ? Qt : Qnil));
/* If load failed entirely, return nil. */
if (NILP (tem))
- return Qnil;
+ return unbind_to (count, Qnil);
tem = Fmemq (feature, Vfeatures);
if (NILP (tem))