From: Gerd Moellmann Date: Sun, 28 Nov 1999 20:14:03 +0000 (+0000) Subject: Correct typo. X-Git-Tag: emacs-pretest-21.0.90~5936 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=27a9e9b3fabf1fc609b41fd2548c2c09f9f0942b;p=emacs.git Correct typo. --- diff --git a/src/systime.h b/src/systime.h index 2675dee799d..a94dc3ed353 100644 --- a/src/systime.h +++ b/src/systime.h @@ -159,10 +159,10 @@ extern int set_file_times (); /* Compare times T1 and T2 for equality, inequality etc. */ -#define EMACS_TIME_EQ(T1,T2) (EMACS_TIME_CMP (T1, T2) == 0) -#define EMACS_TIME_NE(T1,T2) (EMACS_TIME_CMP (T1, T2) != 0) -#define EMACS_TIME_GT(T1,T2) (EMACS_TIME_CMP (T1, T2) > 0) -#define EMACS_TIME_GE(T1,T2) (EMACS_TIME_CMP (T1, T2) >= 0) -#define EMACS_TIME_LT(T1,T2) (EMACS_TIME_CMP (T1, T2) < 0) -#define EMACS_TIME_LE(T1,T2) (EMACS_TIME_CMP (T1, T2) <= 0) +#define EMACS_TIME_EQ(T1, T2) (EMACS_TIME_CMP (T1, T2) == 0) +#define EMACS_TIME_NE(T1, T2) (EMACS_TIME_CMP (T1, T2) != 0) +#define EMACS_TIME_GT(T1, T2) (EMACS_TIME_CMP (T1, T2) > 0) +#define EMACS_TIME_GE(T1, T2) (EMACS_TIME_CMP (T1, T2) >= 0) +#define EMACS_TIME_LT(T1, T2) (EMACS_TIME_CMP (T1, T2) < 0) +#define EMACS_TIME_LE(T1, T2) (EMACS_TIME_CMP (T1, T2) <= 0)