aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa2000-12-04 00:46:25 +0000
committerKenichi Handa2000-12-04 00:46:25 +0000
commitbe57900b62f47ee94ba8f1406b66537f90f0adba (patch)
tree31b6fd18d670420b68bc125b028aeb88a4863b26 /src
parent5a13529bbc10014b37451c8b8a42bb863d4236ba (diff)
downloademacs-be57900b62f47ee94ba8f1406b66537f90f0adba.tar.gz
emacs-be57900b62f47ee94ba8f1406b66537f90f0adba.zip
(stack_idx_of_map_multiple): Don't use C initializier.
Diffstat (limited to 'src')
-rw-r--r--src/ccl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ccl.c b/src/ccl.c
index ca50081f47c..4890efa9bbc 100644
--- a/src/ccl.c
+++ b/src/ccl.c
@@ -597,7 +597,7 @@ 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. */
600static int stack_idx_of_map_multiple = 0; 600static 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 { \