diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2019-12-14 14:13:10 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2019-12-14 14:22:35 -0800 |
commit | bb42f6ef10cb250a9263b17a8794e950a563d5d0 (patch) | |
tree | 9db1aead15c3e08e640f9342de6c15e5d9eabf7c /src/frame.c | |
parent | a01a7222829682962a229e26688a4d44829b6d5f (diff) | |
download | emacs-bb42f6ef10cb250a9263b17a8794e950a563d5d0.tar.gz emacs-bb42f6ef10cb250a9263b17a8794e950a563d5d0.tar.bz2 emacs-bb42f6ef10cb250a9263b17a8794e950a563d5d0.zip |
Remove nothing from union output_data
* src/frame.h (union output_data): Remove ‘nothing’ member.
It has had no effect for quite some time.
All uses removed.
Diffstat (limited to 'src/frame.c')
-rw-r--r-- | src/frame.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/frame.c b/src/frame.c index 5468920c357..df4c98c6145 100644 --- a/src/frame.c +++ b/src/frame.c @@ -1115,7 +1115,6 @@ make_initial_frame (void) f->output_method = terminal->type; f->terminal = terminal; f->terminal->reference_count++; - f->output_data.nothing = 0; FRAME_FOREGROUND_PIXEL (f) = FACE_TTY_DEFAULT_FG_COLOR; FRAME_BACKGROUND_PIXEL (f) = FACE_TTY_DEFAULT_BG_COLOR; @@ -2136,7 +2135,6 @@ delete_frame (Lisp_Object frame, Lisp_Object force) if (FRAME_TERMINAL (f)->delete_frame_hook) (*FRAME_TERMINAL (f)->delete_frame_hook) (f); terminal = FRAME_TERMINAL (f); - f->output_data.nothing = 0; f->terminal = 0; /* Now the frame is dead. */ unblock_input (); |