diff options
| author | Paul Eggert | 2013-08-27 11:47:55 -0700 |
|---|---|---|
| committer | Paul Eggert | 2013-08-27 11:47:55 -0700 |
| commit | 43aac990c339c0fc3304aa476ebc8ea8467f107e (patch) | |
| tree | 24f6477d7ec79c7f3529e08c421f309b1180c436 /src/lread.c | |
| parent | 278208b8e6917af1e7e2623a3869614fa70059ed (diff) | |
| download | emacs-43aac990c339c0fc3304aa476ebc8ea8467f107e.tar.gz emacs-43aac990c339c0fc3304aa476ebc8ea8467f107e.zip | |
Simplify EMACS_TIME-related code.
This portability layer is no longer needed, since Emacs has been
using struct timespec as a portability layer for some time.
Merge from gnulib, incorporating:
2013-08-27 timespec: new convenience constants and function
* src/atimer.h, src/buffer.h, src/dispextern.h, src/xgselect.h:
Include <time.h> rather than "systime.h"; that's all that's needed now.
* src/dispnew.c: Include <timespec.h> rather than "systime.h";
that's all that's needed now.
* src/systime.h (EMACS_TIME): Remove. All uses changed to struct timespec.
(EMACS_TIME_RESOLUTION): Remove. All uses changed to
TIMESPEC_RESOLUTION.
(LOG10_EMACS_TIME_RESOLUTION): Remove. All uses changed to
LOG10_TIMESPEC_RESOLUTION.
(EMACS_SECS, emacs_secs_addr): Remove. All uses changed to tv_sec.
(EMACS_NSECS): Remove. All uses changed to tv_nsec.
(make_emacs_time): Remove. All used changed to make_timespec.
(invalid_timespec): Rename from invalid_emacs_time. All uses changed.
(current_timespec): Rename from current_emacs_time. All uses changed.
(add_emacs_time): Remove. All uses changed to timespec_add.
(sub_emacs_time): Remove. All uses change dot timespec_sub.
(EMACS_TIME_SIGN): Remove. All uses changed to timespec_sign.
(timespec_valid_p): Rename from EMACS_TIME_VALID_P. All uses changed.
(EMACS_TIME_FROM_DOUBLE): Remove. All uses changed to dtotimespec.
(EMACS_TIME_TO_DOUBLE): Remove. All uses changed to timespectod.
(current_timespec): Rename from current_emacs_time. All uses changed.
(EMACS_TIME_EQ, EMACS_TIME_LT, EMACS_TIME_LE): Remove. All uses
changed to timespec_cmp.
* src/xgselect.c: Include <timespec.h>, since our .h files don't.
Diffstat (limited to 'src/lread.c')
| -rw-r--r-- | src/lread.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lread.c b/src/lread.c index 1f90970e93c..9518631ba6d 100644 --- a/src/lread.c +++ b/src/lread.c | |||
| @@ -609,7 +609,7 @@ read_filtered_event (bool no_switch_frame, bool ascii_required, | |||
| 609 | bool error_nonascii, bool input_method, Lisp_Object seconds) | 609 | bool error_nonascii, bool input_method, Lisp_Object seconds) |
| 610 | { | 610 | { |
| 611 | Lisp_Object val, delayed_switch_frame; | 611 | Lisp_Object val, delayed_switch_frame; |
| 612 | EMACS_TIME end_time; | 612 | struct timespec end_time; |
| 613 | 613 | ||
| 614 | #ifdef HAVE_WINDOW_SYSTEM | 614 | #ifdef HAVE_WINDOW_SYSTEM |
| 615 | if (display_hourglass_p) | 615 | if (display_hourglass_p) |
| @@ -622,8 +622,8 @@ read_filtered_event (bool no_switch_frame, bool ascii_required, | |||
| 622 | if (NUMBERP (seconds)) | 622 | if (NUMBERP (seconds)) |
| 623 | { | 623 | { |
| 624 | double duration = extract_float (seconds); | 624 | double duration = extract_float (seconds); |
| 625 | EMACS_TIME wait_time = EMACS_TIME_FROM_DOUBLE (duration); | 625 | struct timespec wait_time = dtotimespec (duration); |
| 626 | end_time = add_emacs_time (current_emacs_time (), wait_time); | 626 | end_time = timespec_add (current_timespec (), wait_time); |
| 627 | } | 627 | } |
| 628 | 628 | ||
| 629 | /* Read until we get an acceptable event. */ | 629 | /* Read until we get an acceptable event. */ |
| @@ -1262,7 +1262,7 @@ Return t if the file exists and loads successfully. */) | |||
| 1262 | } | 1262 | } |
| 1263 | 1263 | ||
| 1264 | if (result == 0 | 1264 | if (result == 0 |
| 1265 | && EMACS_TIME_LT (get_stat_mtime (&s1), get_stat_mtime (&s2))) | 1265 | && timespec_cmp (get_stat_mtime (&s1), get_stat_mtime (&s2)) < 0) |
| 1266 | { | 1266 | { |
| 1267 | /* Make the progress messages mention that source is newer. */ | 1267 | /* Make the progress messages mention that source is newer. */ |
| 1268 | newer = 1; | 1268 | newer = 1; |