From: Richard M. Stallman Date: Wed, 6 Jan 1999 23:55:31 +0000 (+0000) Subject: (Frequire): Don't fail to unbind bindings. X-Git-Tag: emacs-20.4~933 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=41857307a664323538feb4e301dbd9b44020ccbd;p=emacs.git (Frequire): Don't fail to unbind bindings. --- 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))