aboutsummaryrefslogtreecommitdiffstats
path: root/src/xselect.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/xselect.c')
-rw-r--r--src/xselect.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/xselect.c b/src/xselect.c
index b54ddd83237..d4d4dc04b8d 100644
--- a/src/xselect.c
+++ b/src/xselect.c
@@ -2147,11 +2147,10 @@ x_clipboard_manager_save (Lisp_Object frame)
2147static Lisp_Object 2147static Lisp_Object
2148x_clipboard_manager_error_1 (Lisp_Object err) 2148x_clipboard_manager_error_1 (Lisp_Object err)
2149{ 2149{
2150 Lisp_Object format 2150 AUTO_STRING (format, "X clipboard manager error: %s\n\
2151 = build_string ("X clipboard manager error: %s\n" 2151If the problem persists, set %qs to nil.");
2152 "If the problem persists, set " 2152 AUTO_STRING (varname, "x-select-enable-clipboard-manager");
2153 uLSQM"x-select-enable-clipboard-manager"uRSQM" to nil."); 2153 CALLN (Fmessage, format, CAR (CDR (err)), varname);
2154 CALLN (Fmessage, format, CAR (CDR (err)));
2155 return Qnil; 2154 return Qnil;
2156} 2155}
2157 2156
@@ -2161,8 +2160,8 @@ static Lisp_Object
2161x_clipboard_manager_error_2 (Lisp_Object err) 2160x_clipboard_manager_error_2 (Lisp_Object err)
2162{ 2161{
2163 fprintf (stderr, "Error saving to X clipboard manager.\n\ 2162 fprintf (stderr, "Error saving to X clipboard manager.\n\
2164If the problem persists, set `x-select-enable-clipboard-manager' \ 2163If the problem persists, set '%s' \
2165to nil.\n"); 2164to nil.\n", "x-select-enable-clipboard-manager");
2166 return Qnil; 2165 return Qnil;
2167} 2166}
2168 2167