aboutsummaryrefslogtreecommitdiffstats
path: root/src/term.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/term.c')
-rw-r--r--src/term.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/term.c b/src/term.c
index 4d73f896d21..f24caeffebb 100644
--- a/src/term.c
+++ b/src/term.c
@@ -2209,11 +2209,10 @@ set_tty_color_mode (struct tty_display_info *tty, struct frame *f)
2209 2209
2210 if (mode != tty->previous_color_mode) 2210 if (mode != tty->previous_color_mode)
2211 { 2211 {
2212 Lisp_Object funsym = intern ("tty-set-up-initial-frame-faces");
2213 tty->previous_color_mode = mode; 2212 tty->previous_color_mode = mode;
2214 tty_setup_colors (tty , mode); 2213 tty_setup_colors (tty , mode);
2215 /* This recomputes all the faces given the new color definitions. */ 2214 /* This recomputes all the faces given the new color definitions. */
2216 safe_call (1, &funsym); 2215 safe_call (1, intern ("tty-set-up-initial-frame-faces"));
2217 } 2216 }
2218} 2217}
2219 2218