diff options
| author | David Kastrup | 2004-10-26 09:45:16 +0000 |
|---|---|---|
| committer | David Kastrup | 2004-10-26 09:45:16 +0000 |
| commit | 5629f29b3c29cfa95896f1df2ed357b4d8fa7473 (patch) | |
| tree | c1d4075f713cd45b352ca4ec9ebdd85c5bb1412b /src | |
| parent | 4f2f546e7148491121899d063e746ecb618aeb43 (diff) | |
| download | emacs-5629f29b3c29cfa95896f1df2ed357b4d8fa7473.tar.gz emacs-5629f29b3c29cfa95896f1df2ed357b4d8fa7473.zip | |
(syms_of_buffer): Fix a few typos.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/buffer.c | 12 |
2 files changed, 10 insertions, 6 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 97d336e77e3..e7013c431ca 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2004-10-26 David Kastrup <dak@gnu.org> | ||
| 2 | |||
| 3 | * buffer.c (syms_of_buffer): Fix a few typos. | ||
| 4 | |||
| 1 | 2004-10-26 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> | 5 | 2004-10-26 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> |
| 2 | 6 | ||
| 3 | * xsmfns.c: Put empty line between comment and function body. | 7 | * xsmfns.c: Put empty line between comment and function body. |
diff --git a/src/buffer.c b/src/buffer.c index b0368a842ca..b0c8c370931 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -5812,21 +5812,21 @@ If the value of the variable is t, undo information is not recorded. */); | |||
| 5812 | doc: /* Non-nil means that Emacs should use caches to handle long lines more quickly. | 5812 | doc: /* Non-nil means that Emacs should use caches to handle long lines more quickly. |
| 5813 | 5813 | ||
| 5814 | Normally, the line-motion functions work by scanning the buffer for | 5814 | Normally, the line-motion functions work by scanning the buffer for |
| 5815 | newlines. Columnar operations (like move-to-column and | 5815 | newlines. Columnar operations (like `move-to-column' and |
| 5816 | compute-motion) also work by scanning the buffer, summing character | 5816 | `compute-motion') also work by scanning the buffer, summing character |
| 5817 | widths as they go. This works well for ordinary text, but if the | 5817 | widths as they go. This works well for ordinary text, but if the |
| 5818 | buffer's lines are very long (say, more than 500 characters), these | 5818 | buffer's lines are very long (say, more than 500 characters), these |
| 5819 | motion functions will take longer to execute. Emacs may also take | 5819 | motion functions will take longer to execute. Emacs may also take |
| 5820 | longer to update the display. | 5820 | longer to update the display. |
| 5821 | 5821 | ||
| 5822 | If cache-long-line-scans is non-nil, these motion functions cache the | 5822 | If `cache-long-line-scans' is non-nil, these motion functions cache the |
| 5823 | results of their scans, and consult the cache to avoid rescanning | 5823 | results of their scans, and consult the cache to avoid rescanning |
| 5824 | regions of the buffer until the text is modified. The caches are most | 5824 | regions of the buffer until the text is modified. The caches are most |
| 5825 | beneficial when they prevent the most searching---that is, when the | 5825 | beneficial when they prevent the most searching---that is, when the |
| 5826 | buffer contains long lines and large regions of characters with the | 5826 | buffer contains long lines and large regions of characters with the |
| 5827 | same, fixed screen width. | 5827 | same, fixed screen width. |
| 5828 | 5828 | ||
| 5829 | When cache-long-line-scans is non-nil, processing short lines will | 5829 | When `cache-long-line-scans' is non-nil, processing short lines will |
| 5830 | become slightly slower (because of the overhead of consulting the | 5830 | become slightly slower (because of the overhead of consulting the |
| 5831 | cache), and the caches will use memory roughly proportional to the | 5831 | cache), and the caches will use memory roughly proportional to the |
| 5832 | number of newlines and characters whose screen width varies. | 5832 | number of newlines and characters whose screen width varies. |
| @@ -5906,8 +5906,8 @@ Values are interpreted as follows: | |||
| 5906 | hollow display a hollow box cursor | 5906 | hollow display a hollow box cursor |
| 5907 | bar display a vertical bar cursor with default width | 5907 | bar display a vertical bar cursor with default width |
| 5908 | (bar . WIDTH) display a vertical bar cursor with width WIDTH | 5908 | (bar . WIDTH) display a vertical bar cursor with width WIDTH |
| 5909 | hbar display a horisontal bar cursor with default width | 5909 | hbar display a horizontal bar cursor with default width |
| 5910 | (hbar . WIDTH) display a horisontal bar cursor with width WIDTH | 5910 | (hbar . WIDTH) display a horizontal bar cursor with width WIDTH |
| 5911 | ANYTHING ELSE display a hollow box cursor. | 5911 | ANYTHING ELSE display a hollow box cursor. |
| 5912 | 5912 | ||
| 5913 | When the buffer is displayed in a nonselected window, | 5913 | When the buffer is displayed in a nonselected window, |