1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-03 14:10:47 -08:00

Fixes: debbugs:19396

* nsselect.m (Fns_selection_owner_p): Return a Lisp boolean, not a
C one.
This commit is contained in:
Didier Verna 2014-12-23 08:55:00 +01:00 committed by Jan D
parent e3040f2aee
commit 46d40398fc
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2014-12-23 Didier Verna <didier@didierverna.net> (tiny change).
* nsselect.m (Fns_selection_owner_p): Return a Lisp boolean, not a
C one (Bug#19396).
2014-12-22 Jan Djärv <jan.h.d@swipnet.se>
* xterm.c (x_bitmap_icon): Partly revert change from 2014-03-21 which

View file

@ -438,7 +438,8 @@ On Nextstep, TERMINAL is unused. */)
if (EQ (selection, Qnil)) selection = QPRIMARY;
if (EQ (selection, Qt)) selection = QSECONDARY;
return ns_get_pb_change_count (selection)
== ns_get_our_change_count_for (selection);
== ns_get_our_change_count_for (selection)
? Qt : Qnil;
}