Mercurial > emacs
comparison src/ccl.c @ 34157:f8e2b3c8da1b
(stack_idx_of_map_multiple): Don't use C initializier.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Mon, 04 Dec 2000 00:46:25 +0000 |
parents | ef25c62becab |
children | f998b856d92b |
comparison
equal
deleted
inserted
replaced
34156:9eddf2eb2ebf | 34157:f8e2b3c8da1b |
---|---|
595 static tr_stack mapping_stack[MAX_MAP_SET_LEVEL]; | 595 static tr_stack mapping_stack[MAX_MAP_SET_LEVEL]; |
596 static tr_stack *mapping_stack_pointer; | 596 static tr_stack *mapping_stack_pointer; |
597 | 597 |
598 /* If this variable is non-zero, it indicates the stack_idx | 598 /* If this variable is non-zero, it indicates the stack_idx |
599 of immediately called by CCL_MapMultiple. */ | 599 of immediately called by CCL_MapMultiple. */ |
600 static int stack_idx_of_map_multiple = 0; | 600 static int stack_idx_of_map_multiple; |
601 | 601 |
602 #define PUSH_MAPPING_STACK(restlen, orig) \ | 602 #define PUSH_MAPPING_STACK(restlen, orig) \ |
603 do { \ | 603 do { \ |
604 mapping_stack_pointer->rest_length = (restlen); \ | 604 mapping_stack_pointer->rest_length = (restlen); \ |
605 mapping_stack_pointer->orig_val = (orig); \ | 605 mapping_stack_pointer->orig_val = (orig); \ |