diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-03-22 04:08:59 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-03-22 04:08:59 +0000 |
commit | 7ccb274fbf05fc87d67d0bc262874f3ccd02e291 (patch) | |
tree | e94630186ae60ff27e3642d6914a45659012592d /src/frame.h | |
parent | e8ee0739773a58b2219a95295bab714c53ca0c63 (diff) | |
download | emacs-7ccb274fbf05fc87d67d0bc262874f3ccd02e291.tar.gz |
(struct frame): New field buffer_list.
Diffstat (limited to 'src/frame.h')
-rw-r--r-- | src/frame.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/frame.h b/src/frame.h index 47970c3d6db..532e1f2b85b 100644 --- a/src/frame.h +++ b/src/frame.h @@ -124,7 +124,10 @@ struct frame /* Predicate for selecting buffers for other-buffer. */ Lisp_Object buffer_predicate; - /* Beyond here, there should be no more Lisp_Object components. */ + /* List of buffers viewed in this frame, for other-buffer. */ + Lisp_Object buffer_list; + + /* beyond here, there should be no more Lisp_Object components. */ /* A buffer to hold the frame's name. We can't use the Lisp string's |