diff options
| author | Martin Rudalics | 2008-01-19 18:53:05 +0000 |
|---|---|---|
| committer | Martin Rudalics | 2008-01-19 18:53:05 +0000 |
| commit | 569382c2b4e38392a41052a6ecbc97b92760bf4b (patch) | |
| tree | eda694abf4f5bbbe1c63a8d87384000c5061cfc9 | |
| parent | fc9a9287570dfefe8ca48134050b00b1bda6fa89 (diff) | |
| download | emacs-569382c2b4e38392a41052a6ecbc97b92760bf4b.tar.gz emacs-569382c2b4e38392a41052a6ecbc97b92760bf4b.zip | |
(Buffer Modification): Fix typo.
| -rw-r--r-- | lispref/ChangeLog | 6 | ||||
| -rw-r--r-- | lispref/buffers.texi | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/lispref/ChangeLog b/lispref/ChangeLog index 0d42aac5c85..7febc50fdef 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2008-01-19 Martin Rudalics <rudalics@gmx.at> | ||
| 2 | |||
| 3 | * buffers.texi (Buffer Modification): Fix typo. | ||
| 4 | |||
| 1 | 2008-01-04 Richard Stallman <rms@gnu.org> | 5 | 2008-01-04 Richard Stallman <rms@gnu.org> |
| 2 | 6 | ||
| 3 | * display.texi (Faces): Don't talk about internal face vector as arg | 7 | * display.texi (Faces): Don't talk about internal face vector as arg |
| @@ -38,7 +42,7 @@ | |||
| 38 | 42 | ||
| 39 | 2007-11-24 Richard Stallman <rms@gnu.org> | 43 | 2007-11-24 Richard Stallman <rms@gnu.org> |
| 40 | 44 | ||
| 41 | * display.texi (Refresh Screen, Forcing Redisplay): | 45 | * display.texi (Refresh Screen, Forcing Redisplay): |
| 42 | Clarify the text and move items around. | 46 | Clarify the text and move items around. |
| 43 | 47 | ||
| 44 | 2007-11-15 Martin Rudalics <rudalics@gmx.at> | 48 | 2007-11-15 Martin Rudalics <rudalics@gmx.at> |
diff --git a/lispref/buffers.texi b/lispref/buffers.texi index d2bbc9bb4d9..658da3a1df2 100644 --- a/lispref/buffers.texi +++ b/lispref/buffers.texi | |||
| @@ -584,7 +584,7 @@ The counter can wrap around occasionally. | |||
| 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 |
| @@ -783,7 +783,7 @@ 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 |