X-Git-Url: http://cgit.sxemacs.org/?a=blobdiff_plain;f=src%2Fsystime.h;h=708953cd43500f2c3279f27e5800492296e306d6;hb=56c8b099ccef8240d76c6f88c3f31d86ae22cfba;hp=6e7f941d6df6eeca3225f9ef0558fb6e8a2988d3;hpb=c879e5b17b3d5fef34ab58fc66e1cbb4269e5bb4;p=sxemacs diff --git a/src/systime.h b/src/systime.h index 6e7f941..708953c 100644 --- a/src/systime.h +++ b/src/systime.h @@ -47,7 +47,7 @@ along with this program. If not, see . */ # include #endif -#if defined(HAVE_TZNAME) +#if defined(HAVE_TZNAME) #ifndef tzname /* For SGI. */ extern char *tzname[]; /* RS6000 and others want it this way. */ #endif @@ -101,9 +101,9 @@ extern char *tzname[]; /* RS6000 and others want it this way. */ EMACS_TIME_EQUAL (TIME1, TIME2) is true iff TIME1 is the same as TIME2. EMACS_TIME_GREATER (TIME1, TIME2) is true iff TIME1 is greater than - TIME2. + TIME2. EMACS_TIME_EQUAL_OR_GREATER (TIME1, TIME2) is true iff TIME1 is - greater than or equal to TIME2. + greater than or equal to TIME2. */ @@ -204,7 +204,7 @@ do { \ ((time1).tv_sec == (time2).tv_sec && \ (time1).tv_usec >= (time2).tv_usec)) -#define EMACS_SET_SECS_USECS(time, secs, usecs) \ +#define EMACS_SET_SECS_USECS(time, secs, usecs) \ (EMACS_SET_SECS (time, secs), EMACS_SET_USECS (time, usecs)) #ifdef emacs