diff src/lisp.h @ 5936:574f0cded429 cygwin

try to replace all nnnL or nnnUL constants with EMACS_[U]INT
author Henry Thompson <ht@markup.co.uk>
date Sun, 13 Dec 2015 13:22:58 +0000
parents d5eb0914ca1f
children
line wrap: on
line diff
--- a/src/lisp.h	Sat Dec 12 21:49:31 2015 +0000
+++ b/src/lisp.h	Sun Dec 13 13:22:58 2015 +0000
@@ -488,7 +488,9 @@
 #endif
 
 /* HST added to save space/typing/be more transparent, I hope */
+#define E0 ((EMACS_INT)0)
 #define E1 ((EMACS_INT)1)
+#define UE0 ((EMACS_UINT)0)
 #define UE1 ((EMACS_UINT)1)
 
 #define BITS_PER_EMACS_INT (SIZEOF_EMACS_INT * BITS_PER_CHAR)