summaryrefslogtreecommitdiff
path: root/cocoa/selection.m
diff options
context:
space:
mode:
Diffstat (limited to 'cocoa/selection.m')
-rw-r--r--cocoa/selection.m4
1 files changed, 3 insertions, 1 deletions
diff --git a/cocoa/selection.m b/cocoa/selection.m
index cb0c3dca9..208776ebb 100644
--- a/cocoa/selection.m
+++ b/cocoa/selection.m
@@ -72,9 +72,11 @@ static bool cocoa_clipboard_copy_handler(const char *text, size_t length, struct
void *handle, const char *whitespace_text,
size_t whitespace_length)
{
+ bool add_space = box != NULL ? box->space : false;
+
if (whitespace_text && !gui_add_to_clipboard( whitespace_text,
whitespace_length, false )) return false;
- return gui_add_to_clipboard( text, length, box->space );
+ return gui_add_to_clipboard( text, length, add_space );
}
bool gui_commit_clipboard(void)