comparison doc/lispref/buffers.texi @ 91367:c70e45a7acfd

Merge from emacs--devo--0 Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-324
author Miles Bader <miles@gnu.org>
date Wed, 30 Jan 2008 07:57:28 +0000
parents 5d58981e6690
children 5acd30038b76
comparison
equal deleted inserted replaced
91366:86f3a8f0a3a6 91367:c70e45a7acfd
582 582
583 @defun buffer-chars-modified-tick &optional buffer 583 @defun buffer-chars-modified-tick &optional buffer
584 This function returns @var{buffer}'s character-change modification-count. 584 This function returns @var{buffer}'s character-change modification-count.
585 Changes to text properties leave this counter unchanged; however, each 585 Changes to text properties leave this counter unchanged; however, each
586 time text is inserted or removed from the buffer, the counter is reset 586 time text is inserted or removed from the buffer, the counter is reset
587 to the value that would be returned @code{buffer-modified-tick}. 587 to the value that would be returned by @code{buffer-modified-tick}.
588 By comparing the values returned by two @code{buffer-chars-modified-tick} 588 By comparing the values returned by two @code{buffer-chars-modified-tick}
589 calls, you can tell whether a character change occurred in that buffer 589 calls, you can tell whether a character change occurred in that buffer
590 in between the calls. If @var{buffer} is @code{nil} (or omitted), the 590 in between the calls. If @var{buffer} is @code{nil} (or omitted), the
591 current buffer is used. 591 current buffer is used.
592 @end defun 592 @end defun
781 a buffer removes it. Buffers move to the front of the list when they 781 a buffer removes it. Buffers move to the front of the list when they
782 are selected for display in a window (@pxref{Displaying Buffers}), and 782 are selected for display in a window (@pxref{Displaying Buffers}), and
783 to the end when they are buried (see @code{bury-buffer}, below). 783 to the end when they are buried (see @code{bury-buffer}, below).
784 There are no functions available to the Lisp programmer which directly 784 There are no functions available to the Lisp programmer which directly
785 manipulate the buffer list. 785 manipulate the buffer list.
786 786
787 In addition to the fundamental Emacs buffer list, each frame has its 787 In addition to the fundamental Emacs buffer list, each frame has its
788 own version of the buffer list, in which the buffers that have been 788 own version of the buffer list, in which the buffers that have been
789 selected in that frame come first, starting with the buffers most 789 selected in that frame come first, starting with the buffers most
790 recently selected @emph{in that frame}. (This order is recorded in 790 recently selected @emph{in that frame}. (This order is recorded in
791 @var{frame}'s @code{buffer-list} frame parameter; see @ref{Buffer 791 @var{frame}'s @code{buffer-list} frame parameter; see @ref{Buffer