Mercurial > hg > xemacs-beta
view src/lisp.h @ 788:026c5bf9c134
[xemacs-hg @ 2002-03-21 07:29:57 by ben]
chartab.c: Fix bugs in implementation and doc strings.
config.h.in: Add foo_checking_assert_at_line() macros. Not clear whether these
are actually useful, though; I'll take them out if not.
symsinit.h, emacs.c: Some improvements to the timeline. Rearrange a bit the init
calls. Add call for reinit_vars_of_object_mswindows() and
declare in symsinit.h.
event-Xt.c, event-gtk.c, event-msw.c, event-stream.c, event-tty.c, events.c, events.h: Introduce new event methods for printing, comparing, and hashing
magic events, to avoid event-type-specific stuff that had crept
into events.c. (And was crashing, since the channel in MS Windows
magic events may be nil.) Implement the methods in
event-{tty,gtk,Xt,mswindows}.c. Make wrapping functions
event_stream_{compare,hash,format}_magic_event() to check if
everything's OK and call the actual callback. Fix events.c to use
the new methods. Add a new event-stream-operation
EVENT_STREAM_NOTHING -- event stream not actually required to be
able to do anything, just be open. (#### This
event-stream-operation stuff needs to be rethought.)
Fixed describe_event() in event-Xt.c to print its output to a
stream, not always to stderr, so it can be used
elsewhere. (e.g. in print-event when a magic event is
encountered?)
lisp.h, lrecord.h: Define new assert_at_line(), for use in asserts inside of inline
functions. The assert will report the line and file of the inline
function, which is almost certainly not what you want as it's
useless. what you want to see is where the pseudo-macro was
called from. So, when error-checking is on, we pass in the line
and file into the macros, for accurate printout using
assert_at_line(). Happens only when error-checking is defined so
doesn't slow down non-error-checking builds. Fix XCHAR, XINT,
XCHAR_OR_INT, XFOO, and wrap_foo() in this fashion.
lstream.c, lstream.h: Add resizing_buffer_to_lisp_string().
objects-gtk.c: Fix typo.
objects-msw.c: Implement a smarter way of determining whether a font matches a
charset. Formerly we just looked at the "script" element of the
font spec, converted it to a code page, and compared it with the
code page derived from the charset. Now, as well as doing this,
we ask the font for the list of unicode ranges it supports, see
what range the charset falls into (#### bogus! need to do this
char-by-char), and see if any of the font's supported ranges
include the charset's range. also do some caching in
Vfont_signature_data of previous inquiries.
charset.h, text.c, mule-charset.c: New fun; extracted out of
Fmake_char() and declare prototype in charset.h.
text.h: introduce assert_by_line() to make
REP_BYTES_BY_FIRST_BYTE report the file and line more accurately
in an assertion failure.
unicode.c: make non-static (used in objects-msw.c), declare in charset.h.
mule\mule-category.el: Start implementing a category API compatible with FSF. Not there yet.
We need improvements to char-tables.
mule\mule-charset.el: Copy translation table code from FSF 21.1 and fix up. Eventually
we'll have them in XEmacs. (used in ccl) Not here quite yet, and
we need some improvements to char-tables.
mule\cyril-util.el, mule\cyrillic.el, mule\devan-util.el, mule\ethio-util.el, mule\korea-util.el, mule\mule-tty-init.el, mule\tibet-util.el, mule\viet-util.el, mule\vietnamese.el: Fix numerous compilation warnings. Fix up code related to
translation tables and other types of char-tables.
menubar-items.el: Move the frame commands from
the View menu to the File menu, to be consistent with how most other
programs do things. Move less-used revert/recover items to a submenu.
Make "recover" not prompt for a file, but recover the current buffer.
TODO.ben-mule-21-5: Create bug list for latest problems.
author | ben |
---|---|
date | Thu, 21 Mar 2002 07:31:30 +0000 |
parents | 79940b592197 |
children | e38acbeb1cae |
line wrap: on
line source
/* Fundamental definitions for XEmacs Lisp interpreter. Copyright (C) 1985-1987, 1992-1995 Free Software Foundation, Inc. Copyright (C) 1993-1996 Richard Mlynarik. Copyright (C) 1995, 1996, 2000, 2001, 2002 Ben Wing. This file is part of XEmacs. XEmacs is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. XEmacs is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with XEmacs; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* Synched up with: FSF 19.30. */ #ifndef INCLUDED_lisp_h_ #define INCLUDED_lisp_h_ /************************************************************************/ /* general definitions */ /************************************************************************/ /* ------------------------ include files ------------------- */ /* We include the following generally useful header files so that you don't have to worry about prototypes when using the standard C library functions and macros. These files shouldn't be excessively large so they shouldn't cause that much of a slowdown. */ #include <stdlib.h> #include <string.h> /* primarily for memcpy, etc. */ #include <stdio.h> /* NULL, etc. */ #include <ctype.h> #include <stdarg.h> #include <stddef.h> /* offsetof */ #include <sys/types.h> #include <limits.h> /* ------------------------ definition of EMACS_INT ------------------- */ /* EMACS_INT is the underlying integral type into which a Lisp_Object must fit. In particular, it must be large enough to contain a pointer. config.h can override this, e.g. to use `long long' for bigger lisp ints. #### In point of fact, it would NOT be a good idea for config.h to mess with EMACS_INT. A lot of code makes the basic assumption that EMACS_INT is the size of a pointer. */ #ifndef SIZEOF_EMACS_INT # define SIZEOF_EMACS_INT SIZEOF_VOID_P #endif #ifndef EMACS_INT # if SIZEOF_EMACS_INT == SIZEOF_LONG # define EMACS_INT long # elif SIZEOF_EMACS_INT == SIZEOF_INT # define EMACS_INT int # elif SIZEOF_EMACS_INT == SIZEOF_LONG_LONG # define EMACS_INT long long # else # error Unable to determine suitable type for EMACS_INT # endif #endif #ifndef EMACS_UINT # define EMACS_UINT unsigned EMACS_INT #endif #define BITS_PER_EMACS_INT (SIZEOF_EMACS_INT * BITS_PER_CHAR) /* ------------------------ basic char/int typedefs ------------------- */ /* The definitions we put here use typedefs to attribute specific meaning to types that by themselves are pretty general. Stuff pointed to by a char * or unsigned char * will nearly always be one of four types: a) pointer to internally-formatted text; b) pointer to text in some external format, which can be defined as all formats other than the internal one; c) pure ASCII text; d) binary data that is not meant to be interpreted as text. [A fifth possible type "e) a general pointer to memory" should be replaced with void *.] Using these more specific types rather than the general ones helps avoid the confusions that occur when the semantics of a char * argument being studied are unclear. Note that these typedefs are purely for documentation purposes; from the C code's perspective, they are exactly equivalent to `char *', `unsigned char *', etc., so you can freely use them with library functions declared as such. */ /* The data representing the text in a buffer is logically a set of Intbytes, declared as follows. */ typedef unsigned char Intbyte; /* The following should be used when you are working with internal data but for whatever reason need to have it declared a "char *". Examples are function arguments whose values are most commonly literal strings, or where you have to apply a stdlib string function to internal data. In general, you should avoid this where possible and use Intbyte instead, for consistency. For example, the new Mule workspace contains Intbyte versions of the stdlib string functions. */ typedef char CIntbyte; /* The data representing a string in "external" format (binary or any external encoding) is logically a set of Extbytes, declared as follows. Extbyte is guaranteed to be just a char, so for example strlen (Extbyte *) is OK. Extbyte is only a documentation device for referring to external text. */ typedef char Extbyte; typedef unsigned char UExtbyte; /* A byte in a string in binary format: */ typedef char Char_Binary; typedef signed char SChar_Binary; typedef unsigned char UChar_Binary; /* A byte in a string in entirely US-ASCII format: (Nothing outside the range 00 - 7F) */ typedef char Char_ASCII; typedef unsigned char UChar_ASCII; /* To the user, a buffer is made up of characters, declared as follows. In the non-Mule world, characters and Intbytes are equivalent. In the Mule world, a character requires (typically) 1 to 4 Intbytes for its representation in a buffer. */ typedef int Emchar; /* Different ways of referring to a position in a buffer. We use the typedefs in preference to 'EMACS_INT' to make it clearer what sort of position is being used. See extents.c for a description of the different positions. We put them here instead of in buffer.h (where they rightfully belong) to avoid syntax errors in function prototypes. */ typedef EMACS_INT Charbpos; typedef EMACS_INT Bytebpos; typedef EMACS_INT Membpos; /* Counts of bytes or chars */ typedef EMACS_INT Bytecount; typedef EMACS_INT Charcount; /* Counts of elements */ typedef EMACS_INT Elemcount; /* Hash codes */ typedef unsigned long Hashcode; #ifdef HAVE_INTTYPES_H #include <inttypes.h> #elif SIZEOF_VOID_P == SIZEOF_INT typedef int intptr_t; typedef unsigned int uintptr_t; #elif SIZEOF_VOID_P == SIZEOF_LONG typedef long intptr_t; typedef unsigned long uintptr_t; #elif defined(SIZEOF_LONG_LONG) && SIZEOF_VOID_P == SIZEOF_LONG_LONG typedef long long intptr_t; typedef unsigned long long uintptr_t; #else /* Just pray. May break, may not. */ typedef long intptr_t; typedef unsigned long uintptr_t; #endif /* ------------------------ dynamic arrays ------------------- */ #define Dynarr_declare(type) \ type *base; \ int elsize; \ int cur; \ int largest; \ int max typedef struct dynarr { Dynarr_declare (void); } Dynarr; void *Dynarr_newf (int elsize); void Dynarr_resize (void *dy, int size); void Dynarr_insert_many (void *d, const void *el, int len, int start); void Dynarr_delete_many (void *d, int start, int len); void Dynarr_free (void *d); #define Dynarr_new(type) ((type##_dynarr *) Dynarr_newf (sizeof (type))) #define Dynarr_new2(dynarr_type, type) \ ((dynarr_type *) Dynarr_newf (sizeof (type))) #define Dynarr_at(d, pos) ((d)->base[pos]) #define Dynarr_atp(d, pos) (&Dynarr_at (d, pos)) #define Dynarr_begin(d) Dynarr_atp (d, 0) #define Dynarr_end(d) Dynarr_atp (d, Dynarr_length (d)) #define Dynarr_sizeof(d) ((d)->cur * (d)->elsize) #define Dynarr_length(d) ((d)->cur) #define Dynarr_largest(d) ((d)->largest) #define Dynarr_reset(d) ((d)->cur = 0) #define Dynarr_add_many(d, el, len) Dynarr_insert_many (d, el, len, (d)->cur) #define Dynarr_insert_many_at_start(d, el, len) \ Dynarr_insert_many (d, el, len, 0) #define Dynarr_add_literal_string(d, s) Dynarr_add_many (d, s, sizeof (s) - 1) #define Dynarr_add_lisp_string(d, s, codesys) \ do { \ Lisp_Object dyna_ls_s = (s); \ Lisp_Object dyna_ls_cs = (codesys); \ Extbyte *dyna_ls_eb; \ Bytecount dyna_ls_bc; \ \ TO_EXTERNAL_FORMAT (LISP_STRING, dyna_ls_s, \ ALLOCA, (dyna_ls_eb, dyna_ls_bc), \ dyna_ls_cs); \ Dynarr_add_many (d, dyna_ls_eb, dyna_ls_bc); \ } while (0) #define Dynarr_add(d, el) ( \ (d)->cur >= (d)->max ? Dynarr_resize ((d), (d)->cur+1) : (void) 0, \ ((d)->base)[(d)->cur++] = (el), \ (d)->cur > (d)->largest ? (d)->largest = (d)->cur : (int) 0) /* The following defines will get you into real trouble if you aren't careful. But they can save a lot of execution time when used wisely. */ #define Dynarr_increment(d) ((d)->cur++) #define Dynarr_set_size(d, n) ((d)->cur = n) #define Dynarr_pop(d) \ (assert ((d)->cur > 0), (d)->cur--, Dynarr_at (d, (d)->cur)) #define Dynarr_delete(d, i) Dynarr_delete_many (d, i, len) #define Dynarr_delete_by_pointer(d, p) \ Dynarr_delete_many (d, (p) - ((d)->base), 1) #ifdef MEMORY_USAGE_STATS struct overhead_stats; Bytecount Dynarr_memory_usage (void *d, struct overhead_stats *stats); #endif /* Also define min() and max(). (Some compilers put them in strange places that won't be referenced by the above include files, such as 'macros.h' under Solaris.) */ #ifndef min #define min(a,b) (((a) <= (b)) ? (a) : (b)) #endif #ifndef max #define max(a,b) (((a) > (b)) ? (a) : (b)) #endif /* Memory allocation */ void malloc_warning (const char *); void *xmalloc (Bytecount size); void *xmalloc_and_zero (Bytecount size); void *xrealloc (void *, Bytecount size); char *xstrdup (const char *); /* generally useful */ #define countof(x) ((int) (sizeof(x)/sizeof((x)[0]))) #define xnew(type) ((type *) xmalloc (sizeof (type))) #define xnew_array(type, len) ((type *) xmalloc ((len) * sizeof (type))) #define xnew_and_zero(type) ((type *) xmalloc_and_zero (sizeof (type))) #define xzero(lvalue) ((void) memset (&(lvalue), '\0', sizeof (lvalue))) #define xnew_array_and_zero(type, len) ((type *) xmalloc_and_zero ((len) * sizeof (type))) #define XREALLOC_ARRAY(ptr, type, len) ((void) (ptr = (type *) xrealloc (ptr, (len) * sizeof (type)))) #define alloca_new(type) ((type *) alloca (sizeof (type))) #define alloca_array(type, len) ((type *) alloca ((len) * sizeof (type))) /* also generally useful if you want to avoid arbitrary size limits but don't need a full dynamic array. Assumes that BASEVAR points to a malloced array of TYPE objects (or possibly a NULL pointer, if SIZEVAR is 0), with the total size stored in SIZEVAR. This macro will realloc BASEVAR as necessary so that it can hold at least NEEDED_SIZE objects. The reallocing is done by doubling, which ensures constant amortized time per element. */ #define DO_REALLOC(basevar, sizevar, needed_size, type) do { \ Bytecount do_realloc_needed_size = (needed_size); \ if ((sizevar) < do_realloc_needed_size) \ { \ if ((sizevar) < 32) \ (sizevar) = 32; \ while ((sizevar) < do_realloc_needed_size) \ (sizevar) *= 2; \ XREALLOC_ARRAY (basevar, type, (sizevar)); \ } \ } while (0) #ifdef ERROR_CHECK_MALLOC void xfree_1 (void *); #define xfree(lvalue) do \ { \ void **xfree_ptr = (void **) &(lvalue); \ xfree_1 (*xfree_ptr); \ *xfree_ptr = (void *) 0xDEADBEEF; \ } while (0) #else void xfree (void *); #endif /* ERROR_CHECK_MALLOC */ #ifndef PRINTF_ARGS # if defined (__GNUC__) && (__GNUC__ >= 2) # define PRINTF_ARGS(string_index,first_to_check) \ __attribute__ ((format (printf, string_index, first_to_check))) # else # define PRINTF_ARGS(string_index,first_to_check) # endif /* GNUC */ #endif #ifndef DOESNT_RETURN # if defined __GNUC__ # if ((__GNUC__ > 2) || (__GNUC__ == 2) && (__GNUC_MINOR__ >= 5)) # define DOESNT_RETURN void # define DECLARE_DOESNT_RETURN(decl) \ extern void decl __attribute__ ((noreturn)) # define DECLARE_DOESNT_RETURN_GCC_ATTRIBUTE_SYNTAX_SUCKS(decl,str,idx) \ /* Should be able to state multiple independent __attribute__s, but \ the losing syntax doesn't work that way, and screws losing cpp */ \ extern void decl \ __attribute__ ((noreturn, format (printf, str, idx))) # else # define DOESNT_RETURN void volatile # define DECLARE_DOESNT_RETURN(decl) extern void volatile decl # define DECLARE_DOESNT_RETURN_GCC_ATTRIBUTE_SYNTAX_SUCKS(decl,str,idx) \ extern void volatile decl PRINTF_ARGS(str,idx) # endif /* GNUC 2.5 */ # else # define DOESNT_RETURN void # define DECLARE_DOESNT_RETURN(decl) extern void decl # define DECLARE_DOESNT_RETURN_GCC_ATTRIBUTE_SYNTAX_SUCKS(decl,str,idx) \ extern void decl PRINTF_ARGS(str,idx) # endif /* GNUC */ #endif /* Another try to fix SunPro C compiler warnings */ /* "end-of-loop code not reached" */ /* "statement not reached */ #if defined __SUNPRO_C || defined __USLC__ #define RETURN_SANS_WARNINGS if (1) return #define RETURN_NOT_REACHED(value) #else #define RETURN_SANS_WARNINGS return #define RETURN_NOT_REACHED(value) return value; #endif /* No type has a greater alignment requirement than max_align_t. (except perhaps for types we don't use, like long double) */ typedef union { struct { long l; } l; struct { void *p; } p; struct { void (*f)(void); } f; struct { double d; } d; } max_align_t; /* ALIGNOF returns the required alignment of a type -- i.e. a value such that data of this type must begin at a memory address which is a multiple of that value. For simple types, this is often the same size as the type itself. */ #ifndef ALIGNOF # if defined (__GNUC__) && (__GNUC__ >= 2) /* gcc has an extension that gives us exactly what we want. */ # define ALIGNOF(type) __alignof__ (type) # elif ! defined (__cplusplus) /* The following is mostly portable, except that: - it doesn't work for inside out declarations like void (*) (void). (so just call ALIGNOF with a typedef'ed name) - it doesn't work with C++. The C++ committee has decided, in its infinite wisdom, that: "Types must be declared in declarations, not in expressions." */ # define ALIGNOF(type) offsetof (struct { char c; type member; }, member) # else /* C++ is annoying, but it has a big bag of tricks. The following doesn't have the "inside out" declaration bug C does. */ template<typename T> struct alignment_trick { char c; T member; }; # define ALIGNOF(type) offsetof (alignment_trick<type>, member) # endif #endif /* ALIGNOF */ /* ALIGN_SIZE returns the smallest size greater than or equal to LEN which is a multiple of UNIT. This can be used to assure that data that follows a block of the returned size is of correct alignment for a type whose alignment (as returned by ALIGNOF) is UNIT (provided that the block itself is correctly aligned for this type; memory returned by malloc() is guaranteed to be correctly aligned for all types). */ #define ALIGN_SIZE(len, unit) \ ((((len) + (unit) - 1) / (unit)) * (unit)) /* MAX_ALIGN_SIZE returns the smallest size greater than or equal to LEN which guarantees that data following a block of such size is correctly aligned for all types (provided that the block itself is so aligned, which is the case for memory returned by malloc()). */ #define MAX_ALIGN_SIZE(len) ALIGN_SIZE (len, ALIGNOF (max_align_t)) /* #### Yuck, this is kind of evil */ #define ALIGN_PTR(ptr, unit) \ ((void *) ALIGN_SIZE ((size_t) (ptr), unit)) #ifndef DO_NOTHING #define DO_NOTHING do {} while (0) #endif #ifndef DECLARE_NOTHING #define DECLARE_NOTHING struct nosuchstruct #endif /* We define assert iff USE_ASSERTIONS or DEBUG_XEMACS is defined. Otherwise we define it to be empty. Quantify has shown that the time the assert checks take is measurable so let's not include them in production binaries. If ASSERTIONS_DONT_ABORT defined, we will continue after assertion failures. assert_at_line() is used for asserts inside of inline functions called from error-checking macros. If we're not tricky, we just get the file and line of the inline function, which is not very useful. */ #ifdef USE_ASSERTIONS /* Highly dubious kludge */ /* (thanks, Jamie, I feel better now -- ben) */ void assert_failed (const char *, int, const char *); # define abort() (assert_failed (__FILE__, __LINE__, "abort()")) # define assert(x) ((x) ? (void) 0 : assert_failed (__FILE__, __LINE__, #x)) # define assert_at_line(x, file, line) \ ((x) ? (void) 0 : assert_failed (file, line, #x)) #else # ifdef DEBUG_XEMACS # define assert(x) ((x) ? (void) 0 : (void) abort ()) # define assert_at_line(x, file, line) assert (x) # else # define assert(x) ((void) 0) # define assert_at_line(x, file, line) assert (x) # endif #endif #if 0 #ifdef USE_ASSERTIONS /* Highly dubious kludge */ /* (thanks, Jamie, I feel better now -- ben) */ void assert_failed (const char *, int, const char *); # define abort() (assert_failed (__FILE__, __LINE__, "abort()")) # define assert(x) ((x) ? 1 : (assert_failed (__FILE__, __LINE__, #x), 0)) #else # ifdef DEBUG_XEMACS # define assert(x) ((x) ? 1 : ((void) abort (), 0)) # else # define assert(x) (1) # endif #endif #endif /* 0 */ /*#ifdef DEBUG_XEMACS*/ #define REGISTER #define register /*#else*/ /*#define REGISTER register*/ /*#endif*/ /************************************************************************/ /* typedefs */ /************************************************************************/ /* Note that the simplest typedefs are near the top of this file. */ /* We put typedefs here so that prototype declarations don't choke. Note that we don't actually declare the structures here (except maybe for simple structures like Dynarrs); that keeps them private to the routines that actually use them. */ /* ------------------------------- */ /* Error_Behavior typedefs */ /* ------------------------------- */ #ifndef ERROR_CHECK_TYPECHECK typedef enum error_behavior { ERROR_ME, ERROR_ME_NOT, ERROR_ME_WARN } Error_Behavior; #define ERRB_EQ(a, b) ((a) == (b)) #else /* By defining it like this, we provide strict type-checking for code that lazily uses ints. */ typedef struct _error_behavior_struct_ { int really_unlikely_name_to_have_accidentally_in_a_non_errb_structure; } Error_Behavior; extern Error_Behavior ERROR_ME; extern Error_Behavior ERROR_ME_NOT; extern Error_Behavior ERROR_ME_WARN; #define ERRB_EQ(a, b) \ ((a).really_unlikely_name_to_have_accidentally_in_a_non_errb_structure == \ (b).really_unlikely_name_to_have_accidentally_in_a_non_errb_structure) #endif /* ------------------------------- */ /* Empty structures and typedefs */ /* ------------------------------- */ struct buffer; /* "buffer.h" */ struct console; /* "console.h" */ struct device; /* "device.h" */ struct extent_fragment; struct extent; struct frame; /* "frame.h" */ struct window; /* "window.h" */ struct stat; /* <sys/stat.h> */ struct utimbuf; /* "systime.h" or <utime.h> */ struct display_line; struct display_glyph_area; struct display_box; struct redisplay_info; struct window_mirror; struct scrollbar_instance; struct font_metric_info; struct face_cachel; struct console_type_entry; /* This is shared by process.h, events.h and others in future. See events.h for description */ typedef unsigned int USID; typedef int face_index; typedef int glyph_index; typedef struct lstream Lstream; typedef struct extent *EXTENT; typedef struct Lisp_Event Lisp_Event; /* "events.h" */ typedef struct Lisp_Face Lisp_Face; /* "faces.h" */ typedef struct Lisp_Process Lisp_Process; /* "procimpl.h" */ typedef struct Lisp_Color_Instance Lisp_Color_Instance; typedef struct Lisp_Font_Instance Lisp_Font_Instance; typedef struct Lisp_Image_Instance Lisp_Image_Instance; typedef struct Lisp_Gui_Item Lisp_Gui_Item; /* ------------------------------- */ /* Dynarr typedefs */ /* ------------------------------- */ /* Dynarr typedefs -- basic types first */ typedef struct { Dynarr_declare (Intbyte); } Intbyte_dynarr; typedef struct { Dynarr_declare (Extbyte); } Extbyte_dynarr; typedef struct { Dynarr_declare (Emchar); } Emchar_dynarr; typedef struct { Dynarr_declare (char); } char_dynarr; typedef struct { Dynarr_declare (char *); } char_ptr_dynarr; typedef unsigned char unsigned_char; typedef struct { Dynarr_declare (unsigned char); } unsigned_char_dynarr; typedef unsigned long unsigned_long; typedef struct { Dynarr_declare (unsigned long); } unsigned_long_dynarr; typedef struct { Dynarr_declare (int); } int_dynarr; typedef struct { Dynarr_declare (Charbpos); } Charbpos_dynarr; typedef struct { Dynarr_declare (Bytebpos); } Bytebpos_dynarr; typedef struct { Dynarr_declare (Charcount); } Charcount_dynarr; typedef struct { Dynarr_declare (Bytecount); } Bytecount_dynarr; /* Dynarr typedefs -- more complex types */ typedef struct { Dynarr_declare (struct face_cachel); } face_cachel_dynarr; typedef struct { Dynarr_declare (struct glyph_cachel); } glyph_cachel_dynarr; typedef struct { Dynarr_declare (struct console_type_entry); } console_type_entry_dynarr; /* ------------------------------- */ /* enum typedefs */ /* ------------------------------- */ enum run_hooks_condition { RUN_HOOKS_TO_COMPLETION, RUN_HOOKS_UNTIL_SUCCESS, RUN_HOOKS_UNTIL_FAILURE }; #ifdef HAVE_TOOLBARS enum toolbar_pos { TOP_TOOLBAR, BOTTOM_TOOLBAR, LEFT_TOOLBAR, RIGHT_TOOLBAR }; #endif enum edge_style { EDGE_ETCHED_IN, EDGE_ETCHED_OUT, EDGE_BEVEL_IN, EDGE_BEVEL_OUT }; enum munge_me_out_the_door { MUNGE_ME_FUNCTION_KEY, MUNGE_ME_KEY_TRANSLATION }; /* ------------------------------- */ /* misc */ /* ------------------------------- */ #ifdef MEMORY_USAGE_STATS /* This structure is used to keep statistics on the amount of memory in use. WAS_REQUESTED stores the actual amount of memory that was requested of the allocation function. The *_OVERHEAD fields store the additional amount of memory that was grabbed by the functions to facilitate allocation, reallocation, etc. MALLOC_OVERHEAD is for memory allocated with malloc(); DYNARR_OVERHEAD is for dynamic arrays; GAP_OVERHEAD is for gap arrays. Note that for (e.g.) dynamic arrays, there is both MALLOC_OVERHEAD and DYNARR_OVERHEAD memory: The dynamic array allocates memory above and beyond what was asked of it, and when it in turns allocates memory using malloc(), malloc() allocates memory beyond what it was asked to allocate. Functions that accept a structure of this sort do not initialize the fields to 0, and add any existing values to whatever was there before; this way, you can get a cumulative effect. */ struct overhead_stats { int was_requested; int malloc_overhead; int dynarr_overhead; int gap_overhead; }; #endif /* MEMORY_USAGE_STATS */ /************************************************************************/ /* Definition of Lisp_Object data type */ /************************************************************************/ /* Define the fundamental Lisp data structures */ /* This is the set of Lisp data types */ enum Lisp_Type { Lisp_Type_Record, Lisp_Type_Int_Even, Lisp_Type_Char, Lisp_Type_Int_Odd }; #define POINTER_TYPE_P(type) ((type) == Lisp_Type_Record) /* Overridden by m/next.h */ #ifndef ASSERT_VALID_POINTER # define ASSERT_VALID_POINTER(pnt) (assert ((((EMACS_UINT) pnt) & 3) == 0)) #endif #define GCMARKBITS 0 #define GCTYPEBITS 2 #define GCBITS 2 #define INT_GCBITS 1 #define INT_VALBITS (BITS_PER_EMACS_INT - INT_GCBITS) #define VALBITS (BITS_PER_EMACS_INT - GCBITS) #define EMACS_INT_MAX ((EMACS_INT) ((1UL << (INT_VALBITS - 1)) -1UL)) #define EMACS_INT_MIN (-(EMACS_INT_MAX) - 1) #ifdef USE_UNION_TYPE # include "lisp-union.h" #else /* !USE_UNION_TYPE */ # include "lisp-disunion.h" #endif /* !USE_UNION_TYPE */ #define XPNTR(x) ((void *) XPNTRVAL(x)) /* WARNING WARNING WARNING. You must ensure on your own that proper GC protection is provided for the elements in this array. */ typedef struct { Dynarr_declare (Lisp_Object); } Lisp_Object_dynarr; typedef struct { Dynarr_declare (Lisp_Object *); } Lisp_Object_ptr_dynarr; /* Close your eyes now lest you vomit or spontaneously combust ... */ #define HACKEQ_UNSAFE(obj1, obj2) \ (EQ (obj1, obj2) || (!POINTER_TYPE_P (XTYPE (obj1)) \ && !POINTER_TYPE_P (XTYPE (obj2)) \ && XCHAR_OR_INT (obj1) == XCHAR_OR_INT (obj2))) #ifdef DEBUG_XEMACS extern int debug_issue_ebola_notices; int eq_with_ebola_notice (Lisp_Object, Lisp_Object); #define EQ_WITH_EBOLA_NOTICE(obj1, obj2) \ (debug_issue_ebola_notices ? eq_with_ebola_notice (obj1, obj2) \ : EQ (obj1, obj2)) #else #define EQ_WITH_EBOLA_NOTICE(obj1, obj2) EQ (obj1, obj2) #endif /* OK, you can open them again */ /************************************************************************/ /** Definitions of basic Lisp objects **/ /************************************************************************/ #include "lrecord.h" /*------------------------------ unbound -------------------------------*/ /* Qunbound is a special Lisp_Object (actually of type symbol-value-forward), that can never be visible to the Lisp caller and thus can be used in the C code to mean "no such value". */ #define UNBOUNDP(val) EQ (val, Qunbound) /* Evaluate expr, return it if it's not Qunbound. */ #define RETURN_IF_NOT_UNBOUND(expr) do \ { \ Lisp_Object ret_nunb_val = (expr); \ if (!UNBOUNDP (ret_nunb_val)) \ RETURN_SANS_WARNINGS ret_nunb_val; \ } while (0) /*------------------------------- cons ---------------------------------*/ /* In a cons, the markbit of the car is the gc mark bit */ struct Lisp_Cons { struct lrecord_header lheader; Lisp_Object car, cdr; }; typedef struct Lisp_Cons Lisp_Cons; #if 0 /* FSFmacs */ /* Like a cons, but records info on where the text lives that it was read from */ /* This is not really in use now */ struct Lisp_Buffer_Cons { Lisp_Object car, cdr; struct buffer *buffer; int charbpos; }; #endif DECLARE_LRECORD (cons, Lisp_Cons); #define XCONS(x) XRECORD (x, cons, Lisp_Cons) #define XSETCONS(x, p) XSETRECORD (x, p, cons) #define wrap_cons(p) wrap_record (p, cons) #define CONSP(x) RECORDP (x, cons) #define CHECK_CONS(x) CHECK_RECORD (x, cons) #define CONCHECK_CONS(x) CONCHECK_RECORD (x, cons) #define CONS_MARKED_P(c) MARKED_RECORD_HEADER_P(&((c)->lheader)) #define MARK_CONS(c) MARK_RECORD_HEADER (&((c)->lheader)) extern Lisp_Object Qnil; #define NILP(x) EQ (x, Qnil) #define XCAR(a) (XCONS (a)->car) #define XCDR(a) (XCONS (a)->cdr) #define LISTP(x) (CONSP(x) || NILP(x)) #define CHECK_LIST(x) do { \ if (!LISTP (x)) \ dead_wrong_type_argument (Qlistp, x); \ } while (0) #define CONCHECK_LIST(x) do { \ if (!LISTP (x)) \ x = wrong_type_argument (Qlistp, x); \ } while (0) /*---------------------- list traversal macros -------------------------*/ /* Note: These macros are for traversing through a list in some format, and executing code that you specify on each member of the list. There are two kinds of macros, those requiring surrounding braces, and those not requiring this. Which type of macro will be indicated. The general format for using a brace-requiring macro is { LIST_LOOP_3 (elt, list, tail) execute_code_here; } or { LIST_LOOP_3 (elt, list, tail) { execute_code_here; } } You can put variable declarations between the brace and beginning of macro, but NOTHING ELSE. The brace-requiring macros typically declare themselves any arguments that are initialized and iterated by the macros. If for some reason you need to declare these arguments yourself (e.g. to do something on them before the iteration starts, use the _NO_DECLARE versions of the macros.) */ /* There are two basic kinds of macros: those that handle "internal" lists that are known to be correctly structured (i.e. first element is a cons or nil, and the car of each cons is also a cons or nil, and there are no circularities), and those that handle "external" lists, where the list may have any sort of invalid formation. This is reflected in the names: those with "EXTERNAL_" work with external lists, and those without this prefix work with internal lists. The internal-list macros will hit an assertion failure if the structure is ill-formed; the external-list macros will signal an error in this case, either a malformed-list error or a circular-list error. Note also that the simplest external list iterator, EXTERNAL_LIST_LOOP, does *NOT* check for circularities. Therefore, make sure you call QUIT each iteration or so. However, it's probably easier just to use EXTERNAL_LIST_LOOP_2, which is easier to use in any case. */ /* LIST_LOOP and EXTERNAL_LIST_LOOP are the simplest macros. They don't require brace surrounding, and iterate through a list, which may or may not known to be syntactically correct. EXTERNAL_LIST_LOOP is for those not known to be correct, and it detects and signals a malformed list error when encountering a problem. Circularities, however, are not handled, and cause looping forever, so make sure to include a QUIT. These functions also accept two args, TAIL (set progressively to each cons starting with the first), and LIST, the list to iterate over. TAIL needs to be defined by the program. In each iteration, you can retrieve the current list item using XCAR (tail), or destructively modify the list using XSETCAR (tail, ...). */ #define LIST_LOOP(tail, list) \ for (tail = list; \ !NILP (tail); \ tail = XCDR (tail)) #define EXTERNAL_LIST_LOOP(tail, list) \ for (tail = list; !NILP (tail); tail = XCDR (tail)) \ if (!CONSP (tail)) \ signal_malformed_list_error (list); \ else /* The following macros are the "core" macros for list traversal. *** ALL OF THESE MACROS MUST BE DECLARED INSIDE BRACES -- SEE ABOVE. *** LIST_LOOP_2 and EXTERNAL_LIST_LOOP_2 are the standard, most-often used macros. They take two arguments, an element variable ELT and the list LIST. ELT is automatically declared, and set to each element in turn from LIST. LIST_LOOP_3 and EXTERNAL_LIST_LOOP_3 are the same, but they have a third argument TAIL, another automatically-declared variable. At each iteration, this one points to the cons cell for which ELT is the car. EXTERNAL_LIST_LOOP_4 is like EXTERNAL_LIST_LOOP_3 but takes an additional LEN argument, again automatically declared, which counts the number of iterations gone by. It is 0 during the first iteration. EXTERNAL_LIST_LOOP_4_NO_DECLARE is like EXTERNAL_LIST_LOOP_4 but none of the variables are automatically declared, and so you need to declare them yourself. (ELT and TAIL are Lisp_Objects, and LEN is an EMACS_INT.) */ #define LIST_LOOP_2(elt, list) \ LIST_LOOP_3(elt, list, unused_tail_##elt) #define LIST_LOOP_3(elt, list, tail) \ Lisp_Object elt, tail; \ for (tail = list; \ NILP (tail) ? \ 0 : (elt = XCAR (tail), 1); \ tail = XCDR (tail)) /* The following macros are for traversing lisp lists. Signal an error if LIST is not properly acyclic and nil-terminated. Use tortoise/hare algorithm to check for cycles, but only if it looks like the list is getting too long. Not only is the hare faster than the tortoise; it even gets a head start! */ /* Optimized and safe macros for looping over external lists. */ #define CIRCULAR_LIST_SUSPICION_LENGTH 1024 #define EXTERNAL_LIST_LOOP_1(list) \ Lisp_Object ELL1_elt, ELL1_hare, ELL1_tortoise; \ EMACS_INT ELL1_len; \ PRIVATE_EXTERNAL_LIST_LOOP_6 (ELL1_elt, list, ELL1_len, ELL1_hare, \ ELL1_tortoise, CIRCULAR_LIST_SUSPICION_LENGTH) #define EXTERNAL_LIST_LOOP_2(elt, list) \ Lisp_Object elt, hare_##elt, tortoise_##elt; \ EMACS_INT len_##elt; \ PRIVATE_EXTERNAL_LIST_LOOP_6 (elt, list, len_##elt, hare_##elt, \ tortoise_##elt, CIRCULAR_LIST_SUSPICION_LENGTH) #define EXTERNAL_LIST_LOOP_3(elt, list, tail) \ Lisp_Object elt, tail, tortoise_##elt; \ EMACS_INT len_##elt; \ PRIVATE_EXTERNAL_LIST_LOOP_6 (elt, list, len_##elt, tail, \ tortoise_##elt, CIRCULAR_LIST_SUSPICION_LENGTH) #define EXTERNAL_LIST_LOOP_4_NO_DECLARE(elt, list, tail, len) \ Lisp_Object tortoise_##elt; \ PRIVATE_EXTERNAL_LIST_LOOP_6 (elt, list, len, tail, \ tortoise_##elt, CIRCULAR_LIST_SUSPICION_LENGTH) #define EXTERNAL_LIST_LOOP_4(elt, list, tail, len) \ Lisp_Object elt, tail, tortoise_##elt; \ EMACS_INT len; \ PRIVATE_EXTERNAL_LIST_LOOP_6 (elt, list, len, tail, \ tortoise_##elt, CIRCULAR_LIST_SUSPICION_LENGTH) #define PRIVATE_EXTERNAL_LIST_LOOP_6(elt, list, len, hare, \ tortoise, suspicion_length) \ for (tortoise = hare = list, len = 0; \ \ (CONSP (hare) ? ((elt = XCAR (hare)), 1) : \ (NILP (hare) ? 0 : \ (signal_malformed_list_error (list), 0))); \ \ hare = XCDR (hare), \ (void) \ ((++len > suspicion_length) \ && \ ((((len & 1) != 0) && (tortoise = XCDR (tortoise), 0)), \ (EQ (hare, tortoise) && (signal_circular_list_error (list), 0))))) /* GET_LIST_LENGTH and GET_EXTERNAL_LIST_LENGTH: These two macros return the length of LIST (either an internal or external list, according to which macro is used), stored into LEN (which must be declared by the caller). Circularities are trapped in external lists (and cause errors). Neither macro need be declared inside brackets. */ #define GET_LIST_LENGTH(list, len) do { \ Lisp_Object GLL_tail; \ for (GLL_tail = list, len = 0; \ !NILP (GLL_tail); \ GLL_tail = XCDR (GLL_tail), ++len) \ DO_NOTHING; \ } while (0) #define GET_EXTERNAL_LIST_LENGTH(list, len) \ do { \ Lisp_Object GELL_elt, GELL_tail; \ EXTERNAL_LIST_LOOP_4_NO_DECLARE (GELL_elt, list, GELL_tail, len) \ ; \ } while (0) /* For a list that's known to be in valid list format, where we may be deleting the current element out of the list -- will abort() if the list is not in valid format */ #define LIST_LOOP_DELETING(consvar, nextconsvar, list) \ for (consvar = list; \ !NILP (consvar) ? (nextconsvar = XCDR (consvar), 1) :0; \ consvar = nextconsvar) /* LIST_LOOP_DELETE_IF and EXTERNAL_LIST_LOOP_DELETE_IF: These two macros delete all elements of LIST (either an internal or external list, according to which macro is used) satisfying CONDITION, a C expression referring to variable ELT. ELT is automatically declared. Circularities are trapped in external lists (and cause errors). Neither macro need be declared inside brackets. */ #define LIST_LOOP_DELETE_IF(elt, list, condition) do { \ /* Do not use ##list when creating new variables because \ that may not be just a variable name. */ \ Lisp_Object prev_tail_##elt = Qnil; \ LIST_LOOP_3 (elt, list, tail_##elt) \ { \ if (condition) \ { \ if (NILP (prev_tail_##elt)) \ list = XCDR (tail_##elt); \ else \ XCDR (prev_tail_##elt) = XCDR (tail_##elt); \ } \ else \ prev_tail_##elt = tail_##elt; \ } \ } while (0) #define EXTERNAL_LIST_LOOP_DELETE_IF(elt, list, condition) do { \ Lisp_Object prev_tail_##elt = Qnil; \ EXTERNAL_LIST_LOOP_4 (elt, list, tail_##elt, len_##elt) \ { \ if (condition) \ { \ if (NILP (prev_tail_##elt)) \ list = XCDR (tail_##elt); \ else \ XCDR (prev_tail_##elt) = XCDR (tail_##elt); \ /* Keep tortoise from ever passing hare. */ \ len_##elt = 0; \ } \ else \ prev_tail_##elt = tail_##elt; \ } \ } while (0) /* Macros for looping over external alists. *** ALL OF THESE MACROS MUST BE DECLARED INSIDE BRACES -- SEE ABOVE. *** EXTERNAL_ALIST_LOOP_4 is similar to EXTERNAL_LIST_LOOP_2, but it assumes the elements are aconses (the elements in an alist) and sets two additional argument variables ELT_CAR and ELT_CDR to the car and cdr of the acons. All of the variables ELT, ELT_CAR and ELT_CDR are automatically declared. EXTERNAL_ALIST_LOOP_5 adds a TAIL argument to EXTERNAL_ALIST_LOOP_4, just like EXTERNAL_LIST_LOOP_3 does, and again TAIL is automatically declared. EXTERNAL_ALIST_LOOP_6 adds a LEN argument to EXTERNAL_ALIST_LOOP_5, just like EXTERNAL_LIST_LOOP_4 does, and again LEN is automatically declared. EXTERNAL_ALIST_LOOP_6_NO_DECLARE does not declare any of its arguments, just like EXTERNAL_LIST_LOOP_4_NO_DECLARE, and so these must be declared manually. */ /* Optimized and safe macros for looping over external alists. */ #define EXTERNAL_ALIST_LOOP_4(elt, elt_car, elt_cdr, list) \ Lisp_Object elt, elt_car, elt_cdr; \ Lisp_Object hare_##elt, tortoise_##elt; \ EMACS_INT len_##elt; \ PRIVATE_EXTERNAL_ALIST_LOOP_8 (elt, elt_car, elt_cdr, list, \ len_##elt, hare_##elt, tortoise_##elt, \ CIRCULAR_LIST_SUSPICION_LENGTH) #define EXTERNAL_ALIST_LOOP_5(elt, elt_car, elt_cdr, list, tail) \ Lisp_Object elt, elt_car, elt_cdr, tail; \ Lisp_Object tortoise_##elt; \ EMACS_INT len_##elt; \ PRIVATE_EXTERNAL_ALIST_LOOP_8 (elt, elt_car, elt_cdr, list, \ len_##elt, tail, tortoise_##elt, \ CIRCULAR_LIST_SUSPICION_LENGTH) \ #define EXTERNAL_ALIST_LOOP_6(elt, elt_car, elt_cdr, list, tail, len) \ Lisp_Object elt, elt_car, elt_cdr, tail; \ EMACS_INT len; \ Lisp_Object tortoise_##elt; \ PRIVATE_EXTERNAL_ALIST_LOOP_8 (elt, elt_car, elt_cdr, list, \ len, tail, tortoise_##elt, \ CIRCULAR_LIST_SUSPICION_LENGTH) #define EXTERNAL_ALIST_LOOP_6_NO_DECLARE(elt, elt_car, elt_cdr, list, \ tail, len) \ Lisp_Object tortoise_##elt; \ PRIVATE_EXTERNAL_ALIST_LOOP_8 (elt, elt_car, elt_cdr, list, \ len, tail, tortoise_##elt, \ CIRCULAR_LIST_SUSPICION_LENGTH) #define PRIVATE_EXTERNAL_ALIST_LOOP_8(elt, elt_car, elt_cdr, list, len, \ hare, tortoise, suspicion_length) \ PRIVATE_EXTERNAL_LIST_LOOP_6 (elt, list, len, hare, tortoise, \ suspicion_length) \ if (CONSP (elt) ? (elt_car = XCAR (elt), elt_cdr = XCDR (elt), 0) :1) \ continue; \ else /* Macros for looping over external property lists. *** ALL OF THESE MACROS MUST BE DECLARED INSIDE BRACES -- SEE ABOVE. *** EXTERNAL_PROPERTY_LIST_LOOP_3 maps over an external list assumed to be a property list, consisting of alternating pairs of keys (typically symbols or keywords) and values. Each iteration processes one such pair out of LIST, assigning the two elements to KEY and VALUE respectively. Malformed lists and circularities are trapped as usual, and in addition, property lists with an odd number of elements also signal an error. EXTERNAL_PROPERTY_LIST_LOOP_4 adds a TAIL argument to EXTERNAL_PROPERTY_LIST_LOOP_3, just like EXTERNAL_LIST_LOOP_3 does, and again TAIL is automatically declared. EXTERNAL_PROPERTY_LIST_LOOP_5 adds a LEN argument to EXTERNAL_PROPERTY_LIST_LOOP_4, just like EXTERNAL_LIST_LOOP_4 does, and again LEN is automatically declared. Note that in this case, LEN counts the iterations, NOT the total number of list elements processed, which is 2 * LEN. EXTERNAL_PROPERTY_LIST_LOOP_5_NO_DECLARE does not declare any of its arguments, just like EXTERNAL_LIST_LOOP_4_NO_DECLARE, and so these must be declared manually. */ /* Optimized and safe macros for looping over external property lists. */ #define EXTERNAL_PROPERTY_LIST_LOOP_3(key, value, list) \ Lisp_Object key, value, hare_##key, tortoise_##key; \ EMACS_INT len_##key; \ EXTERNAL_PROPERTY_LIST_LOOP_7 (key, value, list, len_##key, hare_##key, \ tortoise_##key, CIRCULAR_LIST_SUSPICION_LENGTH) #define EXTERNAL_PROPERTY_LIST_LOOP_4(key, value, list, tail) \ Lisp_Object key, value, tail, tortoise_##key; \ EMACS_INT len_##key; \ EXTERNAL_PROPERTY_LIST_LOOP_7 (key, value, list, len_##key, tail, \ tortoise_##key, CIRCULAR_LIST_SUSPICION_LENGTH) #define EXTERNAL_PROPERTY_LIST_LOOP_5(key, value, list, tail, len) \ Lisp_Object key, value, tail, tortoise_##key; \ EMACS_INT len; \ EXTERNAL_PROPERTY_LIST_LOOP_7 (key, value, list, len, tail, \ tortoise_##key, CIRCULAR_LIST_SUSPICION_LENGTH) #define EXTERNAL_PROPERTY_LIST_LOOP_5_NO_DECLARE(key, value, list, \ tail, len) \ Lisp_Object tortoise_##key; \ EXTERNAL_PROPERTY_LIST_LOOP_7 (key, value, list, len, tail, \ tortoise_##key, CIRCULAR_LIST_SUSPICION_LENGTH) #define EXTERNAL_PROPERTY_LIST_LOOP_7(key, value, list, len, hare, \ tortoise, suspicion_length) \ for (tortoise = hare = list, len = 0; \ \ ((CONSP (hare) && \ (key = XCAR (hare), \ hare = XCDR (hare), \ (CONSP (hare) ? 1 : \ (signal_malformed_property_list_error (list), 0)))) ? \ (value = XCAR (hare), 1) : \ (NILP (hare) ? 0 : \ (signal_malformed_property_list_error (list), 0))); \ \ hare = XCDR (hare), \ ((++len < suspicion_length) ? \ ((void) 0) : \ (((len & 1) ? \ ((void) (tortoise = XCDR (XCDR (tortoise)))) : \ ((void) 0)) \ , \ (EQ (hare, tortoise) ? \ ((void) signal_circular_property_list_error (list)) : \ ((void) 0))))) /* For a property list (alternating keywords/values) that may not be in valid list format -- will signal an error if the list is not in valid format. CONSVAR is used to keep track of the iterations without modifying PLIST. We have to be tricky to still keep the same C format.*/ #define EXTERNAL_PROPERTY_LIST_LOOP(tail, key, value, plist) \ for (tail = plist; \ (CONSP (tail) && CONSP (XCDR (tail)) ? \ (key = XCAR (tail), value = XCAR (XCDR (tail))) : \ (key = Qunbound, value = Qunbound)), \ !NILP (tail); \ tail = XCDR (XCDR (tail))) \ if (UNBOUNDP (key)) \ Fsignal (Qmalformed_property_list, list1 (plist)); \ else #define PROPERTY_LIST_LOOP(tail, key, value, plist) \ for (tail = plist; \ NILP (tail) ? 0 : \ (key = XCAR (tail), tail = XCDR (tail), \ value = XCAR (tail), tail = XCDR (tail), 1); \ ) /* Return 1 if LIST is properly acyclic and nil-terminated, else 0. */ INLINE_HEADER int TRUE_LIST_P (Lisp_Object object); INLINE_HEADER int TRUE_LIST_P (Lisp_Object object) { Lisp_Object hare, tortoise; EMACS_INT len; for (hare = tortoise = object, len = 0; CONSP (hare); hare = XCDR (hare), len++) { if (len < CIRCULAR_LIST_SUSPICION_LENGTH) continue; if (len & 1) tortoise = XCDR (tortoise); else if (EQ (hare, tortoise)) return 0; } return NILP (hare); } /* Signal an error if LIST is not properly acyclic and nil-terminated. */ #define CHECK_TRUE_LIST(list) do { \ Lisp_Object CTL_list = (list); \ Lisp_Object CTL_hare, CTL_tortoise; \ EMACS_INT CTL_len; \ \ for (CTL_hare = CTL_tortoise = CTL_list, CTL_len = 0; \ CONSP (CTL_hare); \ CTL_hare = XCDR (CTL_hare), CTL_len++) \ { \ if (CTL_len < CIRCULAR_LIST_SUSPICION_LENGTH) \ continue; \ \ if (CTL_len & 1) \ CTL_tortoise = XCDR (CTL_tortoise); \ else if (EQ (CTL_hare, CTL_tortoise)) \ Fsignal (Qcircular_list, list1 (CTL_list)); \ } \ \ if (! NILP (CTL_hare)) \ signal_malformed_list_error (CTL_list); \ } while (0) /*------------------------------ string --------------------------------*/ struct Lisp_String { union { struct lrecord_header lheader; struct { /* WARNING: Everything before ascii_begin must agree exactly with struct lrecord_header */ unsigned int type :8; unsigned int mark :1; unsigned int c_readonly :1; unsigned int lisp_readonly :1; /* Number of chars at beginning of string that are one byte in length (BYTE_ASCII_P) */ unsigned int ascii_begin :21; } v; } u; Bytecount size; Intbyte *data; Lisp_Object plist; }; typedef struct Lisp_String Lisp_String; #define MAX_STRING_ASCII_BEGIN ((2 << 21) - 1) DECLARE_LRECORD (string, Lisp_String); #define XSTRING(x) XRECORD (x, string, Lisp_String) #define XSETSTRING(x, p) XSETRECORD (x, p, string) #define wrap_string(p) wrap_record (p, string) #define STRINGP(x) RECORDP (x, string) #define CHECK_STRING(x) CHECK_RECORD (x, string) #define CONCHECK_STRING(x) CONCHECK_RECORD (x, string) #ifdef MULE Charcount bytecount_to_charcount (const Intbyte *ptr, Bytecount len); Bytecount charcount_to_bytecount (const Intbyte *ptr, Charcount len); #else /* not MULE */ # define bytecount_to_charcount(ptr, len) (len) # define charcount_to_bytecount(ptr, len) (len) #endif /* not MULE */ #define string_length(s) ((s)->size) #define XSTRING_LENGTH(s) string_length (XSTRING (s)) #define string_data(s) ((s)->data + 0) #define XSTRING_DATA(s) string_data (XSTRING (s)) #define string_ascii_begin(s) ((s)->u.v.ascii_begin + 0) #define XSTRING_ASCII_BEGIN(s) string_ascii_begin (XSTRING (s)) #define string_char_length(s) string_index_byte_to_char (s, string_length (s)) #define XSTRING_CHAR_LENGTH(s) string_char_length (XSTRING (s)) #define string_byte(s, i) ((s)->data[i] + 0) #define XSTRING_BYTE(s, i) string_byte (XSTRING (s), i) #define string_byte_addr(s, i) (&((s)->data[i])) #define string_char(s, i) charptr_emchar (string_char_addr (s, i)) #define XSTRING_CHAR(s, i) string_char (XSTRING (s), i) #define XSTRING_INDEX_CHAR_TO_BYTE(s, idx) \ string_index_char_to_byte (XSTRING (s), idx) #define XSTRING_INDEX_BYTE_TO_CHAR(s, idx) \ string_index_byte_to_char (XSTRING (s), idx) #define XSTRING_OFFSET_BYTE_TO_CHAR_LEN(s, off, len) \ string_offset_byte_to_char_len (XSTRING (s), off, len) #define XSTRING_OFFSET_CHAR_TO_BYTE_LEN(s, off, len) \ string_offset_char_to_byte_len (XSTRING (s), off, len) #define set_string_length(s, len) ((void) ((s)->size = (len))) #define set_string_data(s, ptr) ((void) ((s)->data = (ptr))) /* WARNING: If you modify an existing string, you must call bump_string_modiff() afterwards. */ #define set_string_byte(s, i, b) ((void) ((s)->data[i] = (b))) #define set_string_ascii_begin(s, val) ((void) ((s)->u.v.ascii_begin = (val))) #ifdef ERROR_CHECK_CHARBPOS #define SLEDGEHAMMER_CHECK_ASCII_BEGIN #endif #ifdef SLEDGEHAMMER_CHECK_ASCII_BEGIN void sledgehammer_check_ascii_begin (Lisp_Object str); #else #define sledgehammer_check_ascii_begin(str) #endif /* Make an alloca'd copy of a Lisp string */ #define LISP_STRING_TO_ALLOCA(s, lval) \ do { \ Intbyte **_lta_ = (Intbyte **) &(lval); \ Lisp_Object _lta_2 = (s); \ *_lta_ = alloca_array (Intbyte, 1 + XSTRING_LENGTH (_lta_2)); \ memcpy (*_lta_, XSTRING_DATA (_lta_2), 1 + XSTRING_LENGTH (_lta_2)); \ } while (0) /* Make an alloca'd copy of a Intbyte * */ #define INTBYTE_STRING_TO_ALLOCA(p, lval) \ do { \ Intbyte **_bsta_ = (Intbyte **) &(lval); \ const Intbyte *_bsta_2 = (p); \ Bytecount _bsta_3 = qxestrlen (_bsta_2); \ *_bsta_ = alloca_array (Intbyte, 1 + _bsta_3); \ memcpy (*_bsta_, _bsta_2, 1 + _bsta_3); \ } while (0) #define alloca_intbytes(num) alloca_array (Intbyte, num) #define alloca_extbytes(num) alloca_array (Extbyte, num) void resize_string (Lisp_String *s, Bytecount pos, Bytecount delta); #ifdef MULE /* Convert a byte index into a string into a char index. */ DECLARE_INLINE_HEADER ( Charcount string_index_byte_to_char (Lisp_String *s, Bytecount idx) ) { Charcount retval; if (idx <= (Bytecount) string_ascii_begin (s)) retval = idx; else retval = (string_ascii_begin (s) + bytecount_to_charcount (string_data (s) + string_ascii_begin (s), idx - string_ascii_begin (s))); #ifdef SLEDGEHAMMER_CHECK_ASCII_BEGIN assert (retval == bytecount_to_charcount (string_data (s), idx)); #endif return retval; } /* Convert a char index into a string into a byte index. */ DECLARE_INLINE_HEADER ( Bytecount string_index_char_to_byte (Lisp_String *s, Charcount idx) ) { Bytecount retval; if (idx <= (Charcount) string_ascii_begin (s)) retval = idx; else retval = (string_ascii_begin (s) + charcount_to_bytecount (string_data (s) + string_ascii_begin (s), idx - string_ascii_begin (s))); #ifdef SLEDGEHAMMER_CHECK_ASCII_BEGIN assert (retval == charcount_to_bytecount (string_data (s), idx)); #endif return retval; } /* Convert a substring length (starting at byte offset OFF) from bytes to chars. */ DECLARE_INLINE_HEADER ( Charcount string_offset_byte_to_char_len (Lisp_String *s, Bytecount off, Bytecount len) ) { Charcount retval; if (off + len <= (Bytecount) string_ascii_begin (s)) retval = len; else if (off < (Bytecount) string_ascii_begin (s)) retval = string_ascii_begin (s) - off + bytecount_to_charcount (string_data (s) + string_ascii_begin (s), len - (string_ascii_begin (s) - off)); else retval = bytecount_to_charcount (string_data (s) + off, len); #ifdef SLEDGEHAMMER_CHECK_ASCII_BEGIN assert (retval == bytecount_to_charcount (string_data (s) + off, len)); #endif return retval; } /* Convert a substring length (starting at byte offset OFF) from chars to bytes. */ DECLARE_INLINE_HEADER ( Bytecount string_offset_char_to_byte_len (Lisp_String *s, Bytecount off, Charcount len) ) { Bytecount retval; if (off + len <= (Bytecount) string_ascii_begin (s)) retval = len; else if (off < (Bytecount) string_ascii_begin (s)) retval = string_ascii_begin (s) - off + charcount_to_bytecount (string_data (s) + string_ascii_begin (s), len - (string_ascii_begin (s) - off)); else retval = charcount_to_bytecount (string_data (s) + off, len); #ifdef SLEDGEHAMMER_CHECK_ASCII_BEGIN assert (retval == charcount_to_bytecount (string_data (s) + off, len)); #endif return retval; } DECLARE_INLINE_HEADER ( Intbyte * string_char_addr (Lisp_String *s, Charcount idx) ) { return string_data (s) + string_index_char_to_byte (s, idx); } void set_string_char (Lisp_String *s, Charcount i, Emchar c); #else /* not MULE */ #define string_index_byte_to_char(s, idx) (idx) #define string_index_char_to_byte(s, idx) (idx) #define string_offset_byte_to_char_len(s, off, len) (len) #define string_offset_char_to_byte_len(s, off, len) (len) # define string_char_addr(s, i) string_byte_addr (s, i) /* WARNING: If you modify an existing string, you must call bump_string_modiff() afterwards. */ # define set_string_char(s, i, c) set_string_byte (s, i, (Intbyte) c) #endif /* not MULE */ /* Return the true aligned size of a struct whose last member is a variable-length array field. (this is known as the "struct hack") */ /* Implementation: in practice, structtype and fieldtype usually have the same alignment, but we can't be sure. We need to use ALIGN_SIZE to be absolutely sure of getting the correct alignment. To help the compiler's optimizer, we use a ternary expression that only a very stupid compiler would fail to correctly simplify. */ #define FLEXIBLE_ARRAY_STRUCT_SIZEOF(structtype, \ fieldtype, \ fieldname, \ array_length) \ (ALIGNOF (structtype) == ALIGNOF (fieldtype) \ ? (offsetof (structtype, fieldname) + \ (offsetof (structtype, fieldname[1]) - \ offsetof (structtype, fieldname[0])) * \ (array_length)) \ : (ALIGN_SIZE \ ((offsetof (structtype, fieldname) + \ (offsetof (structtype, fieldname[1]) - \ offsetof (structtype, fieldname[0])) * \ (array_length)), \ ALIGNOF (structtype)))) /*------------------------------ vector --------------------------------*/ struct Lisp_Vector { struct lcrecord_header header; long size; /* next is now chained through v->contents[size], terminated by Qzero. This means that pure vectors don't need a "next" */ /* struct Lisp_Vector *next; */ Lisp_Object contents[1]; }; typedef struct Lisp_Vector Lisp_Vector; DECLARE_LRECORD (vector, Lisp_Vector); #define XVECTOR(x) XRECORD (x, vector, Lisp_Vector) #define XSETVECTOR(x, p) XSETRECORD (x, p, vector) #define wrap_vector(p) wrap_record (p, vector) #define VECTORP(x) RECORDP (x, vector) #define CHECK_VECTOR(x) CHECK_RECORD (x, vector) #define CONCHECK_VECTOR(x) CONCHECK_RECORD (x, vector) #define vector_length(v) ((v)->size) #define XVECTOR_LENGTH(s) vector_length (XVECTOR (s)) #define vector_data(v) ((v)->contents) #define XVECTOR_DATA(s) vector_data (XVECTOR (s)) /*---------------------------- bit vectors -----------------------------*/ #if (LONGBITS < 16) #error What the hell?! #elif (LONGBITS < 32) # define LONGBITS_LOG2 4 # define LONGBITS_POWER_OF_2 16 #elif (LONGBITS < 64) # define LONGBITS_LOG2 5 # define LONGBITS_POWER_OF_2 32 #elif (LONGBITS < 128) # define LONGBITS_LOG2 6 # define LONGBITS_POWER_OF_2 64 #else #error You really have 128-bit integers?! #endif struct Lisp_Bit_Vector { struct lrecord_header lheader; Lisp_Object next; Elemcount size; unsigned long bits[1]; }; typedef struct Lisp_Bit_Vector Lisp_Bit_Vector; DECLARE_LRECORD (bit_vector, Lisp_Bit_Vector); #define XBIT_VECTOR(x) XRECORD (x, bit_vector, Lisp_Bit_Vector) #define XSETBIT_VECTOR(x, p) XSETRECORD (x, p, bit_vector) #define wrap_bit_vector(p) wrap_record (p, bit_vector) #define BIT_VECTORP(x) RECORDP (x, bit_vector) #define CHECK_BIT_VECTOR(x) CHECK_RECORD (x, bit_vector) #define CONCHECK_BIT_VECTOR(x) CONCHECK_RECORD (x, bit_vector) #define BITP(x) (INTP (x) && (XINT (x) == 0 || XINT (x) == 1)) #define CHECK_BIT(x) do { \ if (!BITP (x)) \ dead_wrong_type_argument (Qbitp, x);\ } while (0) #define CONCHECK_BIT(x) do { \ if (!BITP (x)) \ x = wrong_type_argument (Qbitp, x); \ } while (0) #define bit_vector_length(v) ((v)->size) #define bit_vector_next(v) ((v)->next) INLINE_HEADER int bit_vector_bit (Lisp_Bit_Vector *v, Elemcount n); INLINE_HEADER int bit_vector_bit (Lisp_Bit_Vector *v, Elemcount n) { return ((v->bits[n >> LONGBITS_LOG2] >> (n & (LONGBITS_POWER_OF_2 - 1))) & 1); } INLINE_HEADER void set_bit_vector_bit (Lisp_Bit_Vector *v, Elemcount n, int value); INLINE_HEADER void set_bit_vector_bit (Lisp_Bit_Vector *v, Elemcount n, int value) { if (value) v->bits[n >> LONGBITS_LOG2] |= (1UL << (n & (LONGBITS_POWER_OF_2 - 1))); else v->bits[n >> LONGBITS_LOG2] &= ~(1UL << (n & (LONGBITS_POWER_OF_2 - 1))); } /* Number of longs required to hold LEN bits */ #define BIT_VECTOR_LONG_STORAGE(len) \ (((len) + LONGBITS_POWER_OF_2 - 1) >> LONGBITS_LOG2) /*------------------------------ symbol --------------------------------*/ typedef struct Lisp_Symbol Lisp_Symbol; struct Lisp_Symbol { struct lrecord_header lheader; /* next symbol in this obarray bucket */ Lisp_Symbol *next; Lisp_String *name; Lisp_Object value; Lisp_Object function; Lisp_Object plist; }; #define SYMBOL_IS_KEYWORD(sym) \ ((string_byte (symbol_name (XSYMBOL (sym)), 0) == ':') \ && EQ (sym, oblookup (Vobarray, \ string_data (symbol_name (XSYMBOL (sym))), \ string_length (symbol_name (XSYMBOL (sym)))))) #define KEYWORDP(obj) (SYMBOLP (obj) && SYMBOL_IS_KEYWORD (obj)) DECLARE_LRECORD (symbol, Lisp_Symbol); #define XSYMBOL(x) XRECORD (x, symbol, Lisp_Symbol) #define XSETSYMBOL(x, p) XSETRECORD (x, p, symbol) #define wrap_symbol(p) wrap_record (p, symbol) #define SYMBOLP(x) RECORDP (x, symbol) #define CHECK_SYMBOL(x) CHECK_RECORD (x, symbol) #define CONCHECK_SYMBOL(x) CONCHECK_RECORD (x, symbol) #define symbol_next(s) ((s)->next) #define symbol_name(s) ((s)->name) #define symbol_value(s) ((s)->value) #define symbol_function(s) ((s)->function) #define symbol_plist(s) ((s)->plist) /*------------------------------- subr ---------------------------------*/ typedef Lisp_Object (*lisp_fn_t) (void); struct Lisp_Subr { struct lrecord_header lheader; short min_args; short max_args; const char *prompt; const char *doc; const char *name; lisp_fn_t subr_fn; }; typedef struct Lisp_Subr Lisp_Subr; DECLARE_LRECORD (subr, Lisp_Subr); #define XSUBR(x) XRECORD (x, subr, Lisp_Subr) #define XSETSUBR(x, p) XSETRECORD (x, p, subr) #define wrap_subr(p) wrap_record (p, subr) #define SUBRP(x) RECORDP (x, subr) #define CHECK_SUBR(x) CHECK_RECORD (x, subr) #define CONCHECK_SUBR(x) CONCHECK_RECORD (x, subr) #define subr_function(subr) ((subr)->subr_fn) #define SUBR_FUNCTION(subr,max_args) \ ((Lisp_Object (*) (EXFUN_##max_args)) (subr)->subr_fn) #define subr_name(subr) ((subr)->name) /*------------------------------ marker --------------------------------*/ typedef struct Lisp_Marker Lisp_Marker; struct Lisp_Marker { struct lrecord_header lheader; Lisp_Marker *next; Lisp_Marker *prev; struct buffer *buffer; Membpos membpos; char insertion_type; }; DECLARE_LRECORD (marker, Lisp_Marker); #define XMARKER(x) XRECORD (x, marker, Lisp_Marker) #define XSETMARKER(x, p) XSETRECORD (x, p, marker) #define wrap_marker(p) wrap_record (p, marker) #define MARKERP(x) RECORDP (x, marker) #define CHECK_MARKER(x) CHECK_RECORD (x, marker) #define CONCHECK_MARKER(x) CONCHECK_RECORD (x, marker) /* The second check was looking for GCed markers still in use */ /* if (INTP (XMARKER (x)->lheader.next.v)) abort (); */ #define marker_next(m) ((m)->next) #define marker_prev(m) ((m)->prev) /*------------------------------- char ---------------------------------*/ #define CHARP(x) (XTYPE (x) == Lisp_Type_Char) #ifdef ERROR_CHECK_TYPECHECK INLINE_HEADER Emchar XCHAR_1 (Lisp_Object obj, const char *file, int line); INLINE_HEADER Emchar XCHAR_1 (Lisp_Object obj, const char *file, int line) { assert_at_line (CHARP (obj), file, line); return XCHARVAL (obj); } #define XCHAR(x) XCHAR_1 (x, __FILE__, __LINE__) #else /* no error checking */ #define XCHAR(x) ((Emchar) XCHARVAL (x)) #endif /* no error checking */ #define CHECK_CHAR(x) CHECK_NONRECORD (x, Lisp_Type_Char, Qcharacterp) #define CONCHECK_CHAR(x) CONCHECK_NONRECORD (x, Lisp_Type_Char, Qcharacterp) /*------------------------------ float ---------------------------------*/ #ifdef LISP_FLOAT_TYPE /* Note: the 'unused_next_' field exists only to ensure that the `next' pointer fits within the structure, for the purposes of the free list. This makes a difference in the unlikely case of sizeof(double) being smaller than sizeof(void *). */ struct Lisp_Float { struct lrecord_header lheader; union { double d; struct Lisp_Float *unused_next_; } data; }; typedef struct Lisp_Float Lisp_Float; DECLARE_LRECORD (float, Lisp_Float); #define XFLOAT(x) XRECORD (x, float, Lisp_Float) #define XSETFLOAT(x, p) XSETRECORD (x, p, float) #define wrap_float(p) wrap_record (p, float) #define FLOATP(x) RECORDP (x, float) #define CHECK_FLOAT(x) CHECK_RECORD (x, float) #define CONCHECK_FLOAT(x) CONCHECK_RECORD (x, float) #define float_data(f) ((f)->data.d) #define XFLOAT_DATA(x) float_data (XFLOAT (x)) #define XFLOATINT(n) extract_float (n) #define CHECK_INT_OR_FLOAT(x) do { \ if (!INT_OR_FLOATP (x)) \ dead_wrong_type_argument (Qnumberp, x); \ } while (0) #define CONCHECK_INT_OR_FLOAT(x) do { \ if (!INT_OR_FLOATP (x)) \ x = wrong_type_argument (Qnumberp, x); \ } while (0) # define INT_OR_FLOATP(x) (INTP (x) || FLOATP (x)) #else /* not LISP_FLOAT_TYPE */ #define XFLOAT(x) --- error! No float support. --- #define XSETFLOAT(x, p) --- error! No float support. --- #define FLOATP(x) 0 #define CHECK_FLOAT(x) --- error! No float support. --- #define CONCHECK_FLOAT(x) --- error! No float support. --- #define XFLOATINT(n) XINT(n) #define CHECK_INT_OR_FLOAT CHECK_INT #define CONCHECK_INT_OR_FLOAT CONCHECK_INT #define INT_OR_FLOATP(x) INTP (x) #endif /* not LISP_FLOAT_TYPE */ /*-------------------------------- int ---------------------------------*/ #define ZEROP(x) EQ (x, Qzero) #ifdef ERROR_CHECK_TYPECHECK #define XCHAR_OR_INT(x) XCHAR_OR_INT_1 (x, __FILE__, __LINE__) #define XINT(x) XINT_1 (x, __FILE__, __LINE__) INLINE_HEADER EMACS_INT XINT_1 (Lisp_Object obj, const char *file, int line); INLINE_HEADER EMACS_INT XINT_1 (Lisp_Object obj, const char *file, int line) { assert_at_line (INTP (obj), file, line); return XREALINT (obj); } INLINE_HEADER EMACS_INT XCHAR_OR_INT_1 (Lisp_Object obj, const char *file, int line); INLINE_HEADER EMACS_INT XCHAR_OR_INT_1 (Lisp_Object obj, const char *file, int line) { assert_at_line (INTP (obj) || CHARP (obj), file, line); return CHARP (obj) ? XCHAR (obj) : XINT (obj); } #else /* no error checking */ #define XINT(obj) XREALINT (obj) #define XCHAR_OR_INT(obj) (CHARP (obj) ? XCHAR (obj) : XINT (obj)) #endif /* no error checking */ #define CHECK_INT(x) do { \ if (!INTP (x)) \ dead_wrong_type_argument (Qintegerp, x); \ } while (0) #define CONCHECK_INT(x) do { \ if (!INTP (x)) \ x = wrong_type_argument (Qintegerp, x); \ } while (0) #define NATNUMP(x) (INTP (x) && XINT (x) >= 0) #define CHECK_NATNUM(x) do { \ if (!NATNUMP (x)) \ dead_wrong_type_argument (Qnatnump, x); \ } while (0) #define CONCHECK_NATNUM(x) do { \ if (!NATNUMP (x)) \ x = wrong_type_argument (Qnatnump, x); \ } while (0) /* next three always continuable because they coerce their arguments. */ #define CHECK_INT_COERCE_CHAR(x) do { \ if (INTP (x)) \ ; \ else if (CHARP (x)) \ x = make_int (XCHAR (x)); \ else \ x = wrong_type_argument (Qinteger_or_char_p, x); \ } while (0) #define CHECK_INT_COERCE_MARKER(x) do { \ if (INTP (x)) \ ; \ else if (MARKERP (x)) \ x = make_int (marker_position (x)); \ else \ x = wrong_type_argument (Qinteger_or_marker_p, x); \ } while (0) #define CHECK_INT_COERCE_CHAR_OR_MARKER(x) do { \ if (INTP (x)) \ ; \ else if (CHARP (x)) \ x = make_int (XCHAR (x)); \ else if (MARKERP (x)) \ x = make_int (marker_position (x)); \ else \ x = wrong_type_argument (Qinteger_char_or_marker_p, x); \ } while (0) /*--------------------------- readonly objects -------------------------*/ #define CHECK_C_WRITEABLE(obj) \ do { if (c_readonly (obj)) c_write_error (obj); } while (0) #define CHECK_LISP_WRITEABLE(obj) \ do { if (lisp_readonly (obj)) lisp_write_error (obj); } while (0) #define C_READONLY(obj) (C_READONLY_RECORD_HEADER_P(XRECORD_LHEADER (obj))) #define LISP_READONLY(obj) (LISP_READONLY_RECORD_HEADER_P(XRECORD_LHEADER (obj))) /*----------------------------- structrures ----------------------------*/ typedef struct structure_keyword_entry structure_keyword_entry; struct structure_keyword_entry { Lisp_Object keyword; int (*validate) (Lisp_Object keyword, Lisp_Object value, Error_Behavior errb); }; typedef struct { Dynarr_declare (structure_keyword_entry); } structure_keyword_entry_dynarr; typedef struct structure_type structure_type; struct structure_type { Lisp_Object type; structure_keyword_entry_dynarr *keywords; int (*validate) (Lisp_Object data, Error_Behavior errb); Lisp_Object (*instantiate) (Lisp_Object data); }; typedef struct { Dynarr_declare (structure_type); } structure_type_dynarr; struct structure_type *define_structure_type (Lisp_Object type, int (*validate) (Lisp_Object data, Error_Behavior errb), Lisp_Object (*instantiate) (Lisp_Object data)); void define_structure_type_keyword (struct structure_type *st, Lisp_Object keyword, int (*validate) (Lisp_Object keyword, Lisp_Object value, Error_Behavior errb)); /*---------------------------- weak lists ------------------------------*/ enum weak_list_type { /* element disappears if it's unmarked. */ WEAK_LIST_SIMPLE, /* element disappears if it's a cons and either its car or cdr is unmarked. */ WEAK_LIST_ASSOC, /* element disappears if it's a cons and its car is unmarked. */ WEAK_LIST_KEY_ASSOC, /* element disappears if it's a cons and its cdr is unmarked. */ WEAK_LIST_VALUE_ASSOC, /* element disappears if it's a cons and neither its car nor its cdr is marked. */ WEAK_LIST_FULL_ASSOC }; struct weak_list { struct lcrecord_header header; Lisp_Object list; /* don't mark through this! */ enum weak_list_type type; Lisp_Object next_weak; /* don't mark through this! */ }; DECLARE_LRECORD (weak_list, struct weak_list); #define XWEAK_LIST(x) XRECORD (x, weak_list, struct weak_list) #define XSETWEAK_LIST(x, p) XSETRECORD (x, p, weak_list) #define wrap_weak_list(p) wrap_record (p, weak_list) #define WEAK_LISTP(x) RECORDP (x, weak_list) #define CHECK_WEAK_LIST(x) CHECK_RECORD (x, weak_list) #define CONCHECK_WEAK_LIST(x) CONCHECK_RECORD (x, weak_list) #define weak_list_list(w) ((w)->list) #define XWEAK_LIST_LIST(w) (XWEAK_LIST (w)->list) Lisp_Object make_weak_list (enum weak_list_type type); /* The following two are only called by the garbage collector */ int finish_marking_weak_lists (void); void prune_weak_lists (void); /*-------------------------- lcrecord-list -----------------------------*/ struct lcrecord_list { struct lcrecord_header header; Lisp_Object free; Elemcount size; const struct lrecord_implementation *implementation; }; DECLARE_LRECORD (lcrecord_list, struct lcrecord_list); #define XLCRECORD_LIST(x) XRECORD (x, lcrecord_list, struct lcrecord_list) #define XSETLCRECORD_LIST(x, p) XSETRECORD (x, p, lcrecord_list) #define wrap_lcrecord_list(p) wrap_record (p, lcrecord_list) #define LCRECORD_LISTP(x) RECORDP (x, lcrecord_list) /* #define CHECK_LCRECORD_LIST(x) CHECK_RECORD (x, lcrecord_list) Lcrecord lists should never escape to the Lisp level, so functions should not be doing this. */ Lisp_Object make_lcrecord_list (Elemcount size, const struct lrecord_implementation *implementation); Lisp_Object allocate_managed_lcrecord (Lisp_Object lcrecord_list); void free_managed_lcrecord (Lisp_Object lcrecord_list, Lisp_Object lcrecord); /************************************************************************/ /* Definitions related to the format of text and of characters */ /************************************************************************/ /* Note: "internally formatted text" and the term "internal format" in general are likely to refer to the format of text in buffers and strings; "externally formatted text" and the term "external format" refer to any text format used in the O.S. or elsewhere outside of XEmacs. The format of text and of a character are related and there must be a one-to-one relationship (hopefully through a relatively simple algorithmic means of conversion) between a string of text and an equivalent array of characters, but the conversion between the two is NOT necessarily trivial. In a non-Mule XEmacs, allowed characters are numbered 0 through 255, where no fixed meaning is assigned to them, but (when representing text, rather than bytes in a binary file) in practice the lower half represents ASCII and the upper half some other 8-bit character set (chosen by setting the font, case tables, syntax tables, etc. appropriately for the character set through ad-hoc means such as the `iso-8859-1' file and the `standard-display-european' function). #### Finish this. */ #include "text.h" /************************************************************************/ /* Definitions of primitive Lisp functions and variables */ /************************************************************************/ /* DEFUN - Define a built-in Lisp-visible C function or `subr'. `lname' should be the name to give the function in Lisp, as a null-terminated C string. `Fname' should be the C equivalent of `lname', using only characters valid in a C identifier, with an "F" prepended. The name of the C constant structure that records information on this function for internal use is "S" concatenated with Fname. `min_args' should be a number, the minimum number of arguments allowed. `max_args' should be a number, the maximum number of arguments allowed, or else MANY or UNEVALLED. MANY means pass a vector of evaluated arguments, in the form of an integer number-of-arguments followed by the address of a vector of Lisp_Objects which contains the argument values. UNEVALLED means pass the list of unevaluated arguments. `prompt' says how to read arguments for an interactive call. See the doc string for `interactive'. A null string means call interactively with no arguments. `arglist' are the comma-separated arguments (always Lisp_Objects) for the function. The docstring for the function is placed as a "C" comment between the prompt and the `args' argument. make-docfile reads the comment and creates the DOC file from it. */ #define EXFUN_0 void #define EXFUN_1 Lisp_Object #define EXFUN_2 Lisp_Object,Lisp_Object #define EXFUN_3 Lisp_Object,Lisp_Object,Lisp_Object #define EXFUN_4 Lisp_Object,Lisp_Object,Lisp_Object,Lisp_Object #define EXFUN_5 Lisp_Object,Lisp_Object,Lisp_Object,Lisp_Object,Lisp_Object #define EXFUN_6 Lisp_Object,Lisp_Object,Lisp_Object,Lisp_Object,Lisp_Object, \ Lisp_Object #define EXFUN_7 Lisp_Object,Lisp_Object,Lisp_Object,Lisp_Object,Lisp_Object, \ Lisp_Object,Lisp_Object #define EXFUN_8 Lisp_Object,Lisp_Object,Lisp_Object,Lisp_Object,Lisp_Object, \ Lisp_Object,Lisp_Object,Lisp_Object #define EXFUN_MANY int, Lisp_Object* #define EXFUN_UNEVALLED Lisp_Object #define EXFUN(sym, max_args) Lisp_Object sym (EXFUN_##max_args) #define SUBR_MAX_ARGS 8 #define MANY -2 #define UNEVALLED -1 /* Can't be const, because then subr->doc is read-only and Snarf_documentation chokes */ #define DEFUN(lname, Fname, min_args, max_args, prompt, arglist) \ Lisp_Object Fname (EXFUN_##max_args); \ static struct Lisp_Subr S##Fname = \ { \ { /* struct lrecord_header */ \ lrecord_type_subr, /* lrecord_type_index */ \ 1, /* mark bit */ \ 1, /* c_readonly bit */ \ 1 /* lisp_readonly bit */ \ }, \ min_args, \ max_args, \ prompt, \ 0, /* doc string */ \ lname, \ (lisp_fn_t) Fname \ }; \ Lisp_Object Fname (DEFUN_##max_args arglist) /* Heavy ANSI C preprocessor hackery to get DEFUN to declare a prototype that matches max_args, and add the obligatory `Lisp_Object' type declaration to the formal C arguments. */ #define DEFUN_MANY(named_int, named_Lisp_Object) named_int, named_Lisp_Object #define DEFUN_UNEVALLED(args) Lisp_Object args #define DEFUN_0() void #define DEFUN_1(a) Lisp_Object a #define DEFUN_2(a,b) DEFUN_1(a), Lisp_Object b #define DEFUN_3(a,b,c) DEFUN_2(a,b), Lisp_Object c #define DEFUN_4(a,b,c,d) DEFUN_3(a,b,c), Lisp_Object d #define DEFUN_5(a,b,c,d,e) DEFUN_4(a,b,c,d), Lisp_Object e #define DEFUN_6(a,b,c,d,e,f) DEFUN_5(a,b,c,d,e), Lisp_Object f #define DEFUN_7(a,b,c,d,e,f,g) DEFUN_6(a,b,c,d,e,f), Lisp_Object g #define DEFUN_8(a,b,c,d,e,f,g,h) DEFUN_7(a,b,c,d,e,f,g),Lisp_Object h /* WARNING: If you add defines here for higher values of max_args, make sure to also fix the clauses in PRIMITIVE_FUNCALL(), and change the define of SUBR_MAX_ARGS above. */ #include "symeval.h" /* `specpdl' is the special binding/unwind-protect stack. Knuth says (see the Jargon File): At MIT, `pdl' [abbreviation for `Push Down List'] used to be a more common synonym for `stack'. Everywhere else `stack' seems to be the preferred term. specpdl_depth is the current depth of `specpdl'. Save this for use later as arg to `unbind_to_1'. */ extern int specpdl_depth_counter; #define specpdl_depth() specpdl_depth_counter #define CHECK_FUNCTION(fun) do { \ while (NILP (Ffunctionp (fun))) \ signal_invalid_function_error (fun); \ } while (0) /************************************************************************/ /* Checking for QUIT */ /************************************************************************/ /* Asynchronous events set something_happened, and then are processed within the QUIT macro. At this point, we are guaranteed to not be in any sensitive code. */ extern volatile int something_happened; extern int dont_check_for_quit; int check_what_happened (void); extern volatile int quit_check_signal_happened; extern volatile int quit_check_signal_tick_count; int check_quit (void); void signal_quit (void); #define QUIT_FLAG_SAYS_SHOULD_QUIT \ (!NILP (Vquit_flag) && \ (NILP (Vinhibit_quit) \ || (EQ (Vquit_flag, Qcritical) && !dont_check_for_quit))) /* Nonzero if ought to quit now. */ #define QUITP \ ((quit_check_signal_happened ? check_quit () : 0), \ QUIT_FLAG_SAYS_SHOULD_QUIT) /* QUIT used to call QUITP, but there are some places where QUITP is called directly, and check_what_happened() should only be called when Emacs is actually ready to quit because it could do things like switch threads. */ #define INTERNAL_QUITP \ ((something_happened ? check_what_happened () : 0), \ QUIT_FLAG_SAYS_SHOULD_QUIT) #define INTERNAL_REALLY_QUITP \ (check_what_happened (), \ QUIT_FLAG_SAYS_SHOULD_QUIT) /* Check quit-flag and quit if it is non-nil. Also do any other things that might have gotten queued until it was safe. */ #define QUIT do { if (INTERNAL_QUITP) signal_quit (); } while (0) #define REALLY_QUIT do { if (INTERNAL_REALLY_QUITP) signal_quit (); } while (0) /************************************************************************/ /* hashing */ /************************************************************************/ /* #### for a 64-bit machine, we should substitute a prime just over 2^32 */ #define GOOD_HASH 65599 /* prime number just over 2^16; Dragon book, p. 435 */ #define HASH2(a,b) (GOOD_HASH * (a) + (b)) #define HASH3(a,b,c) (GOOD_HASH * HASH2 (a,b) + (c)) #define HASH4(a,b,c,d) (GOOD_HASH * HASH3 (a,b,c) + (d)) #define HASH5(a,b,c,d,e) (GOOD_HASH * HASH4 (a,b,c,d) + (e)) #define HASH6(a,b,c,d,e,f) (GOOD_HASH * HASH5 (a,b,c,d,e) + (f)) #define HASH7(a,b,c,d,e,f,g) (GOOD_HASH * HASH6 (a,b,c,d,e,f) + (g)) #define HASH8(a,b,c,d,e,f,g,h) (GOOD_HASH * HASH7 (a,b,c,d,e,f,g) + (h)) #define HASH9(a,b,c,d,e,f,g,h,i) (GOOD_HASH * HASH8 (a,b,c,d,e,f,g,h) + (i)) #define LISP_HASH(obj) ((unsigned long) LISP_TO_VOID (obj)) unsigned long string_hash (const char *xv); unsigned long memory_hash (const void *xv, Bytecount size); unsigned long internal_hash (Lisp_Object obj, int depth); unsigned long internal_array_hash (Lisp_Object *arr, int size, int depth); /************************************************************************/ /* String translation */ /************************************************************************/ /* When support for message translation exists, GETTEXT() translates a string from English into the language defined by `current-language-environment'. This is done by looking the string up in a large predefined table; if no translation is found, the original string is returned, and the failure is possibly logged so that the translation can later be entered into the table. In addition to this, there is a mechanism to snarf message strings out of the source code so that they can be entered into the tables. This is what make-msgfile.lex does. Handling `format' strings is more difficult: The format string should get translated, but not under all circumstances. When the format string is a Lisp string, what should happen is that Fformat() should format the untranslated args[0] and return that, and also call Fgettext() on args[0] and, if that is different, format it and store it in the `string-translatable' property of the returned string. See Fgettext(). CGETTEXT() is the same as GETTEXT() but works with char * strings instead of Intbyte * strings. build_msg_string() is a shorthand for build_string (GETTEXT (x)). build_msg_intstring() is a shorthand for build_intstring (GETTEXT (x)). */ #define GETTEXT(x) (x) #define CGETTEXT(x) (x) #define LISP_GETTEXT(x) (x) /* DEFER_GETTEXT is used to identify strings which are translated when they are referenced instead of when they are defined. These include Qerror_messages and initialized arrays of strings. */ #define DEFER_GETTEXT(x) (x) /************************************************************************/ /* Garbage collection / GC-protection */ /************************************************************************/ /* number of bytes of structure consed since last GC */ extern EMACS_INT consing_since_gc; /* threshold for doing another gc */ extern Fixnum gc_cons_threshold; /* Structure for recording stack slots that need marking */ /* This is a chain of structures, each of which points at a Lisp_Object variable whose value should be marked in garbage collection. Normally every link of the chain is an automatic variable of a function, and its `val' points to some argument or local variable of the function. On exit to the function, the chain is set back to the value it had on entry. This way, no link remains in the chain when the stack frame containing the link disappears. Every function that can call Feval must protect in this fashion all Lisp_Object variables whose contents will be used again. */ extern struct gcpro *gcprolist; struct gcpro { struct gcpro *next; const Lisp_Object *var; /* Address of first protected variable */ int nvars; /* Number of consecutive protected variables */ }; /* Normally, you declare variables gcpro1, gcpro2, ... and use the GCPROn() macros. However, if you need to have nested gcpro's, declare ngcpro1, ngcpro2, ... and use NGCPROn(). If you need to nest another level, use nngcpro1, nngcpro2, ... and use NNGCPROn(). If you need to nest yet another level, create the appropriate macros. */ #ifdef DEBUG_GCPRO void debug_gcpro1 (char *, int, struct gcpro *, Lisp_Object *); void debug_gcpro2 (char *, int, struct gcpro *, struct gcpro *, Lisp_Object *, Lisp_Object *); void debug_gcpro3 (char *, int, struct gcpro *, struct gcpro *, struct gcpro *, Lisp_Object *, Lisp_Object *, Lisp_Object *); void debug_gcpro4 (char *, int, struct gcpro *, struct gcpro *, struct gcpro *, struct gcpro *, Lisp_Object *, Lisp_Object *, Lisp_Object *, Lisp_Object *); void debug_gcpro5 (char *, int, struct gcpro *, struct gcpro *, struct gcpro *, struct gcpro *, struct gcpro *, Lisp_Object *, Lisp_Object *, Lisp_Object *, Lisp_Object *, Lisp_Object *); void debug_ungcpro(char *, int, struct gcpro *); #define GCPRO1(v) \ debug_gcpro1 (__FILE__, __LINE__,&gcpro1,&v) #define GCPRO2(v1,v2) \ debug_gcpro2 (__FILE__, __LINE__,&gcpro1,&gcpro2,&v1,&v2) #define GCPRO3(v1,v2,v3) \ debug_gcpro3 (__FILE__, __LINE__,&gcpro1,&gcpro2,&gcpro3,&v1,&v2,&v3) #define GCPRO4(v1,v2,v3,v4) \ debug_gcpro4 (__FILE__, __LINE__,&gcpro1,&gcpro2,&gcpro3,&gcpro4,\ &v1,&v2,&v3,&v4) #define GCPRO5(v1,v2,v3,v4,v5) \ debug_gcpro5 (__FILE__, __LINE__,&gcpro1,&gcpro2,&gcpro3,&gcpro4,&gcpro5,\ &v1,&v2,&v3,&v4,&v5) #define UNGCPRO \ debug_ungcpro(__FILE__, __LINE__,&gcpro1) #define NGCPRO1(v) \ debug_gcpro1 (__FILE__, __LINE__,&ngcpro1,&v) #define NGCPRO2(v1,v2) \ debug_gcpro2 (__FILE__, __LINE__,&ngcpro1,&ngcpro2,&v1,&v2) #define NGCPRO3(v1,v2,v3) \ debug_gcpro3 (__FILE__, __LINE__,&ngcpro1,&ngcpro2,&ngcpro3,&v1,&v2,&v3) #define NGCPRO4(v1,v2,v3,v4) \ debug_gcpro4 (__FILE__, __LINE__,&ngcpro1,&ngcpro2,&ngcpro3,&ngcpro4,\ &v1,&v2,&v3,&v4) #define NGCPRO5(v1,v2,v3,v4,v5) \ debug_gcpro5 (__FILE__, __LINE__,&ngcpro1,&ngcpro2,&ngcpro3,&ngcpro4,\ &ngcpro5,&v1,&v2,&v3,&v4,&v5) #define NUNGCPRO \ debug_ungcpro(__FILE__, __LINE__,&ngcpro1) #define NNGCPRO1(v) \ debug_gcpro1 (__FILE__, __LINE__,&nngcpro1,&v) #define NNGCPRO2(v1,v2) \ debug_gcpro2 (__FILE__, __LINE__,&nngcpro1,&nngcpro2,&v1,&v2) #define NNGCPRO3(v1,v2,v3) \ debug_gcpro3 (__FILE__, __LINE__,&nngcpro1,&nngcpro2,&nngcpro3,&v1,&v2,&v3) #define NNGCPRO4(v1,v2,v3,v4) \ debug_gcpro4 (__FILE__, __LINE__,&nngcpro1,&nngcpro2,&nngcpro3,&nngcpro4,\ &v1,&v2,&v3,&v4) #define NNGCPRO5(v1,v2,v3,v4,v5) \ debug_gcpro5 (__FILE__, __LINE__,&nngcpro1,&nngcpro2,&nngcpro3,&nngcpro4,\ &nngcpro5,&v1,&v2,&v3,&v4,&v5) #define NNUNGCPRO \ debug_ungcpro(__FILE__, __LINE__,&nngcpro1) #else /* ! DEBUG_GCPRO */ #define GCPRO1(var1) ((void) ( \ gcpro1.next = gcprolist, gcpro1.var = &var1, gcpro1.nvars = 1, \ gcprolist = &gcpro1 )) #define GCPRO2(var1, var2) ((void) ( \ gcpro1.next = gcprolist, gcpro1.var = &var1, gcpro1.nvars = 1, \ gcpro2.next = &gcpro1, gcpro2.var = &var2, gcpro2.nvars = 1, \ gcprolist = &gcpro2 )) #define GCPRO3(var1, var2, var3) ((void) ( \ gcpro1.next = gcprolist, gcpro1.var = &var1, gcpro1.nvars = 1, \ gcpro2.next = &gcpro1, gcpro2.var = &var2, gcpro2.nvars = 1, \ gcpro3.next = &gcpro2, gcpro3.var = &var3, gcpro3.nvars = 1, \ gcprolist = &gcpro3 )) #define GCPRO4(var1, var2, var3, var4) ((void) ( \ gcpro1.next = gcprolist, gcpro1.var = &var1, gcpro1.nvars = 1, \ gcpro2.next = &gcpro1, gcpro2.var = &var2, gcpro2.nvars = 1, \ gcpro3.next = &gcpro2, gcpro3.var = &var3, gcpro3.nvars = 1, \ gcpro4.next = &gcpro3, gcpro4.var = &var4, gcpro4.nvars = 1, \ gcprolist = &gcpro4 )) #define GCPRO5(var1, var2, var3, var4, var5) ((void) ( \ gcpro1.next = gcprolist, gcpro1.var = &var1, gcpro1.nvars = 1, \ gcpro2.next = &gcpro1, gcpro2.var = &var2, gcpro2.nvars = 1, \ gcpro3.next = &gcpro2, gcpro3.var = &var3, gcpro3.nvars = 1, \ gcpro4.next = &gcpro3, gcpro4.var = &var4, gcpro4.nvars = 1, \ gcpro5.next = &gcpro4, gcpro5.var = &var5, gcpro5.nvars = 1, \ gcprolist = &gcpro5 )) #define UNGCPRO ((void) (gcprolist = gcpro1.next)) #define NGCPRO1(var1) ((void) ( \ ngcpro1.next = gcprolist, ngcpro1.var = &var1, ngcpro1.nvars = 1, \ gcprolist = &ngcpro1 )) #define NGCPRO2(var1, var2) ((void) ( \ ngcpro1.next = gcprolist, ngcpro1.var = &var1, ngcpro1.nvars = 1, \ ngcpro2.next = &ngcpro1, ngcpro2.var = &var2, ngcpro2.nvars = 1, \ gcprolist = &ngcpro2 )) #define NGCPRO3(var1, var2, var3) ((void) ( \ ngcpro1.next = gcprolist, ngcpro1.var = &var1, ngcpro1.nvars = 1, \ ngcpro2.next = &ngcpro1, ngcpro2.var = &var2, ngcpro2.nvars = 1, \ ngcpro3.next = &ngcpro2, ngcpro3.var = &var3, ngcpro3.nvars = 1, \ gcprolist = &ngcpro3 )) #define NGCPRO4(var1, var2, var3, var4) ((void) ( \ ngcpro1.next = gcprolist, ngcpro1.var = &var1, ngcpro1.nvars = 1, \ ngcpro2.next = &ngcpro1, ngcpro2.var = &var2, ngcpro2.nvars = 1, \ ngcpro3.next = &ngcpro2, ngcpro3.var = &var3, ngcpro3.nvars = 1, \ ngcpro4.next = &ngcpro3, ngcpro4.var = &var4, ngcpro4.nvars = 1, \ gcprolist = &ngcpro4 )) #define NGCPRO5(var1, var2, var3, var4, var5) ((void) ( \ ngcpro1.next = gcprolist, ngcpro1.var = &var1, ngcpro1.nvars = 1, \ ngcpro2.next = &ngcpro1, ngcpro2.var = &var2, ngcpro2.nvars = 1, \ ngcpro3.next = &ngcpro2, ngcpro3.var = &var3, ngcpro3.nvars = 1, \ ngcpro4.next = &ngcpro3, ngcpro4.var = &var4, ngcpro4.nvars = 1, \ ngcpro5.next = &ngcpro4, ngcpro5.var = &var5, ngcpro5.nvars = 1, \ gcprolist = &ngcpro5 )) #define NUNGCPRO ((void) (gcprolist = ngcpro1.next)) #define NNGCPRO1(var1) ((void) ( \ nngcpro1.next = gcprolist, nngcpro1.var = &var1, nngcpro1.nvars = 1, \ gcprolist = &nngcpro1 )) #define NNGCPRO2(var1, var2) ((void) ( \ nngcpro1.next = gcprolist, nngcpro1.var = &var1, nngcpro1.nvars = 1, \ nngcpro2.next = &nngcpro1, nngcpro2.var = &var2, nngcpro2.nvars = 1, \ gcprolist = &nngcpro2 )) #define NNGCPRO3(var1, var2, var3) ((void) ( \ nngcpro1.next = gcprolist, nngcpro1.var = &var1, nngcpro1.nvars = 1, \ nngcpro2.next = &nngcpro1, nngcpro2.var = &var2, nngcpro2.nvars = 1, \ nngcpro3.next = &nngcpro2, nngcpro3.var = &var3, nngcpro3.nvars = 1, \ gcprolist = &nngcpro3 )) #define NNGCPRO4(var1, var2, var3, var4) ((void) ( \ nngcpro1.next = gcprolist, nngcpro1.var = &var1, nngcpro1.nvars = 1, \ nngcpro2.next = &nngcpro1, nngcpro2.var = &var2, nngcpro2.nvars = 1, \ nngcpro3.next = &nngcpro2, nngcpro3.var = &var3, nngcpro3.nvars = 1, \ nngcpro4.next = &nngcpro3, nngcpro4.var = &var4, nngcpro4.nvars = 1, \ gcprolist = &nngcpro4 )) #define NNGCPRO5(var1, var2, var3, var4, var5) ((void) ( \ nngcpro1.next = gcprolist, nngcpro1.var = &var1, nngcpro1.nvars = 1, \ nngcpro2.next = &nngcpro1, nngcpro2.var = &var2, nngcpro2.nvars = 1, \ nngcpro3.next = &nngcpro2, nngcpro3.var = &var3, nngcpro3.nvars = 1, \ nngcpro4.next = &nngcpro3, nngcpro4.var = &var4, nngcpro4.nvars = 1, \ nngcpro5.next = &nngcpro4, nngcpro5.var = &var5, nngcpro5.nvars = 1, \ gcprolist = &nngcpro5 )) #define NNUNGCPRO ((void) (gcprolist = nngcpro1.next)) #endif /* ! DEBUG_GCPRO */ /* Evaluate expr, UNGCPRO, and then return the value of expr. */ #define RETURN_UNGCPRO(expr) do \ { \ Lisp_Object ret_ungc_val = (expr); \ UNGCPRO; \ RETURN_SANS_WARNINGS ret_ungc_val; \ } while (0) /* Evaluate expr, NUNGCPRO, UNGCPRO, and then return the value of expr. */ #define RETURN_NUNGCPRO(expr) do \ { \ Lisp_Object ret_ungc_val = (expr); \ NUNGCPRO; \ UNGCPRO; \ RETURN_SANS_WARNINGS ret_ungc_val; \ } while (0) /* Evaluate expr, NNUNGCPRO, NUNGCPRO, UNGCPRO, and then return the value of expr. */ #define RETURN_NNUNGCPRO(expr) do \ { \ Lisp_Object ret_ungc_val = (expr); \ NNUNGCPRO; \ NUNGCPRO; \ UNGCPRO; \ RETURN_SANS_WARNINGS ret_ungc_val; \ } while (0) extern Lisp_Object_ptr_dynarr *staticpros; #ifdef DEBUG_XEMACS /* Help debug crashes gc-marking a staticpro'ed object. */ void staticpro_1 (Lisp_Object *, char *); void staticpro_nodump_1 (Lisp_Object *, char *); #define staticpro(ptr) staticpro_1 (ptr, #ptr) #define staticpro_nodump(ptr) staticpro_nodump_1 (ptr, #ptr) #else /* Call staticpro (&var) to protect static variable `var'. */ void staticpro (Lisp_Object *); /* Call staticpro_nodump (&var) to protect static variable `var'. */ /* var will not be saved at dump time */ void staticpro_nodump (Lisp_Object *); #endif void register_post_gc_action (void (*fun) (void *), void *arg); int begin_gc_forbidden (void); void end_gc_forbidden (int count); /************************************************************************/ /* Dumping */ /************************************************************************/ /* dump_add_root_struct_ptr (&var, &desc) dumps the structure pointed to by `var'. This is for a single relocatable pointer located in the data segment (i.e. the block pointed to is in the heap). */ #ifdef PDUMP void dump_add_root_struct_ptr (void *, const struct struct_description *); #else #define dump_add_root_struct_ptr(varaddr,descaddr) DO_NOTHING #endif /* dump_add_opaque (&var, size) dumps the opaque static structure `var'. This is for a static block of memory (in the data segment, not the heap), with no relocatable pointers in it. */ #ifdef PDUMP void dump_add_opaque (const void *, Bytecount); #else #define dump_add_opaque(varaddr,size) DO_NOTHING #endif /* dump_add_root_block (&var, &desc) dumps the static structure located at `var' and described by DESC. This is for a static block of memory (in the data segment, not the heap), with relocatable pointers in it, as described by DESC. (#### Not yet implemented) */ #ifdef PDUMP void dump_add_root_block (void *ptraddress, const struct lrecord_description *desc); #else #define dump_add_root_block(ptraddress,desc) DO_NOTHING #endif /* Call dump_add_opaque_int (&int_var) to dump `int_var', of type `int'. */ #ifdef PDUMP #define dump_add_opaque_int(int_varaddr) do { \ int *dao_ = (int_varaddr); /* type check */ \ dump_add_opaque (dao_, sizeof (*dao_)); \ } while (0) #else #define dump_add_opaque_int(int_varaddr) DO_NOTHING #endif /* Call dump_add_opaque_fixnum (&fixnum_var) to dump `fixnum_var', of type `Fixnum'. */ #ifdef PDUMP #define dump_add_opaque_fixnum(fixnum_varaddr) do { \ Fixnum *dao_ = (fixnum_varaddr); /* type check */ \ dump_add_opaque (dao_, sizeof (*dao_)); \ } while (0) #else #define dump_add_opaque_fixnum(fixnum_varaddr) DO_NOTHING #endif /* Call dump_add_root_object (&var) to ensure that var is properly updated after pdump. */ #ifdef PDUMP void dump_add_root_object (Lisp_Object *); #else #define dump_add_root_object(varaddr) DO_NOTHING #endif /* Call dump_add_root_object (&var) to ensure that var is properly updated after pdump. var must point to a linked list of objects out of which some may not be dumped */ #ifdef PDUMP void dump_add_weak_object_chain (Lisp_Object *); #else #define dump_add_weak_object_chain(varaddr) DO_NOTHING #endif /* Nonzero means Emacs has already been initialized. Used during startup to detect startup of dumped Emacs. */ extern int initialized; /************************************************************************/ /* Misc definitions */ /************************************************************************/ /************************************************************************/ /* prototypes */ /************************************************************************/ /* NOTE: Prototypes should go HERE, not in various header files, unless they specifically reference a type that's not defined in lisp.h. (And even then, you might consider adding the type to lisp.h.) The idea is that header files typically contain the innards of objects, and we want to minimize the number of "dependencies" of one file on the specifics of such objects. Putting prototypes here minimizes the number of header files that need to be included -- good for a number of reasons. --ben */ /*--------------- prototypes for various public c functions ------------*/ /* Prototypes for all init/syms_of/vars_of initialization functions. */ #include "symsinit.h" /* Defined in alloc.c */ void release_breathing_space (void); Lisp_Object noseeum_cons (Lisp_Object, Lisp_Object); Lisp_Object make_vector (Elemcount, Lisp_Object); Lisp_Object vector1 (Lisp_Object); Lisp_Object vector2 (Lisp_Object, Lisp_Object); Lisp_Object vector3 (Lisp_Object, Lisp_Object, Lisp_Object); Lisp_Object make_bit_vector (Elemcount, Lisp_Object); Lisp_Object make_bit_vector_from_byte_vector (unsigned char *, Elemcount); Lisp_Object noseeum_make_marker (void); void garbage_collect_1 (void); Lisp_Object acons (Lisp_Object, Lisp_Object, Lisp_Object); Lisp_Object cons3 (Lisp_Object, Lisp_Object, Lisp_Object); Lisp_Object list1 (Lisp_Object); Lisp_Object list2 (Lisp_Object, Lisp_Object); Lisp_Object list3 (Lisp_Object, Lisp_Object, Lisp_Object); Lisp_Object list4 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object); Lisp_Object list5 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object); Lisp_Object list6 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object); DECLARE_DOESNT_RETURN (memory_full (void)); void disksave_object_finalization (void); extern int purify_flag; extern int gc_currently_forbidden; extern EMACS_INT gc_generation_number[1]; int c_readonly (Lisp_Object); int lisp_readonly (Lisp_Object); Lisp_Object build_intstring (const Intbyte *); Lisp_Object build_string (const CIntbyte *); Lisp_Object build_ext_string (const Extbyte *, Lisp_Object); Lisp_Object build_msg_intstring (const Intbyte *); Lisp_Object build_msg_string (const CIntbyte *); Lisp_Object make_string (const Intbyte *, Bytecount); Lisp_Object make_ext_string (const Extbyte *, EMACS_INT, Lisp_Object); void init_string_ascii_begin (Lisp_Object string); Lisp_Object make_uninit_string (Bytecount); Lisp_Object make_float (double); Lisp_Object make_string_nocopy (const Intbyte *, Bytecount); void free_cons (Lisp_Cons *); void free_list (Lisp_Object); void free_alist (Lisp_Object); void mark_conses_in_list (Lisp_Object); void free_marker (Lisp_Marker *); int object_dead_p (Lisp_Object); void mark_object (Lisp_Object obj); int marked_p (Lisp_Object obj); #ifdef MEMORY_USAGE_STATS Bytecount malloced_storage_size (void *, Bytecount, struct overhead_stats *); Bytecount fixed_type_block_overhead (Bytecount); #endif #ifdef PDUMP void pdump (void); int pdump_load (const char *); extern char *pdump_start, *pdump_end; #define DUMPEDP(adr) ((((char *)(adr)) < pdump_end) && (((char *)(adr)) >= pdump_start)) #else #define DUMPEDP(adr) 0 #endif /* Defined in buffer.c */ Lisp_Object get_truename_buffer (Lisp_Object); void switch_to_buffer (Lisp_Object, Lisp_Object); extern int find_file_compare_truenames; extern int find_file_use_truenames; Intbyte *get_initial_directory (Intbyte *pathname, Bytecount size); extern Lisp_Object Vbuffer_alist; void set_buffer_internal (struct buffer *b); struct buffer *decode_buffer (Lisp_Object buffer, int allow_string); void record_buffer (Lisp_Object buf); Lisp_Object get_buffer (Lisp_Object name, int error_if_deleted_or_does_not_exist); int map_over_sharing_buffers (struct buffer *buf, int (*mapfun) (struct buffer *buf, void *closure), void *closure); extern struct buffer *current_buffer; extern void init_initial_directory (void); /* initialize initial_directory */ EXFUN (Fbuffer_disable_undo, 1); EXFUN (Fbuffer_modified_p, 1); EXFUN (Fbuffer_name, 1); EXFUN (Fcurrent_buffer, 0); EXFUN (Ferase_buffer, 1); EXFUN (Fget_buffer, 1); EXFUN (Fget_buffer_create, 1); EXFUN (Fget_file_buffer, 1); EXFUN (Fkill_buffer, 1); EXFUN (Fother_buffer, 3); EXFUN (Frecord_buffer, 1); EXFUN (Fset_buffer, 1); EXFUN (Fset_buffer_modified_p, 2); extern Lisp_Object QSscratch, Qafter_change_function, Qafter_change_functions; extern Lisp_Object Qbefore_change_function, Qbefore_change_functions; extern Lisp_Object Qbuffer_or_string_p, Qdefault_directory, Qfirst_change_hook; extern Lisp_Object Qpermanent_local, Vafter_change_function; extern Lisp_Object Vafter_change_functions, Vbefore_change_function; extern Lisp_Object Vbefore_change_functions, Vbuffer_alist, Vbuffer_defaults; extern Lisp_Object Vinhibit_read_only, Vtransient_mark_mode; /* Defined in bytecode.c */ DECLARE_DOESNT_RETURN (invalid_byte_code (const CIntbyte *reason, Lisp_Object frob)); /* Defined in callproc.c */ Intbyte *egetenv (const CIntbyte *var); void eputenv (const CIntbyte *var, const CIntbyte *value); extern int env_initted; /* Defined in console.c */ void stuff_buffered_input (Lisp_Object); /* Defined in console-msw.c */ EXFUN (Fmswindows_message_box, 3); extern int mswindows_message_outputted; void mswindows_hide_console (void); int mswindows_output_console_string (const Intbyte *ptr, Bytecount len); void write_string_to_mswindows_debugging_output (Intbyte *str, Bytecount len); /* Defined in data.c */ DECLARE_DOESNT_RETURN (c_write_error (Lisp_Object)); DECLARE_DOESNT_RETURN (lisp_write_error (Lisp_Object)); DECLARE_DOESNT_RETURN (args_out_of_range (Lisp_Object, Lisp_Object)); DECLARE_DOESNT_RETURN (args_out_of_range_3 (Lisp_Object, Lisp_Object, Lisp_Object)); Lisp_Object wrong_type_argument (Lisp_Object, Lisp_Object); DECLARE_DOESNT_RETURN (dead_wrong_type_argument (Lisp_Object, Lisp_Object)); void check_int_range (EMACS_INT, EMACS_INT, EMACS_INT); EXFUN (Fint_to_char, 1); EXFUN (Fchar_to_int, 1); enum arith_comparison { arith_equal, arith_notequal, arith_less, arith_grtr, arith_less_or_equal, arith_grtr_or_equal }; Lisp_Object arithcompare (Lisp_Object, Lisp_Object, enum arith_comparison); /* Do NOT use word_to_lisp or wasteful_word_to_lisp to decode time_t's unless you KNOW arg is non-negative. They cannot return negative values! Use make_time. */ Lisp_Object word_to_lisp (unsigned int); unsigned int lisp_to_word (Lisp_Object); /* Defined in dired.c */ Lisp_Object make_directory_hash_table (const Intbyte *); Lisp_Object wasteful_word_to_lisp (unsigned int); /* Defined in doc.c */ Lisp_Object unparesseuxify_doc_string (int, EMACS_INT, Intbyte *, Lisp_Object); Lisp_Object read_doc_string (Lisp_Object); /* Defined in doprnt.c */ Bytecount emacs_doprnt_va (Lisp_Object stream, const Intbyte *format_nonreloc, Bytecount format_length, Lisp_Object format_reloc, va_list vargs); Bytecount emacs_doprnt (Lisp_Object stream, const Intbyte *format_nonreloc, Bytecount format_length, Lisp_Object format_reloc, int nargs, const Lisp_Object *largs, ...); Lisp_Object emacs_vsprintf_string_lisp (const CIntbyte *format_nonreloc, Lisp_Object format_reloc, int nargs, const Lisp_Object *largs); Lisp_Object emacs_sprintf_string_lisp (const CIntbyte *format_nonreloc, Lisp_Object format_reloc, int nargs, ...); Intbyte *emacs_vsprintf_malloc_lisp (const CIntbyte *format_nonreloc, Lisp_Object format_reloc, int nargs, const Lisp_Object *largs, Bytecount *len_out); Intbyte *emacs_sprintf_malloc_lisp (Bytecount *len_out, const CIntbyte *format_nonreloc, Lisp_Object format_reloc, int nargs, ...); Lisp_Object emacs_vsprintf_string (const CIntbyte *format, va_list vargs); Lisp_Object emacs_sprintf_string (const CIntbyte *format, ...) PRINTF_ARGS (1, 2); Intbyte *emacs_vsprintf_malloc (const CIntbyte *format, va_list vargs, Bytecount *len_out); Intbyte *emacs_sprintf_malloc (Bytecount *len_out, const CIntbyte *format, ...) PRINTF_ARGS (2, 3); Bytecount emacs_vsprintf (Intbyte *output, const CIntbyte *format, va_list vargs); Bytecount emacs_sprintf (Intbyte *output, const CIntbyte *format, ...) PRINTF_ARGS (2, 3); /* Defined in editfns.c */ void uncache_home_directory (void); Intbyte *get_home_directory (void); Intbyte *user_login_name (uid_t *); Charbpos charbpos_clip_to_bounds (Charbpos, Charbpos, Charbpos); Bytebpos bytebpos_clip_to_bounds (Bytebpos, Bytebpos, Bytebpos); void buffer_insert1 (struct buffer *, Lisp_Object); Lisp_Object make_string_from_buffer (struct buffer *, Charbpos, Charcount); Lisp_Object make_string_from_buffer_no_extents (struct buffer *, Charbpos, Charcount); Lisp_Object make_time (time_t); Lisp_Object save_excursion_save (void); Lisp_Object save_restriction_save (void); Lisp_Object save_excursion_restore (Lisp_Object); Lisp_Object save_restriction_restore (Lisp_Object); void widen_buffer (struct buffer *b, int no_clip); int beginning_of_line_p (struct buffer *b, Charbpos pt); /* Defined in emacsfns.c */ Lisp_Object save_current_buffer_restore (Lisp_Object); /* Defined in emacs.c */ SIGTYPE fatal_error_signal (int); Lisp_Object make_arg_list (int, Extbyte **); void make_argc_argv (Lisp_Object, int *, Extbyte ***); void free_argc_argv (Extbyte **); Lisp_Object split_external_path (const Extbyte *path); Lisp_Object split_env_path (const CIntbyte *evarname, const Intbyte *default_); /* Nonzero means don't do interactive redisplay and don't change tty modes */ extern int noninteractive, noninteractive1; extern int inhibit_non_essential_printing_operations; extern int preparing_for_armageddon; extern Fixnum emacs_priority; extern int running_asynch_code; extern int suppress_early_error_handler_backtrace; void debug_break (void); int debug_can_access_memory (void *ptr, Bytecount len); void really_abort (void); void zero_out_command_line_status_vars (void); /* Defined in eval.c */ DECLARE_DOESNT_RETURN (signal_error_1 (Lisp_Object, Lisp_Object)); void maybe_signal_error_1 (Lisp_Object, Lisp_Object, Lisp_Object, Error_Behavior); Lisp_Object maybe_signal_continuable_error_1 (Lisp_Object, Lisp_Object, Lisp_Object, Error_Behavior); DECLARE_DOESNT_RETURN_GCC_ATTRIBUTE_SYNTAX_SUCKS (signal_ferror (Lisp_Object, const CIntbyte *, ...), 2, 3); void maybe_signal_ferror (Lisp_Object, Lisp_Object, Error_Behavior, const CIntbyte *, ...) PRINTF_ARGS (4, 5); Lisp_Object signal_continuable_ferror (Lisp_Object, const CIntbyte *, ...) PRINTF_ARGS (2, 3); Lisp_Object maybe_signal_continuable_ferror (Lisp_Object, Lisp_Object, Error_Behavior, const CIntbyte *, ...) PRINTF_ARGS (4, 5); Lisp_Object build_error_data (const CIntbyte *reason, Lisp_Object frob); DECLARE_DOESNT_RETURN (signal_error (Lisp_Object, const CIntbyte *, Lisp_Object)); void maybe_signal_error (Lisp_Object, const CIntbyte *, Lisp_Object, Lisp_Object, Error_Behavior); Lisp_Object signal_continuable_error (Lisp_Object, const CIntbyte *, Lisp_Object); Lisp_Object maybe_signal_continuable_error (Lisp_Object, const CIntbyte *, Lisp_Object, Lisp_Object, Error_Behavior); DECLARE_DOESNT_RETURN_GCC_ATTRIBUTE_SYNTAX_SUCKS (signal_ferror_with_frob (Lisp_Object, Lisp_Object, const CIntbyte *, ...), 3, 4); void maybe_signal_ferror_with_frob (Lisp_Object, Lisp_Object, Lisp_Object, Error_Behavior, const CIntbyte *, ...) PRINTF_ARGS (5, 6); Lisp_Object signal_continuable_ferror_with_frob (Lisp_Object, Lisp_Object, const CIntbyte *, ...) PRINTF_ARGS (3, 4); Lisp_Object maybe_signal_continuable_ferror_with_frob (Lisp_Object, Lisp_Object, Lisp_Object, Error_Behavior, const CIntbyte *, ...) PRINTF_ARGS (5, 6); DECLARE_DOESNT_RETURN (signal_error_2 (Lisp_Object, const CIntbyte *, Lisp_Object, Lisp_Object)); void maybe_signal_error_2 (Lisp_Object, const CIntbyte *, Lisp_Object, Lisp_Object, Lisp_Object, Error_Behavior); Lisp_Object signal_continuable_error_2 (Lisp_Object, const CIntbyte *, Lisp_Object, Lisp_Object); Lisp_Object maybe_signal_continuable_error_2 (Lisp_Object, const CIntbyte *, Lisp_Object, Lisp_Object, Lisp_Object, Error_Behavior); DECLARE_DOESNT_RETURN (signal_malformed_list_error (Lisp_Object)); DECLARE_DOESNT_RETURN (signal_malformed_property_list_error (Lisp_Object)); DECLARE_DOESNT_RETURN (signal_circular_list_error (Lisp_Object)); DECLARE_DOESNT_RETURN (signal_circular_property_list_error (Lisp_Object)); DECLARE_DOESNT_RETURN (syntax_error (const CIntbyte *reason, Lisp_Object frob)); DECLARE_DOESNT_RETURN (syntax_error_2 (const CIntbyte *reason, Lisp_Object frob1, Lisp_Object frob2)); void maybe_syntax_error (const CIntbyte *, Lisp_Object, Lisp_Object, Error_Behavior); DECLARE_DOESNT_RETURN (sferror (const CIntbyte *reason, Lisp_Object frob)); DECLARE_DOESNT_RETURN (sferror_2 (const CIntbyte *reason, Lisp_Object frob1, Lisp_Object frob2)); void maybe_sferror (const CIntbyte *, Lisp_Object, Lisp_Object, Error_Behavior); DECLARE_DOESNT_RETURN (invalid_argument (const CIntbyte *reason, Lisp_Object frob)); DECLARE_DOESNT_RETURN (invalid_argument_2 (const CIntbyte *reason, Lisp_Object frob1, Lisp_Object frob2)); void maybe_invalid_argument (const CIntbyte *, Lisp_Object, Lisp_Object, Error_Behavior); DECLARE_DOESNT_RETURN (invalid_operation (const CIntbyte *reason, Lisp_Object frob)); DECLARE_DOESNT_RETURN (invalid_operation_2 (const CIntbyte *reason, Lisp_Object frob1, Lisp_Object frob2)); void maybe_invalid_operation (const CIntbyte *, Lisp_Object, Lisp_Object, Error_Behavior); DECLARE_DOESNT_RETURN (invalid_state (const CIntbyte *reason, Lisp_Object frob)); DECLARE_DOESNT_RETURN (invalid_state_2 (const CIntbyte *reason, Lisp_Object frob1, Lisp_Object frob2)); void maybe_invalid_state (const CIntbyte *, Lisp_Object, Lisp_Object, Error_Behavior); DECLARE_DOESNT_RETURN (invalid_change (const CIntbyte *reason, Lisp_Object frob)); DECLARE_DOESNT_RETURN (invalid_change_2 (const CIntbyte *reason, Lisp_Object frob1, Lisp_Object frob2)); void maybe_invalid_change (const CIntbyte *, Lisp_Object, Lisp_Object, Error_Behavior); DECLARE_DOESNT_RETURN (invalid_constant (const CIntbyte *reason, Lisp_Object frob)); DECLARE_DOESNT_RETURN (invalid_constant_2 (const CIntbyte *reason, Lisp_Object frob1, Lisp_Object frob2)); void maybe_invalid_constant (const CIntbyte *, Lisp_Object, Lisp_Object, Error_Behavior); DECLARE_DOESNT_RETURN (wtaerror (const CIntbyte *reason, Lisp_Object frob)); DECLARE_DOESNT_RETURN (out_of_memory (const CIntbyte *reason, Lisp_Object frob)); DECLARE_DOESNT_RETURN (stack_overflow (const CIntbyte *reason, Lisp_Object frob)); DECLARE_DOESNT_RETURN_GCC_ATTRIBUTE_SYNTAX_SUCKS (printing_unreadable_object (const CIntbyte *, ...), 1, 2); Lisp_Object signal_void_function_error (Lisp_Object); Lisp_Object signal_invalid_function_error (Lisp_Object); Lisp_Object signal_wrong_number_of_arguments_error (Lisp_Object, int); Lisp_Object run_hook_with_args_in_buffer (struct buffer *, int, Lisp_Object *, enum run_hooks_condition); Lisp_Object run_hook_with_args (int, Lisp_Object *, enum run_hooks_condition); void va_run_hook_with_args (Lisp_Object, int, ...); void va_run_hook_with_args_in_buffer (struct buffer *, Lisp_Object, int, ...); Lisp_Object run_hook (Lisp_Object); Lisp_Object apply1 (Lisp_Object, Lisp_Object); Lisp_Object call0 (Lisp_Object); Lisp_Object call1 (Lisp_Object, Lisp_Object); Lisp_Object call2 (Lisp_Object, Lisp_Object, Lisp_Object); Lisp_Object call3 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object); Lisp_Object call4 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object); Lisp_Object call5 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object); Lisp_Object call6 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object); Lisp_Object call7 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object); Lisp_Object call8 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object); Lisp_Object call0_in_buffer (struct buffer *, Lisp_Object); Lisp_Object call1_in_buffer (struct buffer *, Lisp_Object, Lisp_Object); Lisp_Object call2_in_buffer (struct buffer *, Lisp_Object, Lisp_Object, Lisp_Object); Lisp_Object call3_in_buffer (struct buffer *, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object); Lisp_Object call4_in_buffer (struct buffer *, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object); Lisp_Object call5_in_buffer (struct buffer *, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object); Lisp_Object call6_in_buffer (struct buffer *, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object); Lisp_Object eval_in_buffer (struct buffer *, Lisp_Object); Lisp_Object call0_with_handler (Lisp_Object, Lisp_Object); Lisp_Object call1_with_handler (Lisp_Object, Lisp_Object, Lisp_Object); Lisp_Object eval_in_buffer_trapping_errors (const CIntbyte *, struct buffer *, Lisp_Object); Lisp_Object run_hook_trapping_errors (const CIntbyte *, Lisp_Object); Lisp_Object safe_run_hook_trapping_errors (const CIntbyte *, Lisp_Object, int); Lisp_Object call0_trapping_errors (const CIntbyte *, Lisp_Object); Lisp_Object call1_trapping_errors (const CIntbyte *, Lisp_Object, Lisp_Object); Lisp_Object call2_trapping_errors (const CIntbyte *, Lisp_Object, Lisp_Object, Lisp_Object); Lisp_Object call_with_suspended_errors (lisp_fn_t, volatile Lisp_Object, Lisp_Object, Error_Behavior, int, ...); /* C Code should be using internal_catch, record_unwind_p, condition_case_1 */ Lisp_Object internal_catch (Lisp_Object, Lisp_Object (*) (Lisp_Object), Lisp_Object, int * volatile); Lisp_Object condition_case_1 (Lisp_Object, Lisp_Object (*) (Lisp_Object), Lisp_Object, Lisp_Object (*) (Lisp_Object, Lisp_Object), Lisp_Object); Lisp_Object condition_case_3 (Lisp_Object, Lisp_Object, Lisp_Object); Lisp_Object unbind_to_1 (int, Lisp_Object); #define unbind_to(obj) unbind_to_1 (obj, Qnil) void specbind (Lisp_Object, Lisp_Object); int record_unwind_protect (Lisp_Object (*) (Lisp_Object), Lisp_Object); int record_unwind_protect_freeing (void *ptr); int record_unwind_protect_freeing_dynarr (void *ptr); void do_autoload (Lisp_Object, Lisp_Object); Lisp_Object un_autoload (Lisp_Object); void warn_when_safe_lispobj (Lisp_Object, Lisp_Object, Lisp_Object); void warn_when_safe (Lisp_Object, Lisp_Object, const CIntbyte *, ...) PRINTF_ARGS (3, 4); /* Defined in event-stream.c */ void wait_delaying_user_input (int (*) (void *), void *); int detect_input_pending (void); void reset_this_command_keys (Lisp_Object, int); Lisp_Object enqueue_misc_user_event (Lisp_Object, Lisp_Object, Lisp_Object); Lisp_Object enqueue_misc_user_event_pos (Lisp_Object, Lisp_Object, Lisp_Object, int, int, int, int); extern int modifier_keys_are_sticky; /* Defined in event-Xt.c */ void enqueue_Xt_dispatch_event (Lisp_Object event); void signal_special_Xt_user_event (Lisp_Object, Lisp_Object, Lisp_Object); /* Defined in events.c */ void clear_event_resource (void); Lisp_Object allocate_event (void); EXFUN (Fevent_x_pixel, 1); EXFUN (Fevent_y_pixel, 1); /* Defined in file-coding.c */ EXFUN (Fcoding_category_list, 0); EXFUN (Fcoding_category_system, 1); EXFUN (Fcoding_priority_list, 0); EXFUN (Fcoding_system_description, 1); EXFUN (Fcoding_system_documentation, 1); EXFUN (Fcoding_system_list, 1); EXFUN (Fcoding_system_name, 1); EXFUN (Fcoding_system_p, 1); EXFUN (Fcoding_system_property, 2); EXFUN (Fcoding_system_type, 1); EXFUN (Fcopy_coding_system, 2); EXFUN (Fdecode_big5_char, 1); EXFUN (Fdecode_coding_region, 4); EXFUN (Fdecode_shift_jis_char, 1); EXFUN (Fdefine_coding_system_alias, 2); EXFUN (Fdetect_coding_region, 3); EXFUN (Fdefault_encoding_detection_enabled_p, 0); EXFUN (Fencode_big5_char, 1); EXFUN (Fencode_coding_region, 4); EXFUN (Fencode_shift_jis_char, 1); EXFUN (Ffind_coding_system, 1); EXFUN (Fget_coding_system, 1); EXFUN (Fmake_coding_system, 4); EXFUN (Fset_coding_category_system, 2); EXFUN (Fset_coding_priority_list, 1); EXFUN (Fsubsidiary_coding_system, 2); extern Lisp_Object Qshift_jis, Qiso2022, Qbig5, Qccl; extern Lisp_Object Qcharset_g0; extern Lisp_Object Qcharset_g1, Qcharset_g2, Qcharset_g3, Qcoding_system_error; extern Lisp_Object Qcoding_systemp, Qcr, Qcrlf, Qdecode, Qencode; extern Lisp_Object Qeol_cr, Qeol_crlf, Qeol_lf, Qeol_type, Qescape_quoted; extern Lisp_Object Qforce_g0_on_output, Qforce_g1_on_output; extern Lisp_Object Qforce_g2_on_output, Qforce_g3_on_output; extern Lisp_Object Qinput_charset_conversion, Qlf, Qlock_shift; extern Lisp_Object Qmnemonic, Qno_ascii_cntl, Qno_ascii_eol; extern Lisp_Object Qno_conversion, Qraw_text; extern Lisp_Object Qno_iso6429, Qoutput_charset_conversion; extern Lisp_Object Qpost_read_conversion, Qpre_write_conversion, Qseven; extern Lisp_Object Qshort, Vcoding_system_for_read; extern Lisp_Object Vcoding_system_for_write; extern Lisp_Object Vfile_name_coding_system, Vkeyboard_coding_system; extern Lisp_Object Vterminal_coding_system; extern Lisp_Object Qcanonicalize_after_coding; void init_charset_unicode_tables (Lisp_Object charset); void free_charset_unicode_tables (Lisp_Object charset); void recalculate_unicode_precedence (void); int coding_system_is_for_text_file (Lisp_Object coding_system); Lisp_Object find_coding_system_for_text_file (Lisp_Object name, int eol_wrap); Lisp_Object get_coding_system_for_text_file (Lisp_Object name, int eol_wrap); int coding_system_is_binary (Lisp_Object coding_system); /* Defined in fileio.c */ void record_auto_save (void); void force_auto_save_soon (void); DECLARE_DOESNT_RETURN (report_error_with_errno (Lisp_Object errtype, const CIntbyte *string, Lisp_Object data)); DECLARE_DOESNT_RETURN (report_file_type_error (Lisp_Object errtype, Lisp_Object oserrmess, const CIntbyte *string, Lisp_Object data)); DECLARE_DOESNT_RETURN (report_file_error (const CIntbyte *, Lisp_Object)); Lisp_Object lisp_strerror (int); Lisp_Object expand_and_dir_to_file (Lisp_Object, Lisp_Object); int internal_delete_file (Lisp_Object); /* Defined in filelock.c */ void lock_file (Lisp_Object); void unlock_file (Lisp_Object); void unlock_all_files (void); void unlock_buffer (struct buffer *); /* Defined in filemode.c */ void filemodestring (struct stat *, char *); /* Defined in floatfns.c */ double extract_float (Lisp_Object); /* Defined in fns.c */ Lisp_Object list_sort (Lisp_Object, Lisp_Object, int (*) (Lisp_Object, Lisp_Object, Lisp_Object)); Lisp_Object merge (Lisp_Object, Lisp_Object, Lisp_Object); void bump_string_modiff (Lisp_Object); Lisp_Object memq_no_quit (Lisp_Object, Lisp_Object); Lisp_Object assoc_no_quit (Lisp_Object, Lisp_Object); Lisp_Object assq_no_quit (Lisp_Object, Lisp_Object); Lisp_Object rassq_no_quit (Lisp_Object, Lisp_Object); Lisp_Object delq_no_quit (Lisp_Object, Lisp_Object); Lisp_Object delq_no_quit_and_free_cons (Lisp_Object, Lisp_Object); Lisp_Object remassoc_no_quit (Lisp_Object, Lisp_Object); Lisp_Object remassq_no_quit (Lisp_Object, Lisp_Object); Lisp_Object remrassq_no_quit (Lisp_Object, Lisp_Object); int plists_differ (Lisp_Object, Lisp_Object, int, int, int); Lisp_Object internal_plist_get (Lisp_Object, Lisp_Object); void internal_plist_put (Lisp_Object *, Lisp_Object, Lisp_Object); int internal_remprop (Lisp_Object *, Lisp_Object); Lisp_Object external_plist_get (Lisp_Object *, Lisp_Object, int, Error_Behavior); void external_plist_put (Lisp_Object *, Lisp_Object, Lisp_Object, int, Error_Behavior); int external_remprop (Lisp_Object *, Lisp_Object, int, Error_Behavior); int internal_equal (Lisp_Object, Lisp_Object, int); Lisp_Object concat2 (Lisp_Object, Lisp_Object); Lisp_Object concat3 (Lisp_Object, Lisp_Object, Lisp_Object); Lisp_Object vconcat2 (Lisp_Object, Lisp_Object); Lisp_Object vconcat3 (Lisp_Object, Lisp_Object, Lisp_Object); Lisp_Object nconc2 (Lisp_Object, Lisp_Object); Lisp_Object bytecode_nconc2 (Lisp_Object *); void check_losing_bytecode (const char *, Lisp_Object); Lisp_Object add_suffix_to_symbol (Lisp_Object symbol, const Char_ASCII *ascii_string); Lisp_Object add_prefix_to_symbol (const Char_ASCII *ascii_string, Lisp_Object symbol); /* Defined in glyphs.c */ Error_Behavior decode_error_behavior_flag (Lisp_Object); Lisp_Object encode_error_behavior_flag (Error_Behavior); /* Defined in glyphs-shared.c */ void shared_resource_validate (Lisp_Object instantiator); Lisp_Object shared_resource_normalize (Lisp_Object inst, Lisp_Object console_type, Lisp_Object dest_mask, Lisp_Object tag); extern Lisp_Object Q_resource_type, Q_resource_id; /* Defined in gui.c */ DECLARE_DOESNT_RETURN (gui_error (const char *reason, Lisp_Object frob)); DECLARE_DOESNT_RETURN (gui_error_2 (const char *reason, Lisp_Object frob0, Lisp_Object frob1)); /* Defined in indent.c */ int bi_spaces_at_point (struct buffer *, Bytebpos); int column_at_point (struct buffer *, Charbpos, int); int string_column_at_point (Lisp_String *, Charbpos, int); int current_column (struct buffer *); void invalidate_current_column (void); Charbpos vmotion (struct window *, Charbpos, int, int *); Charbpos vmotion_pixels (Lisp_Object, Charbpos, int, int, int *); /* Defined in insdel.c */ void set_buffer_point (struct buffer *buf, Charbpos pos, Bytebpos bipos); /* Defined in intl-win32.c */ EXFUN (Fmswindows_set_current_locale, 1); EXFUN (Fmswindows_current_locale, 0); EXFUN (Fmswindows_user_default_locale, 0); EXFUN (Fmswindows_system_default_locale, 0); EXFUN (Fmswindows_locale_code_page, 1); EXFUN (Fmswindows_supported_locales, 0); EXFUN (Fmswindows_charset_code_page, 1); EXFUN (Fmswindows_set_charset_code_page, 2); extern Lisp_Object Qmswindows_tstr, Qmswindows_unicode; extern Lisp_Object Qmswindows_multibyte, Qmswindows_multibyte_to_unicode; /* Defined in keymap.c */ void where_is_to_char (Lisp_Object, char *); /* Defined in lread.c */ void ebolify_bytecode_constants (Lisp_Object); void close_load_descs (void); int locate_file (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object *, int); EXFUN (Flocate_file_clear_hashing, 1); int isfloat_string (const char *); /* Well, I've decided to enable this. -- ben */ /* And I've decided to make it work right. -- sb */ #define LOADHIST /* Define the following symbol to enable load history of dumped files */ #define LOADHIST_DUMPED /* Define the following symbol to enable load history of C source */ #define LOADHIST_BUILTIN #ifdef LOADHIST /* this is just a stupid idea */ #define LOADHIST_ATTACH(x) \ do { if (initialized) Vcurrent_load_list = Fcons (x, Vcurrent_load_list); } \ while (0) #else /*! LOADHIST */ # define LOADHIST_ATTACH(x) #endif /*! LOADHIST */ /* Defined in marker.c */ Bytebpos bi_marker_position (Lisp_Object); Charbpos marker_position (Lisp_Object); void set_bi_marker_position (Lisp_Object, Bytebpos); void set_marker_position (Lisp_Object, Charbpos); void unchain_marker (Lisp_Object); Lisp_Object noseeum_copy_marker (Lisp_Object, Lisp_Object); Lisp_Object set_marker_restricted (Lisp_Object, Lisp_Object, Lisp_Object); #ifdef MEMORY_USAGE_STATS int compute_buffer_marker_usage (struct buffer *, struct overhead_stats *); #endif void init_buffer_markers (struct buffer *b); void uninit_buffer_markers (struct buffer *b); /* Defined in menubar.c */ extern int popup_menu_up_p; extern int menubar_show_keybindings; extern int popup_menu_titles; /* Defined in minibuf.c */ extern int minibuf_level; Charcount scmp_1 (const Intbyte *, const Intbyte *, Charcount, int); #define scmp(s1, s2, len) scmp_1 (s1, s2, len, completion_ignore_case) extern int completion_ignore_case; int regexp_ignore_completion_p (const Intbyte *, Lisp_Object, Bytecount, Bytecount); Lisp_Object clear_echo_area (struct frame *, Lisp_Object, int); Lisp_Object clear_echo_area_from_print (struct frame *, Lisp_Object, int); void echo_area_append (struct frame *, const Intbyte *, Lisp_Object, Bytecount, Bytecount, Lisp_Object); void echo_area_message (struct frame *, const Intbyte *, Lisp_Object, Bytecount, Bytecount, Lisp_Object); Lisp_Object echo_area_status (struct frame *); int echo_area_active (struct frame *); Lisp_Object echo_area_contents (struct frame *); void message_internal (const Intbyte *, Lisp_Object, Bytecount, Bytecount); void message_append_internal (const Intbyte *, Lisp_Object, Bytecount, Bytecount); void message (const char *, ...) PRINTF_ARGS (1, 2); void message_append (const char *, ...) PRINTF_ARGS (1, 2); void message_no_translate (const char *, ...) PRINTF_ARGS (1, 2); void clear_message (void); /* Defined in mule-charset.c */ extern Lisp_Object Ql2r, Qr2l; /* Defined in print.c */ /* Lower-level ways to output data: */ void print_internal (Lisp_Object, Lisp_Object, int); void debug_print (Lisp_Object); /* NOTE: Do not call this with the data of a Lisp_String. Use princ. * Note: stream should be defaulted before calling * (eg Qnil means stdout, not Vstandard_output, etc) */ void write_c_string (const CIntbyte *str, Lisp_Object stream); /* Same goes for this function. */ void write_string (const Intbyte *str, Lisp_Object stream); /* Same goes for this function. */ void write_string_1 (const Intbyte *str, Bytecount size, Lisp_Object stream); /* Higher-level (printf-style) ways to output data: */ void write_fmt_string (Lisp_Object stream, const CIntbyte *fmt, ...); void write_fmt_string_lisp (Lisp_Object stream, const CIntbyte *fmt, int nargs, ...); void stderr_out (const CIntbyte *, ...) PRINTF_ARGS (1, 2); void stderr_out_lisp (const CIntbyte *, int nargs, ...); void stdout_out (const CIntbyte *, ...) PRINTF_ARGS (1, 2); void debug_out (const CIntbyte *, ...) PRINTF_ARGS (1, 2); DECLARE_DOESNT_RETURN_GCC_ATTRIBUTE_SYNTAX_SUCKS (fatal (const CIntbyte *, ...), 1, 2); /* Internal functions: */ void temp_output_buffer_setup (Lisp_Object); void temp_output_buffer_show (Lisp_Object, Lisp_Object); void print_cons (Lisp_Object, Lisp_Object, int); void print_vector (Lisp_Object, Lisp_Object, int); void print_string (Lisp_Object, Lisp_Object, int); void print_symbol (Lisp_Object, Lisp_Object, int); void print_float (Lisp_Object, Lisp_Object, int); /* The number of bytes required to store the decimal printed representation of an integral type. Add a few bytes for truncation, optional sign prefix, and null byte terminator. 2.40824 == log (256) / log (10). We don't use floating point since Sun cc (buggily?) cannot use floating point computations to define a compile-time integral constant. */ #define DECIMAL_PRINT_SIZE(integral_type) \ (((2410824 * sizeof (integral_type)) / 1000000) + 3) void long_to_string (char *, long); extern int print_escape_newlines; extern int print_readably; Lisp_Object internal_with_output_to_temp_buffer (Lisp_Object, Lisp_Object (*) (Lisp_Object), Lisp_Object, Lisp_Object); void float_to_string (char *, double); void internal_object_printer (Lisp_Object, Lisp_Object, int); void debug_short_backtrace (int); void debug_backtrace (void); /* Defined in process.c */ DECLARE_DOESNT_RETURN (report_process_error (const char *, Lisp_Object)); DECLARE_DOESNT_RETURN (report_network_error (const char *, Lisp_Object)); /* Defined in profile.c */ void mark_profiling_info (void); void profile_increase_call_count (Lisp_Object); extern int profiling_active; extern int profiling_redisplay_flag; /* Defined in rangetab.c */ void put_range_table (Lisp_Object, EMACS_INT, EMACS_INT, Lisp_Object); int unified_range_table_bytes_needed (Lisp_Object); int unified_range_table_bytes_used (void *); void unified_range_table_copy_data (Lisp_Object, void *); Lisp_Object unified_range_table_lookup (void *, EMACS_INT, Lisp_Object); int unified_range_table_nentries (void *); void unified_range_table_get_range (void *, int, EMACS_INT *, EMACS_INT *, Lisp_Object *); /* Defined in search.c */ struct re_pattern_buffer; struct re_registers; Charbpos scan_buffer (struct buffer *, Emchar, Charbpos, Charbpos, EMACS_INT, EMACS_INT *, int); Charbpos find_next_newline (struct buffer *, Charbpos, int); Charbpos find_next_newline_no_quit (struct buffer *, Charbpos, int); Bytebpos bi_find_next_newline_no_quit (struct buffer *, Bytebpos, int); Bytebpos bi_find_next_emchar_in_string (Lisp_String*, Emchar, Bytebpos, EMACS_INT); Charbpos find_before_next_newline (struct buffer *, Charbpos, Charbpos, int); struct re_pattern_buffer *compile_pattern (Lisp_Object, struct re_registers *, Lisp_Object, int, Error_Behavior); Bytecount fast_string_match (Lisp_Object, const Intbyte *, Lisp_Object, Bytecount, Bytecount, int, Error_Behavior, int); Bytecount fast_lisp_string_match (Lisp_Object, Lisp_Object); void restore_match_data (void); extern Fixnum warn_about_possibly_incompatible_back_references; /* Defined in signal.c */ void init_interrupts_late (void); int begin_dont_check_for_quit (void); /* Defined in sound.c */ void init_device_sound (struct device *); DECLARE_DOESNT_RETURN (report_sound_error (const Char_ASCII *, Lisp_Object)); /* Defined in specifier.c */ Lisp_Object specifier_instance (Lisp_Object, Lisp_Object, Lisp_Object, Error_Behavior, int, int, Lisp_Object); Lisp_Object specifier_instance_no_quit (Lisp_Object, Lisp_Object, Lisp_Object, Error_Behavior, int, Lisp_Object); /* Defined in symbols.c */ unsigned int hash_string (const Intbyte *, Bytecount); Lisp_Object intern_int (const Intbyte *str); Lisp_Object intern (const CIntbyte *str); Lisp_Object oblookup (Lisp_Object, const Intbyte *, Bytecount); void map_obarray (Lisp_Object, int (*) (Lisp_Object, void *), void *); Lisp_Object indirect_function (Lisp_Object, int); Lisp_Object symbol_value_in_buffer (Lisp_Object, Lisp_Object); void kill_buffer_local_variables (struct buffer *); int symbol_value_buffer_local_info (Lisp_Object, struct buffer *); Lisp_Object find_symbol_value (Lisp_Object); Lisp_Object find_symbol_value_quickly (Lisp_Object, int); Lisp_Object top_level_value (Lisp_Object); void reject_constant_symbols (Lisp_Object sym, Lisp_Object newval, int function_p, Lisp_Object follow_past_lisp_magic); /* Defined in syntax.c */ Charbpos scan_words (struct buffer *, Charbpos, int); /* Defined in sysdep.c */ long get_random (void); void seed_random (long arg); /* Defined in text.c */ void find_charsets_in_intbyte_string (unsigned char *charsets, const Intbyte *str, Bytecount len); void find_charsets_in_emchar_string (unsigned char *charsets, const Emchar *str, Charcount len); int intbyte_string_displayed_columns (const Intbyte *str, Bytecount len); int emchar_string_displayed_columns (const Emchar *str, Charcount len); Charcount intbyte_string_nonascii_chars (const Intbyte *str, Bytecount len); void convert_intbyte_string_into_emchar_dynarr (const Intbyte *str, Bytecount len, Emchar_dynarr *dyn); Charcount convert_intbyte_string_into_emchar_string (const Intbyte *str, Bytecount len, Emchar *arr); void convert_emchar_string_into_intbyte_dynarr (Emchar *arr, int nels, Intbyte_dynarr *dyn); Intbyte *convert_emchar_string_into_malloced_string (Emchar *arr, int nels, Bytecount *len_out); /* flags for get_buffer_pos_char(), get_buffer_range_char(), etc. */ /* At most one of GB_COERCE_RANGE and GB_NO_ERROR_IF_BAD should be specified. At most one of GB_NEGATIVE_FROM_END and GB_NO_ERROR_IF_BAD should be specified. */ #define GB_ALLOW_PAST_ACCESSIBLE (1 << 0) #define GB_ALLOW_NIL (1 << 1) #define GB_CHECK_ORDER (1 << 2) #define GB_COERCE_RANGE (1 << 3) #define GB_NO_ERROR_IF_BAD (1 << 4) #define GB_NEGATIVE_FROM_END (1 << 5) #define GB_HISTORICAL_STRING_BEHAVIOR (GB_NEGATIVE_FROM_END | GB_ALLOW_NIL) Charbpos get_buffer_pos_char (struct buffer *b, Lisp_Object pos, unsigned int flags); Bytebpos get_buffer_pos_byte (struct buffer *b, Lisp_Object pos, unsigned int flags); void get_buffer_range_char (struct buffer *b, Lisp_Object from, Lisp_Object to, Charbpos *from_out, Charbpos *to_out, unsigned int flags); void get_buffer_range_byte (struct buffer *b, Lisp_Object from, Lisp_Object to, Bytebpos *from_out, Bytebpos *to_out, unsigned int flags); Charcount get_string_pos_char (Lisp_Object string, Lisp_Object pos, unsigned int flags); Bytecount get_string_pos_byte (Lisp_Object string, Lisp_Object pos, unsigned int flags); void get_string_range_char (Lisp_Object string, Lisp_Object from, Lisp_Object to, Charcount *from_out, Charcount *to_out, unsigned int flags); void get_string_range_byte (Lisp_Object string, Lisp_Object from, Lisp_Object to, Bytecount *from_out, Bytecount *to_out, unsigned int flags); Charbpos get_buffer_or_string_pos_char (Lisp_Object object, Lisp_Object pos, unsigned int flags); Bytebpos get_buffer_or_string_pos_byte (Lisp_Object object, Lisp_Object pos, unsigned int flags); void get_buffer_or_string_range_char (Lisp_Object object, Lisp_Object from, Lisp_Object to, Charbpos *from_out, Charbpos *to_out, unsigned int flags); void get_buffer_or_string_range_byte (Lisp_Object object, Lisp_Object from, Lisp_Object to, Bytebpos *from_out, Bytebpos *to_out, unsigned int flags); Charbpos buffer_or_string_accessible_begin_char (Lisp_Object object); Charbpos buffer_or_string_accessible_end_char (Lisp_Object object); Bytebpos buffer_or_string_accessible_begin_byte (Lisp_Object object); Bytebpos buffer_or_string_accessible_end_byte (Lisp_Object object); Charbpos buffer_or_string_absolute_begin_char (Lisp_Object object); Charbpos buffer_or_string_absolute_end_char (Lisp_Object object); Bytebpos buffer_or_string_absolute_begin_byte (Lisp_Object object); Bytebpos buffer_or_string_absolute_end_byte (Lisp_Object object); #ifdef ENABLE_COMPOSITE_CHARS Emchar lookup_composite_char (Intbyte *str, int len); Lisp_Object composite_char_string (Emchar ch); #endif /* ENABLE_COMPOSITE_CHARS */ EXFUN (Ffind_charset, 1); EXFUN (Fget_charset, 1); EXFUN (Fcharset_list, 0); extern Lisp_Object Vcharset_ascii; extern Lisp_Object Vcharset_control_1; extern Lisp_Object Vcharset_latin_iso8859_1; extern Lisp_Object Vcharset_latin_iso8859_2; extern Lisp_Object Vcharset_latin_iso8859_3; extern Lisp_Object Vcharset_latin_iso8859_4; extern Lisp_Object Vcharset_thai_tis620; extern Lisp_Object Vcharset_greek_iso8859_7; extern Lisp_Object Vcharset_arabic_iso8859_6; extern Lisp_Object Vcharset_hebrew_iso8859_8; extern Lisp_Object Vcharset_katakana_jisx0201; extern Lisp_Object Vcharset_latin_jisx0201; extern Lisp_Object Vcharset_cyrillic_iso8859_5; extern Lisp_Object Vcharset_latin_iso8859_9; extern Lisp_Object Vcharset_japanese_jisx0208_1978; extern Lisp_Object Vcharset_chinese_gb2312; extern Lisp_Object Vcharset_japanese_jisx0208; extern Lisp_Object Vcharset_korean_ksc5601; extern Lisp_Object Vcharset_japanese_jisx0212; extern Lisp_Object Vcharset_chinese_cns11643_1; extern Lisp_Object Vcharset_chinese_cns11643_2; extern Lisp_Object Vcharset_chinese_big5_1; extern Lisp_Object Vcharset_chinese_big5_2; extern Lisp_Object Vcharset_composite; Emchar Lstream_get_emchar_1 (Lstream *stream, int first_char); int Lstream_fput_emchar (Lstream *stream, Emchar ch); void Lstream_funget_emchar (Lstream *stream, Emchar ch); DECLARE_INLINE_HEADER (Intbyte *qxestrdup (const Intbyte *s)) { return (Intbyte *) xstrdup ((const char *) s); } DECLARE_INLINE_HEADER (Bytecount qxestrlen (const Intbyte *s)) { return strlen ((const char *) s); } DECLARE_INLINE_HEADER (Charcount qxestrcharlen (const Intbyte *s)) { return bytecount_to_charcount (s, qxestrlen (s)); } DECLARE_INLINE_HEADER (int qxestrcmp (const Intbyte *s1, const Intbyte *s2)) { return strcmp ((const char *) s1, (const char *) s2); } DECLARE_INLINE_HEADER (int qxestrcmp_c (const Intbyte *s1, const char *s2)) { return strcmp ((const char *) s1, s2); } DECLARE_INLINE_HEADER (int qxestrncmp (const Intbyte *string1, const Intbyte *string2, Bytecount count)) { return strncmp ((const char *) string1, (const char *) string2, (size_t) count); } DECLARE_INLINE_HEADER (int qxestrncmp_c (const Intbyte *string1, const char *string2, Bytecount count)) { return strncmp ((const char *) string1, string2, (size_t) count); } DECLARE_INLINE_HEADER (Intbyte *qxestrcpy (Intbyte *strDest, const Intbyte *strSource)) { return (Intbyte *) strcpy ((char *) strDest, (const char *) strSource); } DECLARE_INLINE_HEADER (Intbyte *qxestrcpy_c (Intbyte *strDest, const char *strSource)) { return (Intbyte *) strcpy ((char *) strDest, strSource); } DECLARE_INLINE_HEADER (Intbyte *qxestrncpy (Intbyte *strDest, const Intbyte *strSource, Bytecount count)) { return (Intbyte *) strncpy ((char *) strDest, (const char *) strSource, (size_t) count); } DECLARE_INLINE_HEADER (Intbyte *qxestrncpy_c (Intbyte *strDest, const char *strSource, Bytecount count)) { return (Intbyte *) strncpy ((char *) strDest, strSource, (size_t) count); } DECLARE_INLINE_HEADER (Intbyte *qxestrcat (Intbyte *strDest, const Intbyte *strSource)) { return (Intbyte *) strcat ((char *) strDest, (const char *) strSource); } DECLARE_INLINE_HEADER (Intbyte *qxestrcat_c (Intbyte *strDest, const char *strSource)) { return (Intbyte *) strcat ((char *) strDest, strSource); } DECLARE_INLINE_HEADER (Intbyte *qxestrncat (Intbyte *strDest, const Intbyte *strSource, Bytecount count)) { return (Intbyte *) strncat ((char *) strDest, (const char *) strSource, (size_t) count); } DECLARE_INLINE_HEADER (Intbyte *qxestrncat_c (Intbyte *strDest, const char *strSource, Bytecount count)) { return (Intbyte *) strncat ((char *) strDest, strSource, (size_t) count); } DECLARE_INLINE_HEADER (Intbyte *qxestrchr (const Intbyte *s, Emchar c)) { assert (c >= 0 && c <= 255); return (Intbyte *) strchr ((const char *) s, c); } DECLARE_INLINE_HEADER (Intbyte *qxestrrchr (const Intbyte *s, Emchar c)) { assert (c >= 0 && c <= 255); return (Intbyte *) strrchr ((const char *) s, c); } DECLARE_INLINE_HEADER (Intbyte *qxestrstr (const Intbyte *string1, const Intbyte *string2)) { return (Intbyte *) strstr ((const char *) string1, (const char *) string2); } DECLARE_INLINE_HEADER (Bytecount qxestrcspn (const Intbyte *string, const CIntbyte *strCharSet)) { return (Bytecount) strcspn ((const char *) string, strCharSet); } DECLARE_INLINE_HEADER (Bytecount qxestrspn (const Intbyte *string, const CIntbyte *strCharSet)) { return (Bytecount) strspn ((const char *) string, strCharSet); } DECLARE_INLINE_HEADER (Intbyte *qxestrpbrk (const Intbyte *string, const CIntbyte *strCharSet)) { return (Intbyte *) strpbrk ((const char *) string, strCharSet); } DECLARE_INLINE_HEADER (Intbyte *qxestrtok (Intbyte *strToken, const CIntbyte *strDelimit)) { return (Intbyte *) strtok ((char *) strToken, strDelimit); } DECLARE_INLINE_HEADER (double qxestrtod (const Intbyte *nptr, Intbyte **endptr)) { return strtod ((const char *) nptr, (char **) endptr); } DECLARE_INLINE_HEADER (long qxestrtol (const Intbyte *nptr, Intbyte **endptr, int base)) { return strtol ((const char *) nptr, (char **) endptr, base); } DECLARE_INLINE_HEADER (unsigned long qxestrtoul (const Intbyte *nptr, Intbyte **endptr, int base)) { return strtoul ((const char *) nptr, (char **) endptr, base); } DECLARE_INLINE_HEADER (int qxeatoi (const Intbyte *string)) { return atoi ((const char *) string); } int qxesprintf (Intbyte *buffer, const CIntbyte *format, ...) PRINTF_ARGS (2, 3); /* Do not use POSIX locale routines. Not Mule-correct. */ #define qxestrcoll DO NOT USE. #define qxestrxfrm DO NOT USE. int qxestrcasecmp (const Intbyte *s1, const Intbyte *s2); int qxestrcasecmp_c (const Intbyte *s1, const Char_ASCII *s2); int qxestrcasecmp_i18n (const Intbyte *s1, const Intbyte *s2); int ascii_strcasecmp (const Char_ASCII *s1, const Char_ASCII *s2); int lisp_strcasecmp (Lisp_Object s1, Lisp_Object s2); int lisp_strcasecmp_i18n (Lisp_Object s1, Lisp_Object s2); int qxestrncasecmp (const Intbyte *s1, const Intbyte *s2, Bytecount len); int qxestrncasecmp_c (const Intbyte *s1, const Char_ASCII *s2, Bytecount len); int qxestrncasecmp_i18n (const Intbyte *s1, const Intbyte *s2, Bytecount len); int ascii_strncasecmp (const Char_ASCII *s1, const Char_ASCII *s2, Bytecount len); int qxememcmp (const Intbyte *s1, const Intbyte *s2, Bytecount len); int qxememcasecmp (const Intbyte *s1, const Intbyte *s2, Bytecount len); int qxememcasecmp_i18n (const Intbyte *s1, const Intbyte *s2, Bytecount len); void buffer_mule_signal_inserted_region (struct buffer *buf, Charbpos start, Bytecount bytelength, Charcount charlength); void buffer_mule_signal_deleted_region (struct buffer *buf, Charbpos start, Charbpos end, Bytebpos bi_start, Bytebpos bi_end); /* Defined in unicode.c */ extern const struct struct_description to_unicode_description[]; extern const struct struct_description from_unicode_description[]; void init_charset_unicode_tables (Lisp_Object charset); void free_charset_unicode_tables (Lisp_Object charset); void recalculate_unicode_precedence (void); extern Lisp_Object Qunicode; extern Lisp_Object Qutf_16, Qutf_8, Qucs_4, Qutf_7; #ifdef MEMORY_USAGE_STATS Bytecount compute_from_unicode_table_size (Lisp_Object charset, struct overhead_stats *stats); Bytecount compute_to_unicode_table_size (Lisp_Object charset, struct overhead_stats *stats); #endif /* MEMORY_USAGE_STATS */ /* Defined in undo.c */ Lisp_Object truncate_undo_list (Lisp_Object, int, int); void record_extent (Lisp_Object, int); void record_insert (struct buffer *, Charbpos, Charcount); void record_delete (struct buffer *, Charbpos, Charcount); void record_change (struct buffer *, Charbpos, Charcount); /* Defined in unex*.c */ int unexec (char *, char *, uintptr_t, uintptr_t, uintptr_t); #ifdef RUN_TIME_REMAP int run_time_remap (char *); #endif /* Defined in vm-limit.c */ void memory_warnings (void *, void (*) (const char *)); /* Defined in window.c */ Lisp_Object save_window_excursion_unwind (Lisp_Object); Lisp_Object display_buffer (Lisp_Object, Lisp_Object, Lisp_Object); /*--------------- prototypes for Lisp primitives in C ------------*/ /* The following were machine generated 19980312 */ EXFUN (Faccept_process_output, 3); EXFUN (Fadd1, 1); EXFUN (Fadd_spec_to_specifier, 5); EXFUN (Fadd_timeout, 4); EXFUN (Fappend, MANY); EXFUN (Fapply, MANY); EXFUN (Faref, 2); EXFUN (Faset, 3); EXFUN (Fassoc, 2); EXFUN (Fassq, 2); EXFUN (Fbacktrace, 2); EXFUN (Fbeginning_of_line, 2); EXFUN (Fbobp, 1); EXFUN (Fbolp, 1); EXFUN (Fboundp, 1); EXFUN (Fbuffer_substring, 3); EXFUN (Fbuilt_in_variable_type, 1); EXFUN (Fbyte_code, 3); EXFUN (Fcall_interactively, 3); EXFUN (Fcanonicalize_lax_plist, 2); EXFUN (Fcanonicalize_plist, 2); EXFUN (Fcar, 1); EXFUN (Fcar_safe, 1); EXFUN (Fcdr, 1); EXFUN (Fchar_after, 2); EXFUN (Fchar_to_string, 1); EXFUN (Fcheck_valid_plist, 1); EXFUN (Fvalid_plist_p, 1); EXFUN (Fclear_range_table, 1); EXFUN (Fcommand_execute, 3); EXFUN (Fcommandp, 1); EXFUN (Fconcat, MANY); EXFUN (Fcons, 2); EXFUN (Fcopy_alist, 1); EXFUN (Fcopy_event, 2); EXFUN (Fcopy_list, 1); EXFUN (Fcopy_marker, 2); EXFUN (Fcopy_sequence, 1); EXFUN (Fcopy_tree, 2); EXFUN (Fcurrent_window_configuration, 1); EXFUN (Fdefault_boundp, 1); EXFUN (Fdefault_value, 1); EXFUN (Fdefine_key, 3); EXFUN (Fdelete, 2); EXFUN (Fdelete_region, 3); EXFUN (Fdelete_process, 1); EXFUN (Fdelq, 2); EXFUN (Fdestructive_alist_to_plist, 1); EXFUN (Fdgettext, 2); EXFUN (Fding, 3); EXFUN (Fdirectory_file_name, 1); EXFUN (Fdisable_timeout, 1); EXFUN (Fdiscard_input, 0); EXFUN (Fdispatch_event, 1); EXFUN (Fdisplay_error, 2); EXFUN (Fdo_auto_save, 2); EXFUN (Fdowncase, 2); EXFUN (Felt, 2); EXFUN (Fend_of_line, 2); EXFUN (Fenqueue_eval_event, 2); EXFUN (Feobp, 1); EXFUN (Feolp, 1); EXFUN (Fequal, 2); EXFUN (Ferror_message_string, 1); EXFUN (Feval, 1); EXFUN (Fevent_to_character, 4); EXFUN (Fexecute_kbd_macro, 2); EXFUN (Fexpand_abbrev, 0); EXFUN (Fexpand_file_name, 2); EXFUN (Fextent_at, 5); EXFUN (Fextent_property, 3); EXFUN (Ffboundp, 1); EXFUN (Ffile_accessible_directory_p, 1); EXFUN (Ffile_directory_p, 1); EXFUN (Ffile_executable_p, 1); EXFUN (Ffile_exists_p, 1); EXFUN (Ffile_name_absolute_p, 1); EXFUN (Ffile_name_as_directory, 1); EXFUN (Ffile_name_directory, 1); EXFUN (Ffile_name_nondirectory, 1); EXFUN (Ffile_readable_p, 1); EXFUN (Ffile_symlink_p, 1); EXFUN (Ffile_truename, 2); EXFUN (Ffind_file_name_handler, 2); EXFUN (Ffollowing_char, 1); EXFUN (Fformat, MANY); EXFUN (Fforward_char, 2); EXFUN (Fforward_line, 2); EXFUN (Ffset, 2); EXFUN (Ffuncall, MANY); EXFUN (Ffunctionp, 1); EXFUN (Fgeq, MANY); EXFUN (Fget, 3); EXFUN (Fget_buffer_process, 1); EXFUN (Fget_process, 1); EXFUN (Fget_range_table, 3); EXFUN (Fgettext, 1); EXFUN (Fgoto_char, 2); EXFUN (Fgtr, MANY); EXFUN (Findent_to, 3); EXFUN (Findirect_function, 1); EXFUN (Finsert, MANY); EXFUN (Finsert_buffer_substring, 3); EXFUN (Finsert_char, 4); EXFUN (Finsert_file_contents_internal, 7); EXFUN (Finteractive_p, 0); EXFUN (Fintern, 2); EXFUN (Fintern_soft, 2); EXFUN (Fkey_description, 1); EXFUN (Fkill_emacs, 1); EXFUN (Fkill_local_variable, 1); EXFUN (Flast, 2); EXFUN (Flax_plist_get, 3); EXFUN (Flax_plist_remprop, 2); EXFUN (Flength, 1); EXFUN (Fleq, MANY); EXFUN (Flist, MANY); EXFUN (Flistp, 1); EXFUN (Flist_modules, 0); EXFUN (Fload_module, 3); EXFUN (Flookup_key, 3); EXFUN (Flss, MANY); EXFUN (Fmake_byte_code, MANY); EXFUN (Fmake_charset, 3); EXFUN (Fmake_glyph_internal, 1); EXFUN (Fmake_list, 2); EXFUN (Fmake_marker, 0); EXFUN (Fmake_range_table, 0); EXFUN (Fmake_temp_name, 1); EXFUN (Fmake_sparse_keymap, 1); EXFUN (Fmake_string, 2); EXFUN (Fmake_symbol, 1); EXFUN (Fmake_vector, 2); EXFUN (Fmapcar, 2); EXFUN (Fmarker_buffer, 1); EXFUN (Fmarker_position, 1); EXFUN (Fmatch_beginning, 1); EXFUN (Fmatch_end, 1); EXFUN (Fmax, MANY); EXFUN (Fmember, 2); EXFUN (Fmemq, 2); EXFUN (Fmin, MANY); EXFUN (Fminus, MANY); EXFUN (Fnarrow_to_region, 3); EXFUN (Fnconc, MANY); EXFUN (Fnext_event, 2); EXFUN (Fnreverse, 1); EXFUN (Fnthcdr, 2); EXFUN (Fnumber_to_string, 1); EXFUN (Fold_assq, 2); EXFUN (Fold_equal, 2); EXFUN (Fold_member, 2); EXFUN (Fold_memq, 2); EXFUN (Fplist_get, 3); EXFUN (Fplist_member, 2); EXFUN (Fplist_put, 3); EXFUN (Fplus, MANY); EXFUN (Fpoint, 1); EXFUN (Fpoint_marker, 2); EXFUN (Fpoint_max, 1); EXFUN (Fpoint_min, 1); EXFUN (Fpreceding_char, 1); EXFUN (Fprefix_numeric_value, 1); EXFUN (Fprin1, 2); EXFUN (Fprin1_to_string, 2); EXFUN (Fprinc, 2); EXFUN (Fprint, 2); EXFUN (Fprocess_status, 1); EXFUN (Fprogn, UNEVALLED); EXFUN (Fprovide, 1); EXFUN (Fput, 3); EXFUN (Fput_range_table, 4); EXFUN (Fput_text_property, 5); EXFUN (Fquo, MANY); EXFUN (Frassq, 2); EXFUN (Fread, 1); EXFUN (Fread_key_sequence, 3); EXFUN (Freally_free, 1); EXFUN (Frem, 2); EXFUN (Fremassq, 2); EXFUN (Freplace_list, 2); EXFUN (Frunning_temacs_p, 0); EXFUN (Fselected_frame, 1); EXFUN (Fset, 2); EXFUN (Fset_default, 2); EXFUN (Fset_marker, 3); EXFUN (Fset_standard_case_table, 1); EXFUN (Fsetcar, 2); EXFUN (Fsetcdr, 2); EXFUN (Fsignal, 2); EXFUN (Fsit_for, 2); EXFUN (Fskip_chars_backward, 3); EXFUN (Fskip_chars_forward, 3); EXFUN (Fsleep_for, 1); EXFUN (Fsort, 2); EXFUN (Fspecifier_spec_list, 4); EXFUN (Fstring_equal, 2); EXFUN (Fstring_lessp, 2); EXFUN (Fstring_match, 4); EXFUN (Fsub1, 1); EXFUN (Fsubr_max_args, 1); EXFUN (Fsubr_min_args, 1); EXFUN (Fsubstitute_command_keys, 1); EXFUN (Fsubstitute_in_file_name, 1); EXFUN (Fsubstring, 3); EXFUN (Fsymbol_function, 1); EXFUN (Fsymbol_name, 1); EXFUN (Fsymbol_plist, 1); EXFUN (Fsymbol_value, 1); EXFUN (Fsystem_name, 0); EXFUN (Fthrow, 2); EXFUN (Ftimes, MANY); EXFUN (Ftruncate, 1); EXFUN (Fundo_boundary, 0); EXFUN (Funhandled_file_name_directory, 1); EXFUN (Funlock_buffer, 0); EXFUN (Fupcase, 2); EXFUN (Fupcase_initials, 2); EXFUN (Fupcase_initials_region, 3); EXFUN (Fupcase_region, 3); EXFUN (Fuser_home_directory, 0); EXFUN (Fuser_login_name, 1); EXFUN (Fvector, MANY); EXFUN (Fverify_visited_file_modtime, 1); EXFUN (Fvertical_motion, 3); EXFUN (Fwiden, 1); /*--------------- prototypes for constant symbols ------------*/ /* Use the following when you have to add a bunch of symbols. */ /* (defun redo-symbols (beg end) "Snarf any symbols out of the region and print them into a temporary buffer, which is displayed when the function finishes. The symbols are laid out with `extern Lisp_Object ' before each one, with as many as can fit on one line \(the maximum line width is controlled by the constant `max-line-length' in the code)." (interactive "r") (save-excursion (goto-char beg) (let (syms) (while (re-search-forward "\\s-\\(Q[A-Za-z_0-9]+\\)" end t) (push (match-string 1) syms)) (setq syms (sort syms #'string-lessp)) (with-output-to-temp-buffer "*Symbols*" (let* ((col 0) (start "extern Lisp_Object ") (startlen (length start)) ;; with a default-width frame of 80 chars, you can only fit ;; 79 before wrapping. you can see this to a lower value if ;; you don't want it right up against the right margin. (max-line-length 79)) (dolist (sym syms) (cond (;; if something already on line (this will always be the ;; case except the very first iteration), see what ;; space we've got. (need to take into account 2 ;; for the comma+space, 1 for the semicolon at the ;; end.) if enough space, do it. (and (> col 0) (< (+ col (length sym) 2) (1- max-line-length))) (princ ", ") (princ sym) (incf col 2) (incf col (length sym))) (t ;; either we're first iteration or we ran out of space. ;; if the latter, terminate the previous line. this ;; loop is written on purpose so that it always prints ;; at least one item, even if that would go over. (when (> col 0) (princ ";\n") (setq col 0)) (princ start) (incf col startlen) (princ sym) (incf col (length sym))))) ;; finally terminate the last line. (princ ";\n")))))) */ extern Lisp_Object Qactivate_menubar_hook, Qarith_error, Qarrayp, Qautoload; extern Lisp_Object Qbackground, Qbackground_pixmap, Qbeginning_of_buffer; extern Lisp_Object Qbitp, Qblinking, Qbuffer_glyph_p, Qbuffer_live_p; extern Lisp_Object Qbuffer_read_only, Qbyte_code, Qcall_interactively; extern Lisp_Object Qcategory_designator_p, Qcategory_table_value_p, Qcdr; extern Lisp_Object Qchar_or_string_p, Qcharacterp, Qcircular_list; extern Lisp_Object Qcircular_property_list, Qcolor_pixmap_image_instance_p; extern Lisp_Object Qcommandp, Qcompletion_ignore_case, Qconsole_live_p; extern Lisp_Object Qconst_specifier, Qconversion_error, Qcurrent_menubar; extern Lisp_Object Qcyclic_variable_indirection, Qdefun, Qdevice_live_p, Qdim; extern Lisp_Object Qdirection, Qdisabled, Qdisabled_command_hook; extern Lisp_Object Qdisplay_table, Qdomain_error, Qediting_error; extern Lisp_Object Qend_of_buffer, Qend_of_file, Qend_open, Qerror; extern Lisp_Object Qerror_conditions, Qerror_lacks_explanatory_string; extern Lisp_Object Qerror_message, Qevent_live_p, Qexit, Qextent_live_p; extern Lisp_Object Qexternal_debugging_output, Qfeaturep, Qfile_error, Qfinal; extern Lisp_Object Qforeground, Qformat, Qframe_live_p, Qgraphic, Qgtk; extern Lisp_Object Qgui_error, Qicon_glyph_p, Qidentity, Qinhibit_quit; extern Lisp_Object Qinhibit_read_only, Qinteger_char_or_marker_p; extern Lisp_Object Qinteger_or_char_p, Qinteger_or_marker_p, Qintegerp; extern Lisp_Object Qinteractive, Qinternal_error, Qinvalid_argument; extern Lisp_Object Qinvalid_byte_code, Qinvalid_change, Qinvalid_constant; extern Lisp_Object Qinvalid_function, Qinvalid_operation; extern Lisp_Object Qinvalid_read_syntax, Qinvalid_state, Qio_error, Qlambda; extern Lisp_Object Qlayout, Qlist_formation_error, Qlistp, Qload, Qlock_shift; extern Lisp_Object Qlong_name, Qmacro, Qmakunbound, Qmalformed_list; extern Lisp_Object Qmalformed_property_list, Qmark; extern Lisp_Object Qmono_pixmap_image_instance_p, Qmouse_leave_buffer_hook; extern Lisp_Object Qnative_layout, Qnatnump, Qnetwork_error, Qno_catch; extern Lisp_Object Qnothing_image_instance_p, Qnumber_char_or_marker_p; extern Lisp_Object Qnumberp, Qout_of_memory, Qoutput_charset_conversion; extern Lisp_Object Qoverflow_error, Qpoint, Qpointer_glyph_p; extern Lisp_Object Qpointer_image_instance_p, Qprint_length; extern Lisp_Object Qprint_string_length, Qprinting_unreadable_object; extern Lisp_Object Qprocess_error, Qprogn, Qquit, Qquote, Qrange_error; extern Lisp_Object Qread_char, Qread_from_minibuffer; extern Lisp_Object Qreally_early_error_handler, Qregion_beginning; extern Lisp_Object Qregion_end, Qregistry, Qreverse_direction_charset; extern Lisp_Object Qrun_hooks, Qsans_modifiers, Qsave_buffers_kill_emacs; extern Lisp_Object Qself_insert_command, Qself_insert_defer_undo, Qsequencep; extern Lisp_Object Qset, Qsetting_constant, Qshort_name, Qsingularity_error; extern Lisp_Object Qsound_error, Qstack_overflow, Qstandard_input; extern Lisp_Object Qstandard_output, Qstart_open, Qstring_lessp; extern Lisp_Object Qstructure_formation_error, Qsubwindow; extern Lisp_Object Qsubwindow_image_instance_p, Qsyntax_error, Qt; extern Lisp_Object Qtext_conversion_error, Qtext_image_instance_p, Qtop_level; extern Lisp_Object Qtrue_list_p, Qunbound, Qunderflow_error, Qunderline; extern Lisp_Object Quser_files_and_directories, Qvalues; extern Lisp_Object Qvariable_documentation, Qvariable_domain, Qvoid_function; extern Lisp_Object Qvoid_variable, Qwindow_live_p, Qwrong_number_of_arguments; extern Lisp_Object Qwrong_type_argument, Qyes_or_no_p; #define SYMBOL(fou) extern Lisp_Object fou #define SYMBOL_KEYWORD(la_cle_est_fou) extern Lisp_Object la_cle_est_fou #define SYMBOL_GENERAL(tout_le_monde, est_fou) \ extern Lisp_Object tout_le_monde #include "general-slots.h" #undef SYMBOL #undef SYMBOL_KEYWORD #undef SYMBOL_GENERAL /*--------------- prototypes for variables of type Lisp_Object ------------*/ extern Lisp_Object Vactivate_menubar_hook; extern Lisp_Object Vautoload_queue, Vblank_menubar; extern Lisp_Object Vcommand_history; extern Lisp_Object Vcommand_line_args, Vconfigure_info_directory; extern Lisp_Object Vconfigure_site_directory, Vconfigure_site_module_directory; extern Lisp_Object Vconsole_list, Vcontrolling_terminal; extern Lisp_Object Vcurrent_compiled_function_annotation, Vcurrent_load_list; extern Lisp_Object Vcurrent_mouse_event, Vcurrent_prefix_arg, Vdata_directory; extern Lisp_Object Vdirectory_sep_char, Vdisabled_command_hook; extern Lisp_Object Vdoc_directory, Vinternal_doc_file_name; extern Lisp_Object Vecho_area_buffer, Vemacs_major_version; extern Lisp_Object Vemacs_minor_version, Vexec_directory, Vexec_path; extern Lisp_Object Vexecuting_macro, Vfeatures, Vfile_domain; extern Lisp_Object Vinhibit_quit, Vinvocation_directory, Vinvocation_name; extern Lisp_Object Vlast_command, Vlast_command_char; extern Lisp_Object Vlast_command_event, Vlast_input_event; extern Lisp_Object Vload_file_name_internal; extern Lisp_Object Vload_file_name_internal_the_purecopy, Vload_history; extern Lisp_Object Vload_path, Vmark_even_if_inactive, Vmenubar_configuration; extern Lisp_Object Vminibuf_preprompt, Vminibuf_prompt, Vminibuffer_zero; extern Lisp_Object Vmodule_directory, Vmswindows_downcase_file_names; extern Lisp_Object Vmswindows_get_true_file_attributes, Vobarray; extern Lisp_Object Vprint_length, Vprint_level, Vprocess_environment; extern Lisp_Object Vquit_flag; extern Lisp_Object Vrecent_keys_ring, Vshell_file_name, Vsite_directory; extern Lisp_Object Vsite_module_directory; extern Lisp_Object Vstandard_input, Vstandard_output, Vstdio_str; extern Lisp_Object Vsynchronous_sounds, Vsystem_name; extern Lisp_Object Vthis_command_keys, Vunread_command_event; extern Lisp_Object Vx_initial_argv_list; #endif /* INCLUDED_lisp_h_ */