From: Gerd Moellmann Date: Thu, 21 Dec 2000 20:40:40 +0000 (+0000) Subject: (Fcall_interactively): Prevent a compiler warning. X-Git-Tag: emacs-pretest-21.0.95~333 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4f8959185a33b31ae2f2a4b182172d0d6f0a42c4;p=emacs.git (Fcall_interactively): Prevent a compiler warning. --- diff --git a/src/callint.c b/src/callint.c index 5289bfa3853..df3ada4f04a 100644 --- a/src/callint.c +++ b/src/callint.c @@ -1,5 +1,6 @@ /* Call a Lisp function interactively. - Copyright (C) 1985, 86, 93, 94, 95, 1997 Free Software Foundation, Inc. + Copyright (C) 1985, 86, 93, 94, 95, 1997, 2000 + Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -236,6 +237,8 @@ supply if the command inquires which events were used to invoke it.") if (SYMBOLP (function)) enable = Fget (function, Qenable_recursive_minibuffers); + else + enable = Qnil; fun = indirect_function (function);