# HG changeset patch # User Richard M. Stallman # Date 873303647 0 # Node ID 6fad157cece4df232b06728e50ba8f80aed246ae # Parent 546bbd73087a98be93672ce48c1f27e74c1beafe (read_minibuf): Fix use of Ffboundp. diff -r 546bbd73087a -r 6fad157cece4 src/minibuf.c --- 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. */