]> git.eshelyaron.com Git - emacs.git/commitdiff
(skip_chars): Fixed typo.
authorBrian Fox <bfox@gnu.org>
Fri, 8 Oct 1993 07:36:11 +0000 (07:36 +0000)
committerBrian Fox <bfox@gnu.org>
Fri, 8 Oct 1993 07:36:11 +0000 (07:36 +0000)
src/search.c

index 2127b36f5a0440b6f8319a4353abf7e5bc94a64f..9211169dbe0afdef3c6fc6d3be65b1cf75f76ecb 100644 (file)
@@ -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;