aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Fox1993-10-08 07:36:11 +0000
committerBrian Fox1993-10-08 07:36:11 +0000
commitd302d40a7f783b119054e7cc593e69a3d6069c77 (patch)
tree9e36fc225c5fa2e4eae72bc404a3a24c10138d78
parentd97ca6a1a41c0aa9eef6d02f334e8d69fffb41cd (diff)
downloademacs-d302d40a7f783b119054e7cc593e69a3d6069c77.tar.gz
emacs-d302d40a7f783b119054e7cc593e69a3d6069c77.zip
(skip_chars): Fixed typo.
-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;