diff options
| author | Joakim Verona | 2012-07-31 00:00:41 +0200 |
|---|---|---|
| committer | Joakim Verona | 2012-07-31 00:00:41 +0200 |
| commit | 55fa71b3d9bb8609ca3cbb56f92c776ad8724a69 (patch) | |
| tree | b002fe941cc8636f8bd735717e440014359839dd /src/term.c | |
| parent | 5fb63197843dcae66f2fe0ddd6f4a9d560e9db2f (diff) | |
| parent | b429a4eee4e09b1ba09e17ced5091d042955d84f (diff) | |
| download | emacs-55fa71b3d9bb8609ca3cbb56f92c776ad8724a69.tar.gz emacs-55fa71b3d9bb8609ca3cbb56f92c776ad8724a69.zip | |
upstream
Diffstat (limited to 'src/term.c')
| -rw-r--r-- | src/term.c | 3 |
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 | ||