]> code.delx.au - gnu-emacs/commitdiff
(read_minibuf): Fix use of Ffboundp.
authorRichard M. Stallman <rms@gnu.org>
Wed, 3 Sep 1997 16:20:47 +0000 (16:20 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 3 Sep 1997 16:20:47 +0000 (16:20 +0000)
src/minibuf.c

index f96589533d2ec66dc4b2c68cf64a9eb0a11dab64..f54bea2a84c67f6e50e19ccd6183ceb0c831bd91 100644 (file)
@@ -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.  */