aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/search.c6
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;