comparison src/minibuf.c @ 49422:2123804d2bca

(Fminibuffer_message): Verify type of parameter.
author Andreas Schwab <schwab@suse.de>
date Fri, 24 Jan 2003 19:15:05 +0000
parents f3184bd36737
children 98fb19f9d8d3 d7ddb3e565de
comparison
equal deleted inserted replaced
49421:381ccbf15cd9 49422:2123804d2bca
1 /* Minibuffer input and completion. 1 /* Minibuffer input and completion.
2 Copyright (C) 1985, 1986, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2 Copyright (C) 1985, 1986, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
3 2000, 2001 Free Software Foundation, Inc. 3 2000, 2001, 2003 Free Software Foundation, Inc.
4 4
5 This file is part of GNU Emacs. 5 This file is part of GNU Emacs.
6 6
7 GNU Emacs is free software; you can redistribute it and/or modify 7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by 8 it under the terms of the GNU General Public License as published by
2429 The text is displayed for two seconds, 2429 The text is displayed for two seconds,
2430 or until the next input event arrives, whichever comes first. */) 2430 or until the next input event arrives, whichever comes first. */)
2431 (string) 2431 (string)
2432 Lisp_Object string; 2432 Lisp_Object string;
2433 { 2433 {
2434 CHECK_STRING (string);
2434 temp_echo_area_glyphs (SDATA (string)); 2435 temp_echo_area_glyphs (SDATA (string));
2435 return Qnil; 2436 return Qnil;
2436 } 2437 }
2437 2438
2438 void 2439 void