mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-30 09:00:31 -08:00
(skip_chars): Fixed typo.
This commit is contained in:
parent
d97ca6a1a4
commit
d302d40a7f
1 changed files with 4 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue