diff options
author | Joseph Arceneaux <jla@gnu.org> | 1992-10-03 00:08:23 +0000 |
---|---|---|
committer | Joseph Arceneaux <jla@gnu.org> | 1992-10-03 00:08:23 +0000 |
commit | 3189259192a4c08514d174b25812e5169967da88 (patch) | |
tree | ed1518ebe04a4e859dd3b620d35ae6f2e6eed135 /src/alloc.c | |
parent | 5c1afd961b43124b930a7998561a38a487153d7d (diff) | |
download | emacs-3189259192a4c08514d174b25812e5169967da88.tar.gz |
Fixed typos.
Diffstat (limited to 'src/alloc.c')
-rw-r--r-- | src/alloc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/alloc.c b/src/alloc.c index aa5e44550d4..ead83fe0fb4 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -111,6 +111,10 @@ int stack_copy_size; /* Non-zero means ignore malloc warnings. Set during initialization. */ int ignore_warnings; + +static void mark_object (), mark_buffer (); +static void clear_marks (), gc_sweep (); +static void compact_strings (); Lisp_Object malloc_warning_1 (str) @@ -1123,10 +1127,6 @@ int total_free_conses, total_free_markers, total_free_symbols; int total_free_floats, total_floats; #endif /* LISP_FLOAT_TYPE */ -static void mark_object (), mark_buffer (); -static void clear_marks (), gc_sweep (); -static void compact_strings (); - DEFUN ("garbage-collect", Fgarbage_collect, Sgarbage_collect, 0, 0, "", "Reclaim storage for Lisp objects no longer needed.\n\ Returns info on amount of space in use:\n\ |