+2003-01-24 Andreas Schwab <schwab@suse.de>
+
+ * minibuf.c (Fminibuffer_message): Verify type of parameter.
+
2003-01-21 Richard Dawe <rich@phekda.freeserve.co.uk> (tiny change)
* Makefile.in (ALL_CFLAGS): Include MYCPPFLAGS, not MYCPPFLAG.
/* 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.
(string)
Lisp_Object string;
{
+ CHECK_STRING (string, 0);
temp_echo_area_glyphs (XSTRING (string)->data);
return Qnil;
}