Mercurial > emacs
comparison src/syntax.c @ 89114:099689a1feb6
*** empty log message ***
| author | Kenichi Handa <handa@m17n.org> |
|---|---|
| date | Wed, 18 Sep 2002 12:16:12 +0000 |
| parents | 326caaedbfef |
| children | 9664825d832f |
comparison
equal
deleted
inserted
replaced
| 89113:326caaedbfef | 89114:099689a1feb6 |
|---|---|
| 1729 if (XINT (lim) > ZV) | 1729 if (XINT (lim) > ZV) |
| 1730 XSETFASTINT (lim, ZV); | 1730 XSETFASTINT (lim, ZV); |
| 1731 if (XINT (lim) < BEGV) | 1731 if (XINT (lim) < BEGV) |
| 1732 XSETFASTINT (lim, BEGV); | 1732 XSETFASTINT (lim, BEGV); |
| 1733 | 1733 |
| 1734 if (forward ? PT >= XFASTINT (lim) : PT <= XFASTINT (lim)) | 1734 if (forwardp ? (PT >= XFASTINT (lim)) : (PT <= XFASTINT (lim))) |
| 1735 return 0; | 1735 return 0; |
| 1736 | 1736 |
| 1737 multibyte = (!NILP (current_buffer->enable_multibyte_characters) | 1737 multibyte = (!NILP (current_buffer->enable_multibyte_characters) |
| 1738 && (lim - PT != CHAR_TO_BYTE (lim) - PT_BYTE)); | 1738 && (lim - PT != CHAR_TO_BYTE (lim) - PT_BYTE)); |
| 1739 | 1739 |
