diff options
| author | Paul Eggert | 2015-05-30 11:17:56 -0700 |
|---|---|---|
| committer | Paul Eggert | 2015-05-30 11:19:31 -0700 |
| commit | 75f8653bfe0da39acca9dbcb8b021ad033ac6ae9 (patch) | |
| tree | 13d34ab47fac65374d374a7ea8e9d9b220b16f3f /src/xselect.c | |
| parent | 85aa6ede9fe1b8165a99a4046dd8262ec93a02d5 (diff) | |
| download | emacs-75f8653bfe0da39acca9dbcb8b021ad033ac6ae9.tar.gz emacs-75f8653bfe0da39acca9dbcb8b021ad033ac6ae9.zip | |
Don't misencode C-generated messages
Also, be more consistent about calls to 'Fmessage' vs 'message'.
* src/alloc.c (Fgc_status):
Prefer AUTO_STRING to build_string for Fmessage call.
* src/data.c (Fmake_variable_buffer_local)
(Fmake_local_variable, Fmake_variable_frame_local):
* src/doc.c (store_function_docstring):
Use Fmessage, not message, since the argument can contain
non-ASCII characters, and this can cause the resulting message
to be incorrectly encoded for the current environment.
* src/fns.c (maybe_resize_hash_table):
* src/xselect.c (x_clipboard_manager_save_all):
Use message, not Fmessage, since Fmessage's power isn't needed here.
* src/process.c (Fmake_network_process): Reword message to avoid %s.
* src/xdisp.c (vmessage): Document restrictions on message contents.
(message_nolog) [false]: Remove unused code.
Diffstat (limited to 'src/xselect.c')
| -rw-r--r-- | src/xselect.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/xselect.c b/src/xselect.c index 1570c4fef9c..2a865e7cb8c 100644 --- a/src/xselect.c +++ b/src/xselect.c | |||
| @@ -2208,8 +2208,7 @@ x_clipboard_manager_save_all (void) | |||
| 2208 | local_frame = XCAR (XCDR (XCDR (XCDR (local_selection)))); | 2208 | local_frame = XCAR (XCDR (XCDR (XCDR (local_selection)))); |
| 2209 | if (FRAME_LIVE_P (XFRAME (local_frame))) | 2209 | if (FRAME_LIVE_P (XFRAME (local_frame))) |
| 2210 | { | 2210 | { |
| 2211 | AUTO_STRING (saving, "Saving clipboard to X clipboard manager..."); | 2211 | message ("Saving clipboard to X clipboard manager..."); |
| 2212 | Fmessage (1, &saving); | ||
| 2213 | internal_condition_case_1 (x_clipboard_manager_save, local_frame, | 2212 | internal_condition_case_1 (x_clipboard_manager_save, local_frame, |
| 2214 | Qt, x_clipboard_manager_error_2); | 2213 | Qt, x_clipboard_manager_error_2); |
| 2215 | } | 2214 | } |