aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/xdisp.c3
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index cb0975d52bf..54e46245d30 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12002-03-13 Stefan Monnier <monnier@cs.yale.edu>
2
3 * xdisp.c (display_mode_element): Fix int/Lisp_Object mixup.
4
12002-03-13 Kim F. Storm <storm@cua.dk> 52002-03-13 Kim F. Storm <storm@cua.dk>
2 6
3 * puresize.h (BASE_PURESIZE): Increase to 775000. 7 * puresize.h (BASE_PURESIZE): Increase to 775000.
diff --git a/src/xdisp.c b/src/xdisp.c
index 4760893d284..6ac581914a7 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -13640,7 +13640,8 @@ display_mode_element (it, depth, field_width, precision, elt, props)
13640 else 13640 else
13641 { 13641 {
13642 elt = Fcopy_sequence (elt); 13642 elt = Fcopy_sequence (elt);
13643 Fset_text_properties (0, Flength (elt), props, elt); 13643 Fset_text_properties (make_number (0), Flength (elt),
13644 props, elt);
13644 mode_line_proptrans_alist 13645 mode_line_proptrans_alist
13645 = Fcons (Fcons (elt, props), 13646 = Fcons (Fcons (elt, props),
13646 mode_line_proptrans_alist); 13647 mode_line_proptrans_alist);