diff options
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/alloc.c b/src/alloc.c index 22e3db3cc77..28c9b51dab4 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -63,10 +63,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 63 | #endif | 63 | #endif |
| 64 | 64 | ||
| 65 | #include <unistd.h> | 65 | #include <unistd.h> |
| 66 | #ifndef HAVE_UNISTD_H | ||
| 67 | extern void *sbrk (); | ||
| 68 | #endif | ||
| 69 | |||
| 70 | #include <fcntl.h> | 66 | #include <fcntl.h> |
| 71 | 67 | ||
| 72 | #ifdef USE_GTK | 68 | #ifdef USE_GTK |
| @@ -5335,12 +5331,12 @@ See Info node `(elisp)Garbage Collection'. */) | |||
| 5335 | dump_zombies (); | 5331 | dump_zombies (); |
| 5336 | #endif | 5332 | #endif |
| 5337 | 5333 | ||
| 5338 | unblock_input (); | ||
| 5339 | |||
| 5340 | check_cons_list (); | 5334 | check_cons_list (); |
| 5341 | 5335 | ||
| 5342 | gc_in_progress = 0; | 5336 | gc_in_progress = 0; |
| 5343 | 5337 | ||
| 5338 | unblock_input (); | ||
| 5339 | |||
| 5344 | consing_since_gc = 0; | 5340 | consing_since_gc = 0; |
| 5345 | if (gc_cons_threshold < GC_DEFAULT_THRESHOLD / 10) | 5341 | if (gc_cons_threshold < GC_DEFAULT_THRESHOLD / 10) |
| 5346 | gc_cons_threshold = GC_DEFAULT_THRESHOLD / 10; | 5342 | gc_cons_threshold = GC_DEFAULT_THRESHOLD / 10; |