From 879e36286d46283ac4b3e794c502bfac4c33016d Mon Sep 17 00:00:00 2001 From: Jan Djärv Date: Mon, 5 May 2014 19:37:43 +0200 Subject: * nsselect.m (Fx_selection_exists_p): Just return Qnil if window system not initialized. Fixes: debbugs:17398 --- src/ChangeLog | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/ChangeLog') diff --git a/src/ChangeLog b/src/ChangeLog index 0f6aaf93598..9839b6a2146 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2014-05-05 Jan Djärv + + * nsselect.m (Fx_selection_exists_p): Just return Qnil if window system + not initialized (Bug#17398). + 2014-05-04 Paul Eggert Revert recent libpng changes (Bug#17339). -- cgit v1.2.1 From 863f07dea0ce02fd8263f5363c9d50504fc4af6e Mon Sep 17 00:00:00 2001 From: Jarek Czekalski Date: Tue, 6 May 2014 18:00:30 +0200 Subject: Fix tooltips pulling Emacs window to front on windows-nt, bug #17408. * w32fns.c (Fx_show_tip): Add SWP_NOOWNERZORDER flag to SetWindowPos invocations. --- src/ChangeLog | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/ChangeLog') diff --git a/src/ChangeLog b/src/ChangeLog index 9839b6a2146..720ab11135f 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,9 @@ +2014-05-06 Jarek Czekalski + + Stop tooltips pulling Emacs window to front (Bug#17408). + * w32fns.c (Fx_show_tip): Add SWP_NOOWNERZORDER flag to + SetWindowPos invocations. + 2014-05-05 Jan Djärv * nsselect.m (Fx_selection_exists_p): Just return Qnil if window system -- cgit v1.2.1 From 8e102bcc97871ed6e0d2deba84fe46d9a78e9e44 Mon Sep 17 00:00:00 2001 From: Samuel Bronson Date: Tue, 6 May 2014 12:16:57 -0400 Subject: * src/keyboard.c (Frecursive_edit): Ensure inc&dec of command_loop_level are matched. Fixes: debbugs:17413 --- src/ChangeLog | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/ChangeLog') diff --git a/src/ChangeLog b/src/ChangeLog index 720ab11135f..c1d45f1df40 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2014-05-06 Samuel Bronson + + * keyboard.c (Frecursive_edit): Ensure inc&dec of command_loop_level + are matched (bug#17413). + 2014-05-06 Jarek Czekalski Stop tooltips pulling Emacs window to front (Bug#17408). -- cgit v1.2.1 From 73b60c4af9c5dea00158d22f91f05984202b6e64 Mon Sep 17 00:00:00 2001 From: Jarek Czekalski Date: Wed, 7 May 2014 17:03:47 +0200 Subject: Fix initialization of minibuffer history variable, bug #17430. * minibuf.c (read_minibuf): Initialize histval to Qnil if unbound. Move the initialization up to prevent any "value void" message. --- src/ChangeLog | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/ChangeLog') diff --git a/src/ChangeLog b/src/ChangeLog index c1d45f1df40..027d0fc0d25 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,9 @@ +2014-05-07 Jarek Czekalski + + Fix initialization of minibuffer history variable (Bug#17430). + * minibuf.c (read_minibuf): Initialize histval to Qnil if unbound. + Move the initialization up to prevent any "value void" message. + 2014-05-06 Samuel Bronson * keyboard.c (Frecursive_edit): Ensure inc&dec of command_loop_level -- cgit v1.2.1 From d1ff9ee403221755ccc259e86e2112959f881047 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Wed, 7 May 2014 12:28:09 -0700 Subject: * minibuf.c (read_minibuf): Avoid C99ism in previous patch. Fixes: debbugs:17430 --- src/ChangeLog | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/ChangeLog') diff --git a/src/ChangeLog b/src/ChangeLog index 027d0fc0d25..3d58769c927 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2014-05-07 Paul Eggert + + * minibuf.c (read_minibuf): Avoid C99ism in previous patch (Bug#17430). + 2014-05-07 Jarek Czekalski Fix initialization of minibuffer history variable (Bug#17430). -- cgit v1.2.1