1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-07 16:10:46 -08:00

(display_mode_element): Fix int/Lisp_Object mixup.

This commit is contained in:
Stefan Monnier 2002-03-13 14:17:16 +00:00
parent 98243275fc
commit dc3b2c8b61
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2002-03-13 Stefan Monnier <monnier@cs.yale.edu>
* xdisp.c (display_mode_element): Fix int/Lisp_Object mixup.
2002-03-13 Kim F. Storm <storm@cua.dk>
* puresize.h (BASE_PURESIZE): Increase to 775000.

View file

@ -13640,7 +13640,8 @@ display_mode_element (it, depth, field_width, precision, elt, props)
else
{
elt = Fcopy_sequence (elt);
Fset_text_properties (0, Flength (elt), props, elt);
Fset_text_properties (make_number (0), Flength (elt),
props, elt);
mode_line_proptrans_alist
= Fcons (Fcons (elt, props),
mode_line_proptrans_alist);