comparison src/regex.h @ 89060:e2cc0f05e825

(struct re_pattern_buffer): New member target_multibyte.
author Kenichi Handa <handa@m17n.org>
date Tue, 03 Sep 2002 04:09:06 +0000
parents 37d5eb3558fb
children 2f877ed80fa6
comparison
equal deleted inserted replaced
89059:288b118954ca 89060:e2cc0f05e825
389 389
390 /* Similarly for an end-of-line anchor. */ 390 /* Similarly for an end-of-line anchor. */
391 unsigned not_eol : 1; 391 unsigned not_eol : 1;
392 392
393 #ifdef emacs 393 #ifdef emacs
394 /* If true, multi-byte form in the `buffer' should be recognized as a 394 /* If true, multi-byte form in the regexp pattern should be
395 multibyte character. */ 395 recognized as a multibyte character. */
396 unsigned multibyte : 1; 396 unsigned multibyte : 1;
397
398 /* If true, multi-byte form in the target of match should be
399 recognized as a multibyte character. */
400 unsigned target_multibyte : 1;
397 #endif 401 #endif
398 402
399 /* [[[end pattern_buffer]]] */ 403 /* [[[end pattern_buffer]]] */
400 }; 404 };
401 405