diff options
| author | Andreas Schwab | 2003-01-24 19:15:14 +0000 |
|---|---|---|
| committer | Andreas Schwab | 2003-01-24 19:15:14 +0000 |
| commit | 1a9e275b0e18e956fcddcb5cd6718e6f5aefbb31 (patch) | |
| tree | c33ae6b80d7e9cd14669aff28db674b0c31a7703 /src | |
| parent | f25dcaa0bbe8f1764fb93ff0e2ad1eaf9a779c1c (diff) | |
| download | emacs-1a9e275b0e18e956fcddcb5cd6718e6f5aefbb31.tar.gz emacs-1a9e275b0e18e956fcddcb5cd6718e6f5aefbb31.zip | |
(Fminibuffer_message): Verify type of parameter.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/minibuf.c | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 66f485e8de9..b7c833928ba 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2003-01-24 Andreas Schwab <schwab@suse.de> | ||
| 2 | |||
| 3 | * minibuf.c (Fminibuffer_message): Verify type of parameter. | ||
| 4 | |||
| 1 | 2003-01-24 Jan D. <jan.h.d@swipnet.se> | 5 | 2003-01-24 Jan D. <jan.h.d@swipnet.se> |
| 2 | 6 | ||
| 3 | * gtkutil.c (xg_initialize): Initialize id_to_widget here instead | 7 | * gtkutil.c (xg_initialize): Initialize id_to_widget here instead |
diff --git a/src/minibuf.c b/src/minibuf.c index 160b36188e7..ff4c21c3f03 100644 --- a/src/minibuf.c +++ b/src/minibuf.c | |||
| @@ -1,6 +1,6 @@ | |||
| 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 | ||
| @@ -2431,6 +2431,7 @@ 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 | } |