aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPo Lu2022-04-07 08:37:53 +0800
committerPo Lu2022-04-07 08:37:53 +0800
commit340e81f47620b7d09ddc5c49c330b80e2ef635bd (patch)
tree8b8321d37b7470cf41d41c072c35eff7be68d957 /src
parent9a15e15b62047057cf9058b442bd00c02ab7feab (diff)
downloademacs-340e81f47620b7d09ddc5c49c330b80e2ef635bd.tar.gz
emacs-340e81f47620b7d09ddc5c49c330b80e2ef635bd.zip
* src/xselect.c (x_atom_to_symbol): Add XdndSelection.
Diffstat (limited to 'src')
-rw-r--r--src/xselect.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/xselect.c b/src/xselect.c
index 2969c816a36..f855980a300 100644
--- a/src/xselect.c
+++ b/src/xselect.c
@@ -285,6 +285,8 @@ x_atom_to_symbol (struct x_display_info *dpyinfo, Atom atom)
285 return QTARGETS; 285 return QTARGETS;
286 if (atom == dpyinfo->Xatom_NULL) 286 if (atom == dpyinfo->Xatom_NULL)
287 return QNULL; 287 return QNULL;
288 if (atom == dpyinfo->Xatom_XdndSelection)
289 return QXdndSelection;
288 290
289 block_input (); 291 block_input ();
290 x_catch_errors (dpyinfo->display); 292 x_catch_errors (dpyinfo->display);