From d302d40a7f783b119054e7cc593e69a3d6069c77 Mon Sep 17 00:00:00 2001 From: Brian Fox Date: Fri, 8 Oct 1993 07:36:11 +0000 Subject: [PATCH] (skip_chars): Fixed typo. --- src/search.c | 6 ++++-- 1 file 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; -- 2.39.5