diff options
| author | Richard M. Stallman | 2005-07-23 19:08:32 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2005-07-23 19:08:32 +0000 |
| commit | 9bd32d8c95fcf3167ab970890fb101eb38be3cd9 (patch) | |
| tree | 2ba2a24161e93a2ae3d9d2f4e62eb85974ba6656 /src | |
| parent | 974aae61bbb8c05e0d0fc1a95b419fe596423fd8 (diff) | |
| download | emacs-9bd32d8c95fcf3167ab970890fb101eb38be3cd9.tar.gz emacs-9bd32d8c95fcf3167ab970890fb101eb38be3cd9.zip | |
(gc_cons_threshold, gc_relative_threshold): Declared.
(gc_cons_combined_threshold): Declaration deleted.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lisp.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lisp.h b/src/lisp.h index de7a6b05d87..f6a4e6ae9c6 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -1876,9 +1876,11 @@ extern Lisp_Object Vascii_canon_table, Vascii_eqv_table; | |||
| 1876 | 1876 | ||
| 1877 | extern int consing_since_gc; | 1877 | extern int consing_since_gc; |
| 1878 | 1878 | ||
| 1879 | /* Threshold for doing another gc. */ | 1879 | /* Thresholds for doing another gc. */ |
| 1880 | 1880 | ||
| 1881 | extern EMACS_INT gc_cons_combined_threshold; | 1881 | extern EMACS_INT gc_cons_threshold; |
| 1882 | |||
| 1883 | extern EMACS_INT gc_relative_threshold; | ||
| 1882 | 1884 | ||
| 1883 | /* Structure for recording stack slots that need marking. */ | 1885 | /* Structure for recording stack slots that need marking. */ |
| 1884 | 1886 | ||