Qnil.
Fixes: debbugs:15628
+2013-10-16 Jan Djärv <jan.h.d@swipnet.se>
+
+ * nsselect.m (ns_string_from_pasteboard): Remove Fquit, just return
+ Qnil (Bug#15628).
+
2013-10-16 Eli Zaretskii <eliz@gnu.org>
* w32.c (network_interface_get_info, network_interface_list)
type = [pb availableTypeFromArray: ns_return_types];
if (type == nil)
{
- Fsignal (Qquit,
- list1 (build_string ("empty or unsupported pasteboard type")));
- return Qnil;
+ return Qnil;
}
/* get the string */
}
else
{
- Fsignal (Qquit,
- list1 (build_string ("pasteboard doesn't contain"
- " valid data")));
return Qnil;
}
}