diff options
Diffstat (limited to 'src/androidselect.c')
| -rw-r--r-- | src/androidselect.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/androidselect.c b/src/androidselect.c index d5783b75417..cbd163c6c9f 100644 --- a/src/androidselect.c +++ b/src/androidselect.c | |||
| @@ -189,7 +189,7 @@ Alternatively, return nil if the clipboard is empty. */) | |||
| 189 | const char *data; | 189 | const char *data; |
| 190 | 190 | ||
| 191 | if (!android_init_gui) | 191 | if (!android_init_gui) |
| 192 | error ("No Android display connection!"); | 192 | error ("No Android display connection"); |
| 193 | 193 | ||
| 194 | method = clipboard_class.get_clipboard; | 194 | method = clipboard_class.get_clipboard; |
| 195 | text | 195 | text |
| @@ -258,7 +258,7 @@ for. Use `android-browse-url' instead. */) | |||
| 258 | Lisp_Object value; | 258 | Lisp_Object value; |
| 259 | 259 | ||
| 260 | if (!android_init_gui) | 260 | if (!android_init_gui) |
| 261 | error ("No Android display connection!"); | 261 | error ("No Android display connection"); |
| 262 | 262 | ||
| 263 | CHECK_STRING (url); | 263 | CHECK_STRING (url); |
| 264 | value = android_browse_url (url, send); | 264 | value = android_browse_url (url, send); |
| @@ -290,7 +290,7 @@ data type available from the clipboard. */) | |||
| 290 | Lisp_Object targets, tem; | 290 | Lisp_Object targets, tem; |
| 291 | 291 | ||
| 292 | if (!android_init_gui) | 292 | if (!android_init_gui) |
| 293 | error ("No Android display connection!"); | 293 | error ("No Android display connection"); |
| 294 | 294 | ||
| 295 | targets = Qnil; | 295 | targets = Qnil; |
| 296 | block_input (); | 296 | block_input (); |
| @@ -544,7 +544,7 @@ does not have any corresponding data. In that case, use | |||
| 544 | char *buffer, *start; | 544 | char *buffer, *start; |
| 545 | 545 | ||
| 546 | if (!android_init_gui) | 546 | if (!android_init_gui) |
| 547 | error ("No Android display connection!"); | 547 | error ("No Android display connection"); |
| 548 | 548 | ||
| 549 | CHECK_STRING (type); | 549 | CHECK_STRING (type); |
| 550 | 550 | ||
| @@ -1003,7 +1003,7 @@ usage: (android-notifications-notify &rest ARGS) */) | |||
| 1003 | AUTO_STRING (default_icon, "ic_dialog_alert"); | 1003 | AUTO_STRING (default_icon, "ic_dialog_alert"); |
| 1004 | 1004 | ||
| 1005 | if (!android_init_gui) | 1005 | if (!android_init_gui) |
| 1006 | error ("No Android display connection!"); | 1006 | error ("No Android display connection"); |
| 1007 | 1007 | ||
| 1008 | /* Clear each variable above. */ | 1008 | /* Clear each variable above. */ |
| 1009 | title = body = replaces_id = group = icon = urgency = actions = Qnil; | 1009 | title = body = replaces_id = group = icon = urgency = actions = Qnil; |