From: Brian Fox Date: Fri, 8 Oct 1993 07:36:11 +0000 (+0000) Subject: (skip_chars): Fixed typo. X-Git-Tag: emacs-19.34~11019 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d302d40a7f783b119054e7cc593e69a3d6069c77;p=emacs.git (skip_chars): Fixed typo. --- 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;