Mercurial > hg > xemacs-beta
comparison src/bytecode.c @ 2551:9f70af3ac939
[xemacs-hg @ 2005-02-03 16:14:02 by james]
Commit Olivier Galibert's dumper updates for bignums and use them.
See xemacs-patches message with ID <ps8y685c6p.fsf@diannao.ittc.ku.edu>.
author | james |
---|---|
date | Thu, 03 Feb 2005 16:14:08 +0000 |
parents | 989a7680c221 |
children | 6fa9919a9a0b |
comparison
equal
deleted
inserted
replaced
2550:317f30471f4e | 2551:9f70af3ac939 |
---|---|
2178 } | 2178 } |
2179 | 2179 |
2180 static const struct memory_description compiled_function_description[] = { | 2180 static const struct memory_description compiled_function_description[] = { |
2181 { XD_INT, offsetof (Lisp_Compiled_Function, args_in_array) }, | 2181 { XD_INT, offsetof (Lisp_Compiled_Function, args_in_array) }, |
2182 { XD_BLOCK_PTR, offsetof (Lisp_Compiled_Function, args), | 2182 { XD_BLOCK_PTR, offsetof (Lisp_Compiled_Function, args), |
2183 XD_INDIRECT (0, 0), &lisp_object_description }, | 2183 XD_INDIRECT (0, 0), { &lisp_object_description } }, |
2184 { XD_LISP_OBJECT, offsetof (Lisp_Compiled_Function, instructions) }, | 2184 { XD_LISP_OBJECT, offsetof (Lisp_Compiled_Function, instructions) }, |
2185 { XD_LISP_OBJECT, offsetof (Lisp_Compiled_Function, constants) }, | 2185 { XD_LISP_OBJECT, offsetof (Lisp_Compiled_Function, constants) }, |
2186 { XD_LISP_OBJECT, offsetof (Lisp_Compiled_Function, arglist) }, | 2186 { XD_LISP_OBJECT, offsetof (Lisp_Compiled_Function, arglist) }, |
2187 { XD_LISP_OBJECT, offsetof (Lisp_Compiled_Function, doc_and_interactive) }, | 2187 { XD_LISP_OBJECT, offsetof (Lisp_Compiled_Function, doc_and_interactive) }, |
2188 #ifdef COMPILED_FUNCTION_ANNOTATION_HACK | 2188 #ifdef COMPILED_FUNCTION_ANNOTATION_HACK |