(Fminibuffer_message): Verify type of parameter.

This commit is contained in:
Andreas Schwab 2003-01-24 19:15:14 +00:00
parent f25dcaa0bb
commit 1a9e275b0e
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2003-01-24 Andreas Schwab <schwab@suse.de>
* minibuf.c (Fminibuffer_message): Verify type of parameter.
2003-01-24 Jan D. <jan.h.d@swipnet.se>
* gtkutil.c (xg_initialize): Initialize id_to_widget here instead

View file

@ -1,6 +1,6 @@
/* Minibuffer input and completion.
Copyright (C) 1985, 1986, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
2000, 2001 Free Software Foundation, Inc.
2000, 2001, 2003 Free Software Foundation, Inc.
This file is part of GNU Emacs.
@ -2431,6 +2431,7 @@ or until the next input event arrives, whichever comes first. */)
(string)
Lisp_Object string;
{
CHECK_STRING (string);
temp_echo_area_glyphs (SDATA (string));
return Qnil;
}