diff options
author | Jim Blandy <jimb@redhat.com> | 1991-11-26 01:47:10 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1991-11-26 01:47:10 +0000 |
commit | 0feac52d0bd2873a86355dc1804acf7fd77a4a6b (patch) | |
tree | 029187460241428d3f8a5f09457b26585b726a1f /src/alloc.c | |
parent | 8de2d90bd077ccb914a326ded07e47101c6805a3 (diff) | |
download | emacs-0feac52d0bd2873a86355dc1804acf7fd77a4a6b.tar.gz emacs-0feac52d0bd2873a86355dc1804acf7fd77a4a6b.tar.bz2 emacs-0feac52d0bd2873a86355dc1804acf7fd77a4a6b.zip |
*** empty log message ***
Diffstat (limited to 'src/alloc.c')
-rw-r--r-- | src/alloc.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/alloc.c b/src/alloc.c index 68e6acb141f..856ac104c9d 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -24,12 +24,9 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef standalone #include "buffer.h" #include "window.h" -#ifdef HAVE_X_WINDOWS -#include "xterm.h" #ifdef MULTI_SCREEN #include "screen.h" #endif /* MULTI_SCREEN */ -#endif /* HAVE_X_WINDOWS */ #endif #define max(A,B) ((A) > (B) ? (A) : (B)) @@ -753,7 +750,7 @@ make_uninit_string (length) arguments, are allowed. */ Lisp_Object -make_sequence (nargs, args) +make_array (nargs, args) register int nargs; Lisp_Object *args; { @@ -1042,8 +1039,6 @@ Garbage collection happens automatically if you cons more than\n\ char stack_top_variable; register int i; - BLOCK_INPUT; - /* Save a copy of the contents of the stack, for debugging. */ #if MAX_SAVE_STACK > 0 if (NULL (Vpurify_flag)) @@ -1181,10 +1176,6 @@ Garbage collection happens automatically if you cons more than\n\ else if (!noninteractive) message1 ("Garbage collecting...done"); -#ifdef HAVE_X_WINDOWS - UNBLOCK_INPUT; -#endif - return Fcons (Fcons (make_number (total_conses), make_number (total_free_conses)), Fcons (Fcons (make_number (total_symbols), |