diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-04-10 07:47:42 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-04-10 07:47:42 +0000 |
commit | 7980a22689d66d94fbc9bba2c6ef985e12840d5c (patch) | |
tree | e79b2be296aa653b17194766e1e22dad8868f807 /src/frame.h | |
parent | cf8fff5b391281d2b9362383ee9bde4f61803464 (diff) | |
download | emacs-7980a22689d66d94fbc9bba2c6ef985e12840d5c.tar.gz |
(struct frame): Use `struct kboard', not KBOARD.
Diffstat (limited to 'src/frame.h')
-rw-r--r-- | src/frame.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frame.h b/src/frame.h index 1de00dde65d..0cde7162bd1 100644 --- a/src/frame.h +++ b/src/frame.h @@ -170,7 +170,7 @@ struct frame /* A pointer to the kboard structure associated with this frame. For termcap frames, this points to initial_kboard. For X frames, it will be the same as display.x->display_info->kboard. */ - KBOARD *kboard; + struct kboard *kboard; #endif /* Number of lines of menu bar. */ |