aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorEli Zaretskii2010-05-01 21:38:33 +0300
committerEli Zaretskii2010-05-01 21:38:33 +0300
commit197daef4ab65cbb5d5add8bbc8e258aa26992d4f (patch)
tree1208d8d484a666748c4b940dfa696acfffd66021 /src/ChangeLog
parentaf7c7572ce8d87f51817d0f518d1b0aced074a41 (diff)
parentd6dae14b946a4bda5ba4dda7a625ec04511b16f4 (diff)
downloademacs-197daef4ab65cbb5d5add8bbc8e258aa26992d4f.tar.gz
emacs-197daef4ab65cbb5d5add8bbc8e258aa26992d4f.zip
Emulate POSIX_SIGNALS on MS-Windows.
s/ms-w32.h (POSIX_SIGNALS, struct sigaction, SIG_BLOCK) (SIG_SETMASK, SIG_UNBLOCK): Define. sysdep.c (sys_signal) [WINDOWSNT]: #ifdef away. (wait_for_termination) [WINDOWSNT]: Move MS-Windows specific code from non-POSIX_SIGNALS section to POSIX_SIGNALS section. w32.c (sigemptyset, sigaddset, sigfillset, sigprocmask): New stubs.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog15
1 files changed, 13 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 0b4baf64cf4..6f925be2a52 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,9 +1,20 @@
12010-05-01 Eli Zaretskii <eliz@gnu.org> 12010-05-01 Eli Zaretskii <eliz@gnu.org>
2 2
3 Emulate POSIX_SIGNALS on MS-Windows.
4
5 * s/ms-w32.h (POSIX_SIGNALS, struct sigaction, SIG_BLOCK)
6 (SIG_SETMASK, SIG_UNBLOCK): Define.
7
8 * sysdep.c (sys_signal) [WINDOWSNT]: #ifdef away.
9 (wait_for_termination) [WINDOWSNT]: Move MS-Windows specific code
10 from non-POSIX_SIGNALS section to POSIX_SIGNALS section.
11
12 * w32.c (sigemptyset, sigaddset, sigfillset, sigprocmask): New
13 stubs.
14
3 Miscellaneous fixes of bidi display. 15 Miscellaneous fixes of bidi display.
4 16
5 * xdisp.c (find_row_end): New function, refactored from 17 * xdisp.c (find_row_end): New function, refactored from display_line.
6 display_line.
7 (display_line): Use it. 18 (display_line): Use it.
8 (extend_face_to_end_of_line): In almost-filled rows, extend only 19 (extend_face_to_end_of_line): In almost-filled rows, extend only
9 if the row is R2L and not continued. 20 if the row is R2L and not continued.