Mercurial > hg > xemacs-beta
comparison src/mule-ccl.c @ 5183:f283b08ff0c9
Avoid build failure, Apple's g++-4.0.1, Mac OS 10.4.
2010-04-02 Aidan Kehoe <kehoea@parhasard.net>
Avoid build failure, Apple's g++-4.0.1, Mac OS 10.4.
* sysdll.c (search_linked_libs, dll_variable): Correct some casts
for the C++ build.
* regex.h (END_C_DECLS, BEGIN_C_DECLS): Wrap function declarations
in extern "C" { ... } on the C++ build.
* mule-ccl.c (ccl_driver): Initialise i, silencing a warning on
a C++ build.
* keymap.c (key_desc_list_to_event):
Work around a bug in Apple's g++-4.0.1.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Fri, 02 Apr 2010 12:21:02 +0100 |
parents | 0d4c9d0f6a8d |
children | c096d8051f89 308d34e9f07d |
comparison
equal
deleted
inserted
replaced
5182:2e528066e2fc | 5183:f283b08ff0c9 |
---|---|
951 register int code = -1; | 951 register int code = -1; |
952 register int field1, field2; | 952 register int field1, field2; |
953 register Lisp_Object *ccl_prog = ccl->prog; | 953 register Lisp_Object *ccl_prog = ccl->prog; |
954 const unsigned char *src = source, *src_end = src + src_bytes; | 954 const unsigned char *src = source, *src_end = src + src_bytes; |
955 int jump_address; | 955 int jump_address; |
956 int i, j, op; | 956 int i = 0, j, op; |
957 int stack_idx = ccl->stack_idx; | 957 int stack_idx = ccl->stack_idx; |
958 /* Instruction counter of the current CCL code. */ | 958 /* Instruction counter of the current CCL code. */ |
959 int this_ic = 0; | 959 int this_ic = 0; |
960 int eof_ic = ccl->eof_ic; | 960 int eof_ic = ccl->eof_ic; |
961 int eof_hit = 0; | 961 int eof_hit = 0; |