aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGlenn Morris2012-03-01 21:57:19 -0500
committerGlenn Morris2012-03-01 21:57:19 -0500
commit96a72ee9ff50672d69e58255f5953481bcf0a6ee (patch)
treeeb1702d77787a0b351f12d54d5cf34fdecf7c8a8 /src
parent4186e877855ab028c38f434d49cafd87381a5ab0 (diff)
downloademacs-96a72ee9ff50672d69e58255f5953481bcf0a6ee.tar.gz
emacs-96a72ee9ff50672d69e58255f5953481bcf0a6ee.zip
* src/buffer.c (buffer-list-update-hook): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/buffer.c6
2 files changed, 7 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 428d25f7cc8..ecfd83eef37 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12012-03-02 Glenn Morris <rgm@gnu.org>
2
3 * buffer.c (buffer-list-update-hook): Doc fix.
4
12012-02-29 Eli Zaretskii <eliz@gnu.org> 52012-02-29 Eli Zaretskii <eliz@gnu.org>
2 6
3 * xdisp.c (get_overlay_strings_1): Under bidi redisplay, call 7 * xdisp.c (get_overlay_strings_1): Under bidi redisplay, call
diff --git a/src/buffer.c b/src/buffer.c
index 71a5e199c6f..1577254d92a 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -1,6 +1,6 @@
1/* Buffer manipulation primitives for GNU Emacs. 1/* Buffer manipulation primitives for GNU Emacs.
2 2
3Copyright (C) 1985-1989, 1993-1995, 1997-2012 Free Software Foundation, Inc. 3Copyright (C) 1985-1989, 1993-1995, 1997-2012 Free Software Foundation, Inc.
4 4
5This file is part of GNU Emacs. 5This file is part of GNU Emacs.
6 6
@@ -1717,7 +1717,7 @@ record_buffer (Lisp_Object buffer)
1717/* Move BUFFER to the end of the buffer (a)lists. Do nothing if the 1717/* Move BUFFER to the end of the buffer (a)lists. Do nothing if the
1718 buffer is killed. For the selected frame's buffer list this moves 1718 buffer is killed. For the selected frame's buffer list this moves
1719 BUFFER to its end even if it was never shown in that frame. If 1719 BUFFER to its end even if it was never shown in that frame. If
1720 this happens we have a feature, hence `unrecord-buffer' should be 1720 this happens we have a feature, hence `bury-buffer-internal' should be
1721 called only when BUFFER was shown in the selected frame. */ 1721 called only when BUFFER was shown in the selected frame. */
1722 1722
1723DEFUN ("bury-buffer-internal", Fbury_buffer_internal, Sbury_buffer_internal, 1723DEFUN ("bury-buffer-internal", Fbury_buffer_internal, Sbury_buffer_internal,
@@ -5996,7 +5996,7 @@ The function `kill-all-local-variables' runs this before doing anything else. *
5996 doc: /* Hook run when the buffer list changes. 5996 doc: /* Hook run when the buffer list changes.
5997Functions running this hook are `get-buffer-create', 5997Functions running this hook are `get-buffer-create',
5998`make-indirect-buffer', `rename-buffer', `kill-buffer', 5998`make-indirect-buffer', `rename-buffer', `kill-buffer',
5999`record-buffer' and `unrecord-buffer'. */); 5999and `bury-buffer-internal'. */);
6000 Vbuffer_list_update_hook = Qnil; 6000 Vbuffer_list_update_hook = Qnil;
6001 DEFSYM (Qbuffer_list_update_hook, "buffer-list-update-hook"); 6001 DEFSYM (Qbuffer_list_update_hook, "buffer-list-update-hook");
6002 6002