diff options
| author | Po Lu | 2022-04-07 08:37:53 +0800 |
|---|---|---|
| committer | Po Lu | 2022-04-07 08:37:53 +0800 |
| commit | 340e81f47620b7d09ddc5c49c330b80e2ef635bd (patch) | |
| tree | 8b8321d37b7470cf41d41c072c35eff7be68d957 /src | |
| parent | 9a15e15b62047057cf9058b442bd00c02ab7feab (diff) | |
| download | emacs-340e81f47620b7d09ddc5c49c330b80e2ef635bd.tar.gz emacs-340e81f47620b7d09ddc5c49c330b80e2ef635bd.zip | |
* src/xselect.c (x_atom_to_symbol): Add XdndSelection.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xselect.c | 2 |
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); |