]> git.eshelyaron.com Git - emacs.git/commitdiff
(store_mode_line_string): Lisp_Object/int mixup.
authorKen Raeburn <raeburn@raeburn.org>
Sat, 29 Jun 2002 19:52:14 +0000 (19:52 +0000)
committerKen Raeburn <raeburn@raeburn.org>
Sat, 29 Jun 2002 19:52:14 +0000 (19:52 +0000)
src/ChangeLog
src/xdisp.c

index b7a6e0f9111c6de24fd2e5a366a6c00b3b9f81e6..15e57c464b1cc1a9ccbc9ee876844c64f1bbaefc 100644 (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
index afcce0b7b9fe039026c91e74744890c42d0abb6d..066f4fa0027c6ac8bbcf25d7ef01b133440dcb67 100644 (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;