diff options
| author | Glenn Morris | 2012-03-01 21:57:19 -0500 |
|---|---|---|
| committer | Glenn Morris | 2012-03-01 21:57:19 -0500 |
| commit | 96a72ee9ff50672d69e58255f5953481bcf0a6ee (patch) | |
| tree | eb1702d77787a0b351f12d54d5cf34fdecf7c8a8 /src | |
| parent | 4186e877855ab028c38f434d49cafd87381a5ab0 (diff) | |
| download | emacs-96a72ee9ff50672d69e58255f5953481bcf0a6ee.tar.gz emacs-96a72ee9ff50672d69e58255f5953481bcf0a6ee.zip | |
* src/buffer.c (buffer-list-update-hook): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/buffer.c | 6 |
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 @@ | |||
| 1 | 2012-03-02 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * buffer.c (buffer-list-update-hook): Doc fix. | ||
| 4 | |||
| 1 | 2012-02-29 Eli Zaretskii <eliz@gnu.org> | 5 | 2012-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 | ||
| 3 | Copyright (C) 1985-1989, 1993-1995, 1997-2012 Free Software Foundation, Inc. | 3 | Copyright (C) 1985-1989, 1993-1995, 1997-2012 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | This file is part of GNU Emacs. | 5 | This 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 | ||
| 1723 | DEFUN ("bury-buffer-internal", Fbury_buffer_internal, Sbury_buffer_internal, | 1723 | DEFUN ("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. |
| 5997 | Functions running this hook are `get-buffer-create', | 5997 | Functions 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'. */); | 5999 | and `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 | ||