aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1995-03-15 01:50:20 +0000
committerKarl Heuer1995-03-15 01:50:20 +0000
commitc3ada74f7865aa4f53cf7f16075fc164be729380 (patch)
treed5371b5b9a8409b187c3436efcb45cefdfa36c3d /src
parentfb917148ce7aa109dd9ae082ce9edeb5de93b40a (diff)
downloademacs-c3ada74f7865aa4f53cf7f16075fc164be729380.tar.gz
emacs-c3ada74f7865aa4f53cf7f16075fc164be729380.zip
(display_mode_line): Rename perdisplay to kboard.
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index 4fa1c4a909f..e6b4021e1fd 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -2966,18 +2966,18 @@ display_mode_line (w)
2966 w->column_number_displayed = Qnil; 2966 w->column_number_displayed = Qnil;
2967 2967
2968 get_display_line (f, vpos, left); 2968 get_display_line (f, vpos, left);
2969#ifdef MULTI_PERDISPLAY 2969#ifdef MULTI_KBOARD
2970 { 2970 {
2971 /* Sigh, mode-line-format can reference display-local variables like 2971 /* Sigh, mode-line-format can reference kboard-local variables like
2972 defining-kbd-macro. Use the one associated with the frame we're 2972 defining-kbd-macro. Use the one associated with the frame we're
2973 updating. */ 2973 updating. */
2974 PERDISPLAY *orig_perdisplay = current_perdisplay; 2974 KBOARD *orig_kboard = current_kboard;
2975 current_perdisplay = get_perdisplay (f); 2975 current_kboard = FRAME_KBOARD (f);
2976#endif 2976#endif
2977 display_mode_element (w, vpos, left, 0, right, right, 2977 display_mode_element (w, vpos, left, 0, right, right,
2978 current_buffer->mode_line_format); 2978 current_buffer->mode_line_format);
2979#ifdef MULTI_PERDISPLAY 2979#ifdef MULTI_KBOARD
2980 current_perdisplay = orig_perdisplay; 2980 current_kboard = orig_kboard;
2981 } 2981 }
2982#endif 2982#endif
2983 FRAME_DESIRED_GLYPHS (f)->bufp[vpos] = 0; 2983 FRAME_DESIRED_GLYPHS (f)->bufp[vpos] = 0;