diff options
| author | Brian Fox | 1993-10-08 07:36:11 +0000 |
|---|---|---|
| committer | Brian Fox | 1993-10-08 07:36:11 +0000 |
| commit | d302d40a7f783b119054e7cc593e69a3d6069c77 (patch) | |
| tree | 9e36fc225c5fa2e4eae72bc404a3a24c10138d78 /src/search.c | |
| parent | d97ca6a1a41c0aa9eef6d02f334e8d69fffb41cd (diff) | |
| download | emacs-d302d40a7f783b119054e7cc593e69a3d6069c77.tar.gz emacs-d302d40a7f783b119054e7cc593e69a3d6069c77.zip | |
(skip_chars): Fixed typo.
Diffstat (limited to 'src/search.c')
| -rw-r--r-- | src/search.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/search.c b/src/search.c index 2127b36f5a0..9211169dbe0 100644 --- a/src/search.c +++ b/src/search.c | |||
| @@ -421,13 +421,15 @@ skip_chars (forwardp, syntaxp, string, lim) | |||
| 421 | /* I don't know what things this breaks, and there is no entry in the | 421 | /* I don't know what things this breaks, and there is no entry in the |
| 422 | ChangeLog, so I reinstated the end of buffer limit check. This code | 422 | ChangeLog, so I reinstated the end of buffer limit check. This code |
| 423 | breaks without it. (bfox) */ | 423 | breaks without it. (bfox) */ |
| 424 | #if 0 /* This breaks some things... jla. */ | 424 | /* #if 0 /* This breaks some things... jla. */ |
| 425 | #if 1 | ||
| 425 | if (XFASTINT (lim) > ZV) | 426 | if (XFASTINT (lim) > ZV) |
| 426 | XFASTINT (lim) = ZV; | 427 | XFASTINT (lim) = ZV; |
| 427 | #endif | 428 | #endif |
| 429 | #if 0 | ||
| 428 | if (XFASTINT (lim) < BEGV) | 430 | if (XFASTINT (lim) < BEGV) |
| 429 | XFASTINT (lim) = BEGV; | 431 | XFASTINT (lim) = BEGV; |
| 430 | /* #endif */ | 432 | #endif |
| 431 | 433 | ||
| 432 | p = XSTRING (string)->data; | 434 | p = XSTRING (string)->data; |
| 433 | pend = p + XSTRING (string)->size; | 435 | pend = p + XSTRING (string)->size; |