aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1997-03-22 04:08:59 +0000
committerRichard M. Stallman1997-03-22 04:08:59 +0000
commit375ff4f1e31fc51c2e3e27b94a383fb6e2f2d813 (patch)
treefd87296340230946a23112d6a3b464f93b56273a /src
parentfa54c6ae11fb3052c964d8dfe137c6209f3f314a (diff)
downloademacs-375ff4f1e31fc51c2e3e27b94a383fb6e2f2d813.tar.gz
emacs-375ff4f1e31fc51c2e3e27b94a383fb6e2f2d813.zip
(struct frame): New field buffer_list.
Diffstat (limited to 'src')
-rw-r--r--src/frame.h5
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
124 /* Predicate for selecting buffers for other-buffer. */ 124 /* Predicate for selecting buffers for other-buffer. */
125 Lisp_Object buffer_predicate; 125 Lisp_Object buffer_predicate;
126 126
127 /* Beyond here, there should be no more Lisp_Object components. */ 127 /* List of buffers viewed in this frame, for other-buffer. */
128 Lisp_Object buffer_list;
129
130 /* beyond here, there should be no more Lisp_Object components. */
128 131
129 132
130 /* A buffer to hold the frame's name. We can't use the Lisp string's 133 /* A buffer to hold the frame's name. We can't use the Lisp string's