Mercurial > emacs
changeset 4832:88df989388b9
(skip_chars): Fixed typo.
author | Brian Fox <bfox@gnu.org> |
---|---|
date | Fri, 08 Oct 1993 07:36:11 +0000 |
parents | 66a523672100 |
children | 9b9d3d777a66 |
files | src/search.c |
diffstat | 1 files changed, 4 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/search.c Thu Oct 07 22:58:57 1993 +0000 +++ b/src/search.c Fri Oct 08 07:36:11 1993 +0000 @@ -421,13 +421,15 @@ /* 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;