aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2013-08-27 11:47:55 -0700
committerPaul Eggert2013-08-27 11:47:55 -0700
commit43aac990c339c0fc3304aa476ebc8ea8467f107e (patch)
tree24f6477d7ec79c7f3529e08c421f309b1180c436 /src/ChangeLog
parent278208b8e6917af1e7e2623a3869614fa70059ed (diff)
downloademacs-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/ChangeLog')
-rw-r--r--src/ChangeLog30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 59bf6b420c6..5d5a811b3c4 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,33 @@
12013-08-27 Paul Eggert <eggert@cs.ucla.edu>
2
3 Simplify EMACS_TIME-related code.
4 This portability layer is no longer needed, since Emacs has been
5 using struct timespec as a portability layer for some time.
6 * atimer.h, buffer.h, dispextern.h, xgselect.h:
7 Include <time.h> rather than "systime.h"; that's all that's needed now.
8 * dispnew.c: Include <timespec.h> rather than "systime.h";
9 that's all that's needed now.
10 * systime.h (EMACS_TIME): Remove. All uses changed to struct timespec.
11 (EMACS_TIME_RESOLUTION): Remove. All uses changed to
12 TIMESPEC_RESOLUTION.
13 (LOG10_EMACS_TIME_RESOLUTION): Remove. All uses changed to
14 LOG10_TIMESPEC_RESOLUTION.
15 (EMACS_SECS, emacs_secs_addr): Remove. All uses changed to tv_sec.
16 (EMACS_NSECS): Remove. All uses changed to tv_nsec.
17 (make_emacs_time): Remove. All used changed to make_timespec.
18 (invalid_timespec): Rename from invalid_emacs_time. All uses changed.
19 (current_timespec): Rename from current_emacs_time. All uses changed.
20 (add_emacs_time): Remove. All uses changed to timespec_add.
21 (sub_emacs_time): Remove. All uses change dot timespec_sub.
22 (EMACS_TIME_SIGN): Remove. All uses changed to timespec_sign.
23 (timespec_valid_p): Rename from EMACS_TIME_VALID_P. All uses changed.
24 (EMACS_TIME_FROM_DOUBLE): Remove. All uses changed to dtotimespec.
25 (EMACS_TIME_TO_DOUBLE): Remove. All uses changed to timespectod.
26 (current_timespec): Rename from current_emacs_time. All uses changed.
27 (EMACS_TIME_EQ, EMACS_TIME_LT, EMACS_TIME_LE): Remove. All uses
28 changed to timespec_cmp.
29 * xgselect.c: Include <timespec.h>, since our .h files don't.
30
12013-08-27 Dmitry Antipov <dmantipov@yandex.ru> 312013-08-27 Dmitry Antipov <dmantipov@yandex.ru>
2 32
3 * xterm.h (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE:) 33 * xterm.h (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE:)