Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
2318fcca
Commit
2318fcca
authored
Oct 16, 2013
by
Jan Djärv
Browse files
* nsselect.m (ns_string_from_pasteboard): Remove Fquit, just return
Qnil. Fixes: debbugs:15628
parent
3dffe395
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
src/ChangeLog
src/ChangeLog
+5
-0
src/nsselect.m
src/nsselect.m
+1
-6
No files found.
src/ChangeLog
View file @
2318fcca
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)
...
...
src/nsselect.m
View file @
2318fcca
...
...
@@ -256,9 +256,7 @@ Updated by Christian Limpach (chris@nice.ch)
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 @@ Updated by Christian Limpach (chris@nice.ch)
}
else
{
Fsignal
(
Qquit
,
list1
(
build_string
(
"pasteboard doesn't contain"
" valid data"
)));
return
Qnil
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment