summaryrefslogtreecommitdiff
path: root/src/alloc.c
Commit message (Collapse)AuthorAgeFilesLines
* (free_float, free_cons): Don't use the same field for chaining as for marking.Richard M. Stallman1997-09-011-6/+10
| | | | (make_float, Fcons, gc_sweep): Corresponding changes.
* (free_marker): Call unchain_marker.Richard M. Stallman1997-08-291-0/+2
|
* (free_marker): New function.Richard M. Stallman1997-08-131-6/+18
|
* (memory_full): Pass Qnil to Fsignal for ERROR_SYMBOL.Richard M. Stallman1997-07-051-3/+3
| | | | Fix bugs with inappropriate mixing of Lisp_Object with int.
* (Fmake_byte_code): Set val from p, not from val.Richard M. Stallman1997-06-021-2/+2
| | | | (make_event_array): Convert nargs to Lisp_Object.
* (Fmake_bool_vector): Doc fix.Richard M. Stallman1997-05-281-2/+2
|
* (BYTES_USED): Put # at the beginning of line.Kenichi Handa1997-05-161-5/+5
| | | | (emacs_blocked_malloc): Likewise.
* Update copyright year.Richard M. Stallman1997-04-091-1/+1
|
* For glibc's malloc, include <malloc.h> for mallinfo,Richard M. Stallman1997-04-091-3/+39
| | | | | | | | | | | mallopt, struct mallinfo, and mallopt constants. (BYTES_USED): New macro. (memory_full, emacs_blocked_free): Replace _bytes_used with BYTES_USED. (emacs_blocked_malloc): Set sbrk padding value for glibc, as is done with gmalloc. (allocate_vectorlike, make_uninit_string): Prevent using mmap for possible large chunks. (init_alloc_once): Set trim and mmap malloc parms, when using glibc.
* (Fmake_char_table): Adjusted for the new structure ofKenichi Handa1997-04-071-2/+18
| | | | | Lisp_Char_Table. (make_sub_char_table): New function.
* (mark_object): Mark the buffer_list field.Richard M. Stallman1997-03-221-0/+1
|
* (Fmake_char_table): Typo in doc-string fixed. HandleKarl Heuer1997-02-201-2/+5
| | | | | | the case that PURPOSE is nil (in a deeper char-table). (Fmake_bool_vector): Make correct size of Lisp_Object for bool-vector.
* (Fgarbage_collect): Use Vhistory_length for truncating Vcommand_history.Richard M. Stallman1996-11-071-4/+9
|
* (Fmake_char_table): Doc fix.Erik Naggum1996-10-281-1/+1
|
* Comment changes.Erik Naggum1996-09-171-2/+2
|
* (Fmake_symbol): Initialize `obarray' field.Erik Naggum1996-09-171-0/+1
|
* (Fmake_byte_code): Call make_pure_vector using nargs.Richard M. Stallman1996-09-041-1/+1
|
* (Fpurecopy): Cast arg to make_pure_vector.Richard M. Stallman1996-09-031-2/+2
| | | | (Fmake_byte_code): Use XFASTINT when calling make_pure_vector.
* Removed support for !MULTI_FRAME.Karl Heuer1996-09-011-2/+0
|
* (Fgarbage_collect): Report used and free intervals.Richard M. Stallman1996-08-311-7/+13
|
* (syms_of_alloc): Set up Lisp variables ...-consed,Richard M. Stallman1996-08-291-0/+21
| | | | such as Vcons-cells-consed.
* (mark_object): Do set ARRAY_MARK_FLAG for bool-vectors.Richard M. Stallman1996-06-101-1/+7
|
* (garbage_collection_messages): New variable.Richard M. Stallman1996-04-081-5/+15
| | | | | (syms_of_alloc): Set up Lisp variable. (Fgarbage_collect): Variable controls whether to display messages.
* (struct string_block_head): Change to match string_block.Karl Heuer1996-03-061-1/+1
|
* (mark_object): Mark frame title field.Richard M. Stallman1996-01-181-0/+1
|
* Update FSF's address in the preamble.Erik Naggum1996-01-151-1/+2
|
* (Fmake_symbol): Harmonize arguments with documentation (correctly).Erik Naggum1996-01-091-1/+1
|
* (Fmake_symbol): Harmonize arguments with documentation.Erik Naggum1996-01-091-3/+3
|
* Comment fixes.Karl Heuer1996-01-051-2/+2
|
* (Flist): Avoid using -- in while condition.Richard M. Stallman1995-11-201-3/+7
|
* (mark_object): Don't overwrite original argument value.Richard M. Stallman1995-11-151-2/+3
|
* (BITS_PER_SHORT, BITS_PER_INT, BITS_PER_LONG):Karl Heuer1995-10-311-2/+2
| | | | Rename from SHORTBITS, INTBITS, LONGBITS.
* (Fmake_char_table): Doc fix.Richard M. Stallman1995-10-291-1/+1
|
* Cast first arg to bzero.Richard M. Stallman1995-10-291-12/+13
| | | | (Fmemory_use_counts): Cast 1 to EMACS_INT before shift.
* (Qchar_table_extra_slots): New variable.Richard M. Stallman1995-10-141-8/+15
| | | | | (syms_of_alloc): Initialize it. (Fmake_char_table): Take new arg PURPOSE and get N from a property.
* (Fmake_char_table): Initialize parent to nil.Erik Naggum1995-10-081-0/+1
|
* (Fmake_chartable, Fmake_boolvector): New functions.Richard M. Stallman1995-10-071-0/+55
| | | | (syms_of_alloc): defsubr them.
* (Fmake_marker): Initialize insertion_type to 0.Richard M. Stallman1995-09-081-0/+1
|
* (cons_cells_consed, floats_consed, vector_cells_consed)Richard M. Stallman1995-08-021-0/+64
| | | | | | | | | (symbols_consed, string_chars_consed, misc_objects_consed) (intervals_consed): New vars. (make_float, Fcons, make_interval, allocate_vectorlike, Fmake_symbol) (allocate_misc, make_uninit_string): Increment them. (Fmemory_use_counts): New function. (syms_of_alloc): defsubr it.
* (init_alloc_once): Set gc_cons_threshold from Lisp obj size.Richard M. Stallman1995-07-191-1/+1
|
* (Flist): Rewritten.Karl Heuer1995-07-171-20/+50
| | | | | | | | (allocating_for_lisp): New variable. (init_intervals, make_interval, init_symbol, Fmake_symbol) (init_float, make_float, init_cons, Fcons) (allocate_vectorlike, init_marker, allocate_misc) (init_strings, make_uninit_string): Set allocate_misc temporarily.
* (mark_object): Mark icon_name field.Richard M. Stallman1995-06-161-0/+1
|
* (mark_kboards): Mark system_key_syms member.Karl Heuer1995-06-091-0/+1
|
* (mark_kboards): Mark Vprefix_arg instead ofKarl Heuer1995-06-071-2/+1
| | | | prefix_factor and prefix_value.
* Declare sbrk.Karl Heuer1995-06-061-0/+2
|
* (Fgarbage_collect): Clear consing_since_gc first thing.Karl Heuer1995-05-241-0/+4
|
* (gc_cons_threshold): Change back to int.Richard M. Stallman1995-05-061-2/+4
| | | | | (min): New macro. (inhibit_garbage_collection): Don't exceed value an int can hold.
* (gc_cons_threshold): Make this an EMACS_INT.Richard M. Stallman1995-05-041-3/+6
| | | | | | (gc_sweep): Make already_free an EMACS_INT. (inhibit_garbage_collection): Use XSETINT, and do arithmetic in type EMACS_INT.
* (mark_kboards): Mark the kbd macro and Vsystem_key_alist.Karl Heuer1995-04-251-0/+5
|
* Delete the #if that compares MARKBIT.Karl Heuer1995-04-131-4/+0
|