aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-09-15 21:22:26 +0000
committerRichard M. Stallman1994-09-15 21:22:26 +0000
commit49c49d2299aace1e277edb040ce26f6603e61b2c (patch)
tree0af07fb6a2e192f4b17da252285357577f971465 /src
parent74cadca3f49459d547a227f178d2364d60b33da9 (diff)
downloademacs-49c49d2299aace1e277edb040ce26f6603e61b2c.tar.gz
emacs-49c49d2299aace1e277edb040ce26f6603e61b2c.zip
(interval_balance_threshold): Var deleted.
Diffstat (limited to 'src')
-rw-r--r--src/intervals.c3
-rw-r--r--src/intervals.h2
2 files changed, 0 insertions, 5 deletions
diff --git a/src/intervals.c b/src/intervals.c
index 2ebc8e3cdf8..3a3a9662390 100644
--- a/src/intervals.c
+++ b/src/intervals.c
@@ -52,9 +52,6 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
52 52
53#define TMEM(sym, set) (CONSP (set) ? ! NILP (Fmemq (sym, set)) : ! NILP (set)) 53#define TMEM(sym, set) (CONSP (set) ? ! NILP (Fmemq (sym, set)) : ! NILP (set))
54 54
55/* Factor for weight-balancing interval trees. */
56Lisp_Object interval_balance_threshold;
57
58Lisp_Object merge_properties_sticky (); 55Lisp_Object merge_properties_sticky ();
59 56
60/* Utility functions for intervals. */ 57/* Utility functions for intervals. */
diff --git a/src/intervals.h b/src/intervals.h
index 38bc50093d2..bdf583d64dc 100644
--- a/src/intervals.h
+++ b/src/intervals.h
@@ -166,8 +166,6 @@ extern INTERVAL make_interval ();
166 166
167/* Declared in intervals.c */ 167/* Declared in intervals.c */
168 168
169extern Lisp_Object interval_balance_threshold;
170
171extern INTERVAL create_root_interval (); 169extern INTERVAL create_root_interval ();
172extern void copy_properties (); 170extern void copy_properties ();
173extern int intervals_equal (); 171extern int intervals_equal ();