summaryrefslogtreecommitdiff
path: root/src/xselect.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/xselect.c')
-rw-r--r--src/xselect.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/xselect.c b/src/xselect.c
index 3f35842daa0..bfd081b1e28 100644
--- a/src/xselect.c
+++ b/src/xselect.c
@@ -2458,24 +2458,25 @@ If the value is 0 or the atom is not known, return the empty string. */)
struct x_display_info *dpyinfo;
Atom atom;
bool had_errors_p, need_sync;
+ char *name;
+ Lisp_Object ret;
dpyinfo = FRAME_DISPLAY_INFO (f);
-
CONS_TO_INTEGER (value, Atom, atom);
- block_input ();
x_catch_errors (dpy);
- char *name = atom ? x_get_atom_name (dpyinfo, atom, &need_sync) : NULL;
+ name = x_get_atom_name (dpyinfo, atom, &need_sync);
had_errors_p = need_sync && x_had_errors_p (dpy);
x_uncatch_errors_after_check ();
- Lisp_Object ret = empty_unibyte_string;
+
+ ret = empty_unibyte_string;
+
if (name)
{
if (!had_errors_p)
ret = build_string (name);
xfree (name);
}
- unblock_input ();
return ret;
}