aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman2005-07-23 19:08:32 +0000
committerRichard M. Stallman2005-07-23 19:08:32 +0000
commit9bd32d8c95fcf3167ab970890fb101eb38be3cd9 (patch)
tree2ba2a24161e93a2ae3d9d2f4e62eb85974ba6656 /src
parent974aae61bbb8c05e0d0fc1a95b419fe596423fd8 (diff)
downloademacs-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.h6
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
1877extern int consing_since_gc; 1877extern int consing_since_gc;
1878 1878
1879/* Threshold for doing another gc. */ 1879/* Thresholds for doing another gc. */
1880 1880
1881extern EMACS_INT gc_cons_combined_threshold; 1881extern EMACS_INT gc_cons_threshold;
1882
1883extern 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