aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2000-12-21 20:40:40 +0000
committerGerd Moellmann2000-12-21 20:40:40 +0000
commit4f8959185a33b31ae2f2a4b182172d0d6f0a42c4 (patch)
tree758609a719553f4c3c9e365f60211aab825aec1f /src
parentee5263afa850a8ce859b1350ea54344d9c1d472e (diff)
downloademacs-4f8959185a33b31ae2f2a4b182172d0d6f0a42c4.tar.gz
emacs-4f8959185a33b31ae2f2a4b182172d0d6f0a42c4.zip
(Fcall_interactively): Prevent a compiler warning.
Diffstat (limited to 'src')
-rw-r--r--src/callint.c5
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 @@
1/* Call a Lisp function interactively. 1/* Call a Lisp function interactively.
2 Copyright (C) 1985, 86, 93, 94, 95, 1997 Free Software Foundation, Inc. 2 Copyright (C) 1985, 86, 93, 94, 95, 1997, 2000
3 Free Software Foundation, Inc.
3 4
4This file is part of GNU Emacs. 5This file is part of GNU Emacs.
5 6
@@ -236,6 +237,8 @@ supply if the command inquires which events were used to invoke it.")
236 237
237 if (SYMBOLP (function)) 238 if (SYMBOLP (function))
238 enable = Fget (function, Qenable_recursive_minibuffers); 239 enable = Fget (function, Qenable_recursive_minibuffers);
240 else
241 enable = Qnil;
239 242
240 fun = indirect_function (function); 243 fun = indirect_function (function);
241 244