From 4a25c1cb1e1be8fa3ceea455b7f442cfb507eb39 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Tue, 29 Apr 2014 08:12:36 -0700 Subject: * src/process.c (handle_child_signal): Handle systems without WCONTINUED Fixes: debbugs:15110 --- src/ChangeLog | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'src/ChangeLog') diff --git a/src/ChangeLog b/src/ChangeLog index 0c8fa7b31d7..af9270fb7a4 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,8 +1,12 @@ +2014-04-29 Glenn Morris + + * process.c (handle_child_signal): + Handle systems without WCONTINUED. (Bug#15110, 17339) + 2014-04-23 Eli Zaretskii * search.c (Fnewline_cache_check): Don't try to count newlines - outside the buffer's restriction, as find_newline doesn't support - that. + outside the buffer's restriction, as find_newline doesn't support that. 2014-04-22 Paul Eggert -- cgit v1.2.1 From a55ea27f60f94ff3fc3e02e253056137fc56c35b Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Tue, 29 Apr 2014 18:33:37 +0300 Subject: Place hardware TTY cursor at the active menu item when displaying a menu. src/term.c (tty_menu_display): Move the cursor to the active menu item. (tty_menu_activate): Return the cursor to the active menu item after displaying the menu and after displaying help-echo. See http://lists.gnu.org/archive/html/emacs-devel/2014-04/msg00402.html for the details of why this is needed by screen readers and Braille displays. --- src/ChangeLog | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/ChangeLog') diff --git a/src/ChangeLog b/src/ChangeLog index af9270fb7a4..c98b8546788 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,13 @@ +2014-04-29 Eli Zaretskii + + * term.c (tty_menu_display): Move the cursor to the active menu + item. + (tty_menu_activate): Return the cursor to the active menu item + after displaying the menu and after displaying help-echo. See + http://lists.gnu.org/archive/html/emacs-devel/2014-04/msg00402.html + for the details of why this is needed by screen readers and + Braille displays. + 2014-04-29 Glenn Morris * process.c (handle_child_signal): -- cgit v1.2.1 From bc6cb3efd06266e5f51862449700e2e559277095 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Wed, 30 Apr 2014 10:54:27 -0700 Subject: * term.c (tty_menu_activate): Don't assume row and col are initialized. GCC 4.9.0 warned about this, and I couldn't easily prove to my own satisfaction that they would always be initialized. --- src/ChangeLog | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/ChangeLog') diff --git a/src/ChangeLog b/src/ChangeLog index c98b8546788..ab87645b48b 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,9 @@ +2014-04-30 Paul Eggert + + * term.c (tty_menu_activate): Don't assume row and col are initialized. + GCC 4.9.0 warned about this, and I couldn't easily prove to my own + satisfaction that they would always be initialized. + 2014-04-29 Eli Zaretskii * term.c (tty_menu_display): Move the cursor to the active menu -- cgit v1.2.1