aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann1999-11-28 20:14:03 +0000
committerGerd Moellmann1999-11-28 20:14:03 +0000
commit27a9e9b3fabf1fc609b41fd2548c2c09f9f0942b (patch)
treefc430b23c82c57dcd7b19d16d766aad4567cbc8e /src
parent02b25787251eef2b4f1110d3cefa8cbb7479844b (diff)
downloademacs-27a9e9b3fabf1fc609b41fd2548c2c09f9f0942b.tar.gz
emacs-27a9e9b3fabf1fc609b41fd2548c2c09f9f0942b.zip
Correct typo.
Diffstat (limited to 'src')
-rw-r--r--src/systime.h12
1 files changed, 6 insertions, 6 deletions
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 ();
159 159
160/* Compare times T1 and T2 for equality, inequality etc. */ 160/* Compare times T1 and T2 for equality, inequality etc. */
161 161
162#define EMACS_TIME_EQ(T1,T2) (EMACS_TIME_CMP (T1, T2) == 0) 162#define EMACS_TIME_EQ(T1, T2) (EMACS_TIME_CMP (T1, T2) == 0)
163#define EMACS_TIME_NE(T1,T2) (EMACS_TIME_CMP (T1, T2) != 0) 163#define EMACS_TIME_NE(T1, T2) (EMACS_TIME_CMP (T1, T2) != 0)
164#define EMACS_TIME_GT(T1,T2) (EMACS_TIME_CMP (T1, T2) > 0) 164#define EMACS_TIME_GT(T1, T2) (EMACS_TIME_CMP (T1, T2) > 0)
165#define EMACS_TIME_GE(T1,T2) (EMACS_TIME_CMP (T1, T2) >= 0) 165#define EMACS_TIME_GE(T1, T2) (EMACS_TIME_CMP (T1, T2) >= 0)
166#define EMACS_TIME_LT(T1,T2) (EMACS_TIME_CMP (T1, T2) < 0) 166#define EMACS_TIME_LT(T1, T2) (EMACS_TIME_CMP (T1, T2) < 0)
167#define EMACS_TIME_LE(T1,T2) (EMACS_TIME_CMP (T1, T2) <= 0) 167#define EMACS_TIME_LE(T1, T2) (EMACS_TIME_CMP (T1, T2) <= 0)
168 168