aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1997-09-03 16:20:47 +0000
committerRichard M. Stallman1997-09-03 16:20:47 +0000
commit6801b30063113396dc7731c99a564f6b39348156 (patch)
treef65703a82da34f0d0aaa87a95cecd7920f7057ee /src
parent14fc129a86b79504e3df938cd4eeda88af0e29c6 (diff)
downloademacs-6801b30063113396dc7731c99a564f6b39348156.tar.gz
emacs-6801b30063113396dc7731c99a564f6b39348156.zip
(read_minibuf): Fix use of Ffboundp.
Diffstat (limited to 'src')
-rw-r--r--src/minibuf.c5
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 @@
1/* Minibuffer input and completion. 1/* Minibuffer input and completion.
2 Copyright (C) 1985, 1986, 93, 94, 95, 1996 Free Software Foundation, Inc. 2 Copyright (C) 1985, 1986, 1993, 1994, 1995, 1996, 1997
3 Free Software Foundation, Inc.
3 4
4This file is part of GNU Emacs. 5This file is part of GNU Emacs.
5 6
@@ -376,7 +377,7 @@ read_minibuf (map, initial, prompt, backup_n, expflag,
376 current_buffer->keymap = map; 377 current_buffer->keymap = map;
377 378
378 /* Turn on an input method stored in INPUT_METHOD if any. */ 379 /* Turn on an input method stored in INPUT_METHOD if any. */
379 if (STRINGP (input_method) && Ffboundp (Qactivate_input_method)) 380 if (STRINGP (input_method) && !NILP (Ffboundp (Qactivate_input_method)))
380 call1 (Qactivate_input_method, input_method); 381 call1 (Qactivate_input_method, input_method);
381 382
382 /* If appropriate, copy enable-multibyte-characters into the minibuffer. */ 383 /* If appropriate, copy enable-multibyte-characters into the minibuffer. */