comparison src/emacs.c @ 5133:444a448b2f53

Merge branch ben-lisp-object into default branch
author Ben Wing <ben@xemacs.org>
date Sun, 07 Mar 2010 06:47:37 -0600
parents 7be849cb8828
children 1fae11d56ad2
comparison
equal deleted inserted replaced
5113:b2dcf6a6d8ab 5133:444a448b2f53
1468 /* Now declare all the symbols and define all the Lisp primitives. 1468 /* Now declare all the symbols and define all the Lisp primitives.
1469 1469
1470 The *only* thing that the syms_of_*() functions are allowed to do 1470 The *only* thing that the syms_of_*() functions are allowed to do
1471 is call one of the following: 1471 is call one of the following:
1472 1472
1473 INIT_LRECORD_IMPLEMENTATION() 1473 INIT_LISP_OBJECT()
1474 defsymbol(), DEFSYMBOL(), or DEFSYMBOL_MULTIWORD_PREDICATE() 1474 defsymbol(), DEFSYMBOL(), or DEFSYMBOL_MULTIWORD_PREDICATE()
1475 defsubr() (i.e. DEFSUBR) 1475 defsubr() (i.e. DEFSUBR)
1476 deferror(), DEFERROR(), or DEFERROR_STANDARD() 1476 deferror(), DEFERROR(), or DEFERROR_STANDARD()
1477 defkeyword() or DEFKEYWORD() 1477 defkeyword() or DEFKEYWORD()
1478 Fput() 1478 Fput()
2023 - build_ascstring() 2023 - build_ascstring()
2024 - make_vector() 2024 - make_vector()
2025 - make_int() 2025 - make_int()
2026 - make_char() 2026 - make_char()
2027 - make_extent() 2027 - make_extent()
2028 - BASIC_ALLOC_LCRECORD() 2028 - ALLOC_NORMAL_LISP_OBJECT()
2029 - ALLOC_LCRECORD_TYPE() 2029 - ALLOC_SIZED_LISP_OBJECT()
2030 - Fcons() 2030 - Fcons()
2031 - listN() 2031 - listN()
2032 - make_lcrecord_list() 2032 - make_lcrecord_list()
2033 -- make_opaque_ptr() 2033 -- make_opaque_ptr()
2034 -- make_lisp_hash_table() (not allowed in 21.4!) 2034 -- make_lisp_hash_table() (not allowed in 21.4!)
2316 #if defined (HAVE_TTY) && (defined (DEBUG_TTY_EVENT_STREAM) || !defined (HAVE_X_WINDOWS)) 2316 #if defined (HAVE_TTY) && (defined (DEBUG_TTY_EVENT_STREAM) || !defined (HAVE_X_WINDOWS))
2317 reinit_vars_of_event_tty (); 2317 reinit_vars_of_event_tty ();
2318 #endif 2318 #endif
2319 reinit_vars_of_event_stream (); 2319 reinit_vars_of_event_stream ();
2320 reinit_vars_of_events (); 2320 reinit_vars_of_events ();
2321 reinit_vars_of_extents ();
2322 reinit_vars_of_file_coding (); 2321 reinit_vars_of_file_coding ();
2323 reinit_vars_of_fileio (); 2322 reinit_vars_of_fileio ();
2324 #ifdef USE_C_FONT_LOCK 2323 #ifdef USE_C_FONT_LOCK
2325 reinit_vars_of_font_lock (); 2324 reinit_vars_of_font_lock ();
2326 #endif /* USE_C_FONT_LOCK */ 2325 #endif /* USE_C_FONT_LOCK */