aboutsummaryrefslogtreecommitdiffstats
path: root/src/xselect.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/xselect.c')
-rw-r--r--src/xselect.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/xselect.c b/src/xselect.c
index ed68e4b1a6d..d74f064a1c7 100644
--- a/src/xselect.c
+++ b/src/xselect.c
@@ -21,7 +21,6 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
21 21
22#include <config.h> 22#include <config.h>
23#include <limits.h> 23#include <limits.h>
24#include <stdio.h> /* TRACE_SELECTION needs this. */
25 24
26#ifdef HAVE_SYS_TYPES_H 25#ifdef HAVE_SYS_TYPES_H
27#include <sys/types.h> 26#include <sys/types.h>
@@ -33,6 +32,7 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
33#include "xterm.h" /* for all of the X includes */ 32#include "xterm.h" /* for all of the X includes */
34#include "frame.h" /* Need this to get the X window of selected_frame */ 33#include "frame.h" /* Need this to get the X window of selected_frame */
35#include "blockinput.h" 34#include "blockinput.h"
35#include "sysstdio.h" /* TRACE_SELECTION needs this. */
36#include "termhooks.h" 36#include "termhooks.h"
37#include "keyboard.h" 37#include "keyboard.h"
38#include "pdumper.h" 38#include "pdumper.h"
@@ -2172,9 +2172,10 @@ If the problem persists, set `%s' to nil.");
2172static Lisp_Object 2172static Lisp_Object
2173x_clipboard_manager_error_2 (Lisp_Object err) 2173x_clipboard_manager_error_2 (Lisp_Object err)
2174{ 2174{
2175 fprintf (stderr, "Error saving to X clipboard manager.\n\ 2175 fputs (("Error saving to X clipboard manager.\n"
2176If the problem persists, set '%s' \ 2176 "If the problem persists,"
2177to nil.\n", "x-select-enable-clipboard-manager"); 2177 " set 'x-select-enable-clipboard-manager' to nil.\n"),
2178 stderr);
2178 return Qnil; 2179 return Qnil;
2179} 2180}
2180 2181