diff options
| author | Pavel Janík | 2001-10-31 10:33:29 +0000 |
|---|---|---|
| committer | Pavel Janík | 2001-10-31 10:33:29 +0000 |
| commit | 48400103d7b5b6afe660a30e25f82c097a856696 (patch) | |
| tree | 69b6b3a9c3493b9a5e17abec8c2d4ba9bdd990f5 /src | |
| parent | 1178dddef5884873f3bf05e89253d4377f45b29b (diff) | |
| download | emacs-48400103d7b5b6afe660a30e25f82c097a856696.tar.gz emacs-48400103d7b5b6afe660a30e25f82c097a856696.zip | |
Fix typos in comments.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/xdisp.c | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index cb08a806bb5..1e8d9d2e171 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2001-10-31 Pavel Jan,Bm(Bk <Pavel@Janik.cz> | ||
| 2 | |||
| 3 | * xdisp.c: Fix typos in comments. | ||
| 4 | |||
| 1 | 2001-10-31 Gerd Moellmann <gerd@gnu.org> | 5 | 2001-10-31 Gerd Moellmann <gerd@gnu.org> |
| 2 | 6 | ||
| 3 | * window.c (grow_mini_window): Handle case that the root | 7 | * window.c (grow_mini_window): Handle case that the root |
diff --git a/src/xdisp.c b/src/xdisp.c index bc77c483d7b..63a94691875 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -33,7 +33,7 @@ Boston, MA 02111-1307, USA. */ | |||
| 33 | you as part of the interpreter's command loop or as the result of | 33 | you as part of the interpreter's command loop or as the result of |
| 34 | calling Lisp functions like `sit-for'. The C function `redisplay' | 34 | calling Lisp functions like `sit-for'. The C function `redisplay' |
| 35 | in xdisp.c is the only entry into the inner redisplay code. (Or, | 35 | in xdisp.c is the only entry into the inner redisplay code. (Or, |
| 36 | let's say almost---see the the description of direct update | 36 | let's say almost---see the description of direct update |
| 37 | operations, below.). | 37 | operations, below.). |
| 38 | 38 | ||
| 39 | The following diagram shows how redisplay code is invoked. As you | 39 | The following diagram shows how redisplay code is invoked. As you |
| @@ -88,7 +88,7 @@ Boston, MA 02111-1307, USA. */ | |||
| 88 | 88 | ||
| 89 | Direct operations. | 89 | Direct operations. |
| 90 | 90 | ||
| 91 | You will find a lot of of redisplay optimizations when you start | 91 | You will find a lot of redisplay optimizations when you start |
| 92 | looking at the innards of redisplay. The overall goal of all these | 92 | looking at the innards of redisplay. The overall goal of all these |
| 93 | optimizations is to make redisplay fast because it is done | 93 | optimizations is to make redisplay fast because it is done |
| 94 | frequently. | 94 | frequently. |
| @@ -123,7 +123,7 @@ Boston, MA 02111-1307, USA. */ | |||
| 123 | interface functions taking a iterator structure (struct it) | 123 | interface functions taking a iterator structure (struct it) |
| 124 | argument. | 124 | argument. |
| 125 | 125 | ||
| 126 | Iteration over things to be be displayed is then simple. It is | 126 | Iteration over things to be displayed is then simple. It is |
| 127 | started by initializing an iterator with a call to init_iterator. | 127 | started by initializing an iterator with a call to init_iterator. |
| 128 | Calls to get_next_display_element fill the iterator structure with | 128 | Calls to get_next_display_element fill the iterator structure with |
| 129 | relevant information about the next thing to display. Calls to | 129 | relevant information about the next thing to display. Calls to |