Mercurial > emacs
comparison src/syntax.c @ 74145:8eceefbbcde7
Space/tab mixup.
| author | Juanma Barranquero <lekktu@gmail.com> |
|---|---|
| date | Fri, 24 Nov 2006 10:31:26 +0000 |
| parents | d4ecc69b8d2e |
| children | 31287a59d704 f1d13e615070 |
comparison
equal
deleted
inserted
replaced
| 74144:b302d34b7eae | 74145:8eceefbbcde7 |
|---|---|
| 1468 && STRING_CHAR (str + i_byte, size_byte - i_byte) == ':') | 1468 && STRING_CHAR (str + i_byte, size_byte - i_byte) == ':') |
| 1469 { | 1469 { |
| 1470 const unsigned char *class_beg = str + i_byte + 1; | 1470 const unsigned char *class_beg = str + i_byte + 1; |
| 1471 const unsigned char *class_end = class_beg; | 1471 const unsigned char *class_end = class_beg; |
| 1472 const unsigned char *class_limit = str + size_byte - 2; | 1472 const unsigned char *class_limit = str + size_byte - 2; |
| 1473 /* Leave room for the null. */ | 1473 /* Leave room for the null. */ |
| 1474 unsigned char class_name[CHAR_CLASS_MAX_LENGTH + 1]; | 1474 unsigned char class_name[CHAR_CLASS_MAX_LENGTH + 1]; |
| 1475 re_wctype_t cc; | 1475 re_wctype_t cc; |
| 1476 | 1476 |
| 1477 if (class_limit - class_beg > CHAR_CLASS_MAX_LENGTH) | 1477 if (class_limit - class_beg > CHAR_CLASS_MAX_LENGTH) |
| 1478 class_limit = class_beg + CHAR_CLASS_MAX_LENGTH; | 1478 class_limit = class_beg + CHAR_CLASS_MAX_LENGTH; |
