Diff

Differences From Artifact [c3573a8324]:

To Artifact [b62a7c3498]:


238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
	if(!(ret = platform_get_x_display()))
	    /* plausible default for all platforms */
	    ret = dupstr(":0");
    } else
	ret = dupstr(display);
    if(ret[0] == ':') {
	/* no transport specified, use whatever we think is best */
	char *s = dupcat(platform_x11_best_transport, display, (char *)0);
	sfree(ret);
	return s;
    } else
	return ret;
}

/*







|







238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
	if(!(ret = platform_get_x_display()))
	    /* plausible default for all platforms */
	    ret = dupstr(":0");
    } else
	ret = dupstr(display);
    if(ret[0] == ':') {
	/* no transport specified, use whatever we think is best */
	char *s = dupcat(platform_x11_best_transport, ret, (char *)0);
	sfree(ret);
	return s;
    } else
	return ret;
}

/*