diff options
Diffstat (limited to 'src/androidselect.c')
| -rw-r--r-- | src/androidselect.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/androidselect.c b/src/androidselect.c index 54c712ca93b..d1f2ebb52f9 100644 --- a/src/androidselect.c +++ b/src/androidselect.c | |||
| @@ -208,7 +208,7 @@ Alternatively, return nil if the clipboard is empty. */) | |||
| 208 | ANDROID_DELETE_LOCAL_REF (bytes); | 208 | ANDROID_DELETE_LOCAL_REF (bytes); |
| 209 | 209 | ||
| 210 | /* Now decode the resulting string. */ | 210 | /* Now decode the resulting string. */ |
| 211 | return code_convert_string_norecord (string, Qutf_8, Qnil); | 211 | return code_convert_string_norecord (string, Qutf_8, false); |
| 212 | } | 212 | } |
| 213 | 213 | ||
| 214 | DEFUN ("android-clipboard-exists-p", Fandroid_clipboard_exists_p, | 214 | DEFUN ("android-clipboard-exists-p", Fandroid_clipboard_exists_p, |
| @@ -304,7 +304,7 @@ data type available from the clipboard. */) | |||
| 304 | 304 | ||
| 305 | /* Decode the string. */ | 305 | /* Decode the string. */ |
| 306 | tem = make_unibyte_string ((char *) data, length1); | 306 | tem = make_unibyte_string ((char *) data, length1); |
| 307 | tem = code_convert_string_norecord (tem, Qutf_8, Qnil); | 307 | tem = code_convert_string_norecord (tem, Qutf_8, false); |
| 308 | targets = Fcons (tem, targets); | 308 | targets = Fcons (tem, targets); |
| 309 | 309 | ||
| 310 | /* Delete the retrieved data. */ | 310 | /* Delete the retrieved data. */ |