Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
58bd8318
Commit
58bd8318
authored
Aug 26, 2002
by
Kim F. Storm
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(make_terminal_frame) [CANNOT_DUMP]: Initialize
foreground and background colors. From Joe Buehler (tiny change).
parent
e494eee5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
src/frame.c
src/frame.c
+4
-0
No files found.
src/frame.c
View file @
58bd8318
...
...
@@ -490,6 +490,10 @@ make_terminal_frame ()
make_mac_terminal_frame
(
f
);
#else
f
->
output_data
.
x
=
&
tty_display
;
#ifdef CANNOT_DUMP
FRAME_FOREGROUND_PIXEL
(
f
)
=
FACE_TTY_DEFAULT_FG_COLOR
;
FRAME_BACKGROUND_PIXEL
(
f
)
=
FACE_TTY_DEFAULT_BG_COLOR
;
#endif
#endif
/* MAC_OS8 */
#endif
/* WINDOWSNT */
#endif
/* MSDOS */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment