comparison src/intervals.c @ 8761:4feb7830ba01

(interval_balance_threshold): Var deleted.
author Richard M. Stallman <rms@gnu.org>
date Thu, 15 Sep 1994 21:22:26 +0000
parents 65a058371675
children 69cdecdaebf7
comparison
equal deleted inserted replaced
8760:14951c0ea4f8 8761:4feb7830ba01
49 49
50 /* Test for membership, allowing for t (actually any non-cons) to mean the 50 /* Test for membership, allowing for t (actually any non-cons) to mean the
51 universal set. */ 51 universal set. */
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
55 /* Factor for weight-balancing interval trees. */
56 Lisp_Object interval_balance_threshold;
57 54
58 Lisp_Object merge_properties_sticky (); 55 Lisp_Object merge_properties_sticky ();
59 56
60 /* Utility functions for intervals. */ 57 /* Utility functions for intervals. */
61 58