aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/buffer.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/buffer.c b/src/buffer.c
index fd2de4a2408..1564674d86d 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -209,7 +209,9 @@ Value is nil if OBJECT is not a buffer or if it has been killed. */)
209 209
210DEFUN ("buffer-list", Fbuffer_list, Sbuffer_list, 0, 1, 0, 210DEFUN ("buffer-list", Fbuffer_list, Sbuffer_list, 0, 1, 0,
211 doc: /* Return a list of all existing live buffers. 211 doc: /* Return a list of all existing live buffers.
212If the optional arg FRAME is a frame, we return that frame's buffer list. */) 212If the optional arg FRAME is a frame, we return the buffer list
213in the proper order for that frame: the buffers in FRAME's `buffer-list'
214frame parameter come first, followed by the rest of the buffers. */)
213 (frame) 215 (frame)
214 Lisp_Object frame; 216 Lisp_Object frame;
215{ 217{