comparison src/indent.c @ 39682:5f60884970a8

Don't define min/max.
author Gerd Moellmann <gerd@gnu.org>
date Mon, 08 Oct 2001 08:07:49 +0000
parents 90ab35fe206c
children 345caf35c534
comparison
equal deleted inserted replaced
39681:87cc624f4e1e 39682:5f60884970a8
36 36
37 /* Indentation can insert tabs if this is non-zero; 37 /* Indentation can insert tabs if this is non-zero;
38 otherwise always uses spaces. */ 38 otherwise always uses spaces. */
39 39
40 int indent_tabs_mode; 40 int indent_tabs_mode;
41
42 #define min(a, b) ((a) < (b) ? (a) : (b))
43 #define max(a, b) ((a) > (b) ? (a) : (b))
44 41
45 #define CR 015 42 #define CR 015
46 43
47 /* These three values memoize the current column to avoid recalculation. */ 44 /* These three values memoize the current column to avoid recalculation. */
48 45