comparison src/intervals.c @ 39682:5f60884970a8

Don't define min/max.
author Gerd Moellmann <gerd@gnu.org>
date Mon, 08 Oct 2001 08:07:49 +0000
parents 9a801971bd7e
children 0b986bb45526
comparison
equal deleted inserted replaced
39681:87cc624f4e1e 39682:5f60884970a8
48 48
49 /* Test for membership, allowing for t (actually any non-cons) to mean the 49 /* Test for membership, allowing for t (actually any non-cons) to mean the
50 universal set. */ 50 universal set. */
51 51
52 #define TMEM(sym, set) (CONSP (set) ? ! NILP (Fmemq (sym, set)) : ! NILP (set)) 52 #define TMEM(sym, set) (CONSP (set) ? ! NILP (Fmemq (sym, set)) : ! NILP (set))
53
54 #define min(x, y) ((x) < (y) ? (x) : (y))
55 53
56 Lisp_Object merge_properties_sticky (); 54 Lisp_Object merge_properties_sticky ();
57 static INTERVAL reproduce_tree P_ ((INTERVAL, INTERVAL)); 55 static INTERVAL reproduce_tree P_ ((INTERVAL, INTERVAL));
58 static INTERVAL reproduce_tree_obj P_ ((INTERVAL, Lisp_Object)); 56 static INTERVAL reproduce_tree_obj P_ ((INTERVAL, Lisp_Object));
59 57