X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/39eb0cb563f5287270f3946804456dc766386638..4618713ae48aac51c6f1a2474cc981f32c2bbede:/src/nsselect.m diff --git a/src/nsselect.m b/src/nsselect.m index d95ff79987..00626a42ca 100644 --- a/src/nsselect.m +++ b/src/nsselect.m @@ -256,9 +256,7 @@ ns_string_from_pasteboard (id pb) 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 */ @@ -274,9 +272,6 @@ ns_string_from_pasteboard (id pb) } else { - Fsignal (Qquit, - list1 (build_string ("pasteboard doesn't contain" - " valid data"))); return Qnil; } }