changeset 19728:6fad157cece4

(read_minibuf): Fix use of Ffboundp.
author Richard M. Stallman <rms@gnu.org>
date Wed, 03 Sep 1997 16:20:47 +0000
parents 546bbd73087a
children fce71d3f95b1
files src/minibuf.c
diffstat 1 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/minibuf.c	Wed Sep 03 07:44:21 1997 +0000
+++ b/src/minibuf.c	Wed Sep 03 16:20:47 1997 +0000
@@ -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 @@
   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.  */