diff options
author | Brian Fox <bfox@gnu.org> | 1993-10-08 07:36:11 +0000 |
---|---|---|
committer | Brian Fox <bfox@gnu.org> | 1993-10-08 07:36:11 +0000 |
commit | d302d40a7f783b119054e7cc593e69a3d6069c77 (patch) | |
tree | 9e36fc225c5fa2e4eae72bc404a3a24c10138d78 /src/search.c | |
parent | d97ca6a1a41c0aa9eef6d02f334e8d69fffb41cd (diff) | |
download | emacs-d302d40a7f783b119054e7cc593e69a3d6069c77.tar.gz |
(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) /* I don't know what things this breaks, and there is no entry in the ChangeLog, so I reinstated the end of buffer limit check. This code breaks without it. (bfox) */ -#if 0 /* This breaks some things... jla. */ +/* #if 0 /* This breaks some things... jla. */ +#if 1 if (XFASTINT (lim) > ZV) XFASTINT (lim) = ZV; #endif +#if 0 if (XFASTINT (lim) < BEGV) XFASTINT (lim) = BEGV; -/* #endif */ +#endif p = XSTRING (string)->data; pend = p + XSTRING (string)->size; |