diff options
| author | Jim Blandy | 1993-06-09 11:59:12 +0000 |
|---|---|---|
| committer | Jim Blandy | 1993-06-09 11:59:12 +0000 |
| commit | eb8c3be94e12644f506b8857e49ffef88046bb0b (patch) | |
| tree | 505c4ea5ae59214e4d6e749047d160c98191c9d2 /lib-src | |
| parent | 16a4a21d0117ef5ed346f340f244fe199d3c8a26 (diff) | |
| download | emacs-eb8c3be94e12644f506b8857e49ffef88046bb0b.tar.gz emacs-eb8c3be94e12644f506b8857e49ffef88046bb0b.zip | |
Apply typo patches from Paul Eggert.
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/aixcc.lex | 2 | ||||
| -rw-r--r-- | lib-src/emacstool.c | 2 | ||||
| -rw-r--r-- | lib-src/etags.c | 4 | ||||
| -rw-r--r-- | lib-src/make-docfile.c | 2 | ||||
| -rw-r--r-- | lib-src/timer.c | 2 | ||||
| -rw-r--r-- | lib-src/yow.c | 2 |
6 files changed, 7 insertions, 7 deletions
diff --git a/lib-src/aixcc.lex b/lib-src/aixcc.lex index 784d68d82b9..b7b44701b18 100644 --- a/lib-src/aixcc.lex +++ b/lib-src/aixcc.lex | |||
| @@ -157,7 +157,7 @@ yywrap () | |||
| 157 | 157 | ||
| 158 | ^([a-z]\ -)?\ *{EC}: { | 158 | ^([a-z]\ -)?\ *{EC}: { |
| 159 | /* | 159 | /* |
| 160 | * error message (which we print immediately) preceeded by an | 160 | * error message (which we print immediately) preceded by an |
| 161 | * error code (which we ignore) | 161 | * error code (which we ignore) |
| 162 | */ | 162 | */ |
| 163 | 163 | ||
diff --git a/lib-src/emacstool.c b/lib-src/emacstool.c index 1312dd912fc..80381643c2a 100644 --- a/lib-src/emacstool.c +++ b/lib-src/emacstool.c | |||
| @@ -65,7 +65,7 @@ | |||
| 65 | /* define WANT_CAPS_LOCK to make f-key T1 (aka F1) behave as CapsLock */ | 65 | /* define WANT_CAPS_LOCK to make f-key T1 (aka F1) behave as CapsLock */ |
| 66 | #define WANT_CAPS_LOCK | 66 | #define WANT_CAPS_LOCK |
| 67 | #ifdef WANT_CAPS_LOCK | 67 | #ifdef WANT_CAPS_LOCK |
| 68 | int caps_lock; /* toggle indicater for f-key T1 caps lock */ | 68 | int caps_lock; /* toggle indicator for f-key T1 caps lock */ |
| 69 | static char *Caps = "[CAPS] "; /* Caps Lock prefix string */ | 69 | static char *Caps = "[CAPS] "; /* Caps Lock prefix string */ |
| 70 | #define CAPS_LEN 7 /* strlen (Caps) */ | 70 | #define CAPS_LEN 7 /* strlen (Caps) */ |
| 71 | #endif | 71 | #endif |
diff --git a/lib-src/etags.c b/lib-src/etags.c index 24b6da53d5e..5d0389f911f 100644 --- a/lib-src/etags.c +++ b/lib-src/etags.c | |||
| @@ -834,7 +834,7 @@ process_file (file) | |||
| 834 | } | 834 | } |
| 835 | 835 | ||
| 836 | /* | 836 | /* |
| 837 | * This routine sets up the boolean psuedo-functions which work | 837 | * This routine sets up the boolean pseudo-functions which work |
| 838 | * by setting boolean flags dependent upon the corresponding character | 838 | * by setting boolean flags dependent upon the corresponding character |
| 839 | * Every char which is NOT in that string is not a white char. Therefore, | 839 | * Every char which is NOT in that string is not a white char. Therefore, |
| 840 | * all of the array "_wht" is set to FALSE, and then the elements | 840 | * all of the array "_wht" is set to FALSE, and then the elements |
| @@ -2845,7 +2845,7 @@ readline (linebuffer, stream) | |||
| 2845 | register char *pend; | 2845 | register char *pend; |
| 2846 | int newline; /* 1 if ended with newline, 0 if ended with EOF */ | 2846 | int newline; /* 1 if ended with newline, 0 if ended with EOF */ |
| 2847 | 2847 | ||
| 2848 | pend = p + linebuffer->size; /* Separate to avoind 386/IX compiler bug. */ | 2848 | pend = p + linebuffer->size; /* Separate to avoid 386/IX compiler bug. */ |
| 2849 | 2849 | ||
| 2850 | while (1) | 2850 | while (1) |
| 2851 | { | 2851 | { |
diff --git a/lib-src/make-docfile.c b/lib-src/make-docfile.c index ee149b503ed..2fb9af0849f 100644 --- a/lib-src/make-docfile.c +++ b/lib-src/make-docfile.c | |||
| @@ -407,7 +407,7 @@ scan_c_file (filename) | |||
| 407 | starting in column zero. | 407 | starting in column zero. |
| 408 | (quote NAME) may appear as 'NAME as well. | 408 | (quote NAME) may appear as 'NAME as well. |
| 409 | For defun, defmacro, and autoload, we know how to skip over the arglist. | 409 | For defun, defmacro, and autoload, we know how to skip over the arglist. |
| 410 | For defvar, defconst, and fset we skip to the docstring with a klugey | 410 | For defvar, defconst, and fset we skip to the docstring with a kludgy |
| 411 | formatting convention: all docstrings must appear on the same line as the | 411 | formatting convention: all docstrings must appear on the same line as the |
| 412 | initial open-paren (the one in column zero) and must contain a backslash | 412 | initial open-paren (the one in column zero) and must contain a backslash |
| 413 | and a double-quote immediately after the initial double-quote. No newlines | 413 | and a double-quote immediately after the initial double-quote. No newlines |
diff --git a/lib-src/timer.c b/lib-src/timer.c index ef46b29f126..d6419ef4cc8 100644 --- a/lib-src/timer.c +++ b/lib-src/timer.c | |||
| @@ -52,7 +52,7 @@ struct event *events; /* events[0 .. num_events-1] are the | |||
| 52 | 52 | ||
| 53 | char *pname; /* programme name for error messages */ | 53 | char *pname; /* programme name for error messages */ |
| 54 | 54 | ||
| 55 | /* Accepts a string of two fields seperated by FS. | 55 | /* Accepts a string of two fields separated by FS. |
| 56 | First field is string for get_date, saying when to wake-up. | 56 | First field is string for get_date, saying when to wake-up. |
| 57 | Second field is a token to identify the request. */ | 57 | Second field is a token to identify the request. */ |
| 58 | void | 58 | void |
diff --git a/lib-src/yow.c b/lib-src/yow.c index d01429d829d..7bfde3322e4 100644 --- a/lib-src/yow.c +++ b/lib-src/yow.c | |||
| @@ -101,7 +101,7 @@ yow (fp) | |||
| 101 | } | 101 | } |
| 102 | 102 | ||
| 103 | /* Read until SEP, read next line, print it. | 103 | /* Read until SEP, read next line, print it. |
| 104 | (Note that we will never print anything before the first seperator.) | 104 | (Note that we will never print anything before the first separator.) |
| 105 | If we hit EOF looking for the first SEP, just recurse. */ | 105 | If we hit EOF looking for the first SEP, just recurse. */ |
| 106 | while ((c = getc(fp)) != SEP) | 106 | while ((c = getc(fp)) != SEP) |
| 107 | if (c == EOF) { | 107 | if (c == EOF) { |