diff options
author | Gerd Moellmann <gerd@gnu.org> | 2000-12-21 20:40:40 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2000-12-21 20:40:40 +0000 |
commit | 4f8959185a33b31ae2f2a4b182172d0d6f0a42c4 (patch) | |
tree | 758609a719553f4c3c9e365f60211aab825aec1f /src/callint.c | |
parent | ee5263afa850a8ce859b1350ea54344d9c1d472e (diff) | |
download | emacs-4f8959185a33b31ae2f2a4b182172d0d6f0a42c4.tar.gz |
(Fcall_interactively): Prevent a compiler warning.
Diffstat (limited to 'src/callint.c')
-rw-r--r-- | src/callint.c | 5 |
1 files changed, 4 insertions, 1 deletions
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); |