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 /src/search.c | |
| parent | 16a4a21d0117ef5ed346f340f244fe199d3c8a26 (diff) | |
| download | emacs-eb8c3be94e12644f506b8857e49ffef88046bb0b.tar.gz emacs-eb8c3be94e12644f506b8857e49ffef88046bb0b.zip | |
Apply typo patches from Paul Eggert.
Diffstat (limited to 'src/search.c')
| -rw-r--r-- | src/search.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/search.c b/src/search.c index 99e3c40f58a..d9c4554cb92 100644 --- a/src/search.c +++ b/src/search.c | |||
| @@ -943,7 +943,7 @@ search_buffer (string, pos, lim, n, RE, trt, inverse_trt) | |||
| 943 | while ((limit - pos) * direction >= 0) | 943 | while ((limit - pos) * direction >= 0) |
| 944 | pos += BM_tab[FETCH_CHAR(pos)]; | 944 | pos += BM_tab[FETCH_CHAR(pos)]; |
| 945 | /* now run the same tests to distinguish going off the */ | 945 | /* now run the same tests to distinguish going off the */ |
| 946 | /* end, a match or a phoney match. */ | 946 | /* end, a match or a phony match. */ |
| 947 | if ((pos - limit) * direction <= len) | 947 | if ((pos - limit) * direction <= len) |
| 948 | break; /* ran off the end */ | 948 | break; /* ran off the end */ |
| 949 | /* Found what might be a match. | 949 | /* Found what might be a match. |