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 | 6801b30063113396dc7731c99a564f6b39348156 (patch) | |
| tree | f65703a82da34f0d0aaa87a95cecd7920f7057ee /src | |
| parent | 14fc129a86b79504e3df938cd4eeda88af0e29c6 (diff) | |
| download | emacs-6801b30063113396dc7731c99a564f6b39348156.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. */ |
