diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-09-03 16:20:47 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-09-03 16:20:47 +0000 |
commit | 9496dea1e65d5fe30a8666cbb895d55da6b03c46 (patch) | |
tree | a5a443ed112f7be9a81a61f938c47e8d057b81ad /src | |
parent | b7d4105c1eef2afe1698fd0685e6baaca3e27210 (diff) | |
download | emacs-9496dea1e65d5fe30a8666cbb895d55da6b03c46.tar.gz |
(read_minibuf): Fix use of Ffboundp.
Diffstat (limited to 'src')
-rw-r--r-- | src/minibuf.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/minibuf.c b/src/minibuf.c index f96589533d2..f54bea2a84c 100644 --- a/src/minibuf.c +++ b/src/minibuf.c @@ -1,5 +1,6 @@ /* Minibuffer input and completion. - Copyright (C) 1985, 1986, 93, 94, 95, 1996 Free Software Foundation, Inc. + Copyright (C) 1985, 1986, 1993, 1994, 1995, 1996, 1997 + Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -376,7 +377,7 @@ read_minibuf (map, initial, prompt, backup_n, expflag, current_buffer->keymap = map; /* Turn on an input method stored in INPUT_METHOD if any. */ - if (STRINGP (input_method) && Ffboundp (Qactivate_input_method)) + if (STRINGP (input_method) && !NILP (Ffboundp (Qactivate_input_method))) call1 (Qactivate_input_method, input_method); /* If appropriate, copy enable-multibyte-characters into the minibuffer. */ |