Mercurial > emacs
comparison src/charset.c @ 39682:5f60884970a8
Don't define min/max.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Mon, 08 Oct 2001 08:07:49 +0000 |
parents | 245ae371bd4d |
children | 6b389fb978bc |
comparison
equal
deleted
inserted
replaced
39681:87cc624f4e1e | 39682:5f60884970a8 |
---|---|
105 Lisp_Object Vnonascii_translation_table; | 105 Lisp_Object Vnonascii_translation_table; |
106 | 106 |
107 /* List of all possible generic characters. */ | 107 /* List of all possible generic characters. */ |
108 Lisp_Object Vgeneric_character_list; | 108 Lisp_Object Vgeneric_character_list; |
109 | 109 |
110 #define min(X, Y) ((X) < (Y) ? (X) : (Y)) | |
111 #define max(X, Y) ((X) > (Y) ? (X) : (Y)) | |
112 | 110 |
113 void | 111 void |
114 invalid_character (c) | 112 invalid_character (c) |
115 int c; | 113 int c; |
116 { | 114 { |