(store_mode_line_string): Lisp_Object/int mixup.

This commit is contained in:
Ken Raeburn 2002-06-29 19:52:14 +00:00
parent eb14066a0b
commit c822432571
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2002-06-29 Ken Raeburn <raeburn@gnu.org>
* xdisp.c (store_mode_line_string): Lisp_Object/int mixup.
2002-06-28 Jan D. <jan.h.d@swipnet.se>
* keyboard.c (readable_filtered_events): New function that filters

View file

@ -14104,7 +14104,7 @@ static int store_mode_line_string (string, lisp_string, copy_string, field_width
}
else
{
len = Flength (lisp_string);
len = XFASTINT (Flength (lisp_string));
if (precision > 0 && len > precision)
{
len = precision;